/********** Template CSS **********/
/* --- Trust Bar / Logo Marquee Styles --- */

/* The main window that hides the extra logos */
.marquee-container {
    overflow: hidden;
    background: #f8f9fa; /* Light professional grey */
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
}

/* The moving track - This fixes the vertical stacking */
.marquee-content {
    display: flex; /* Forces items into a horizontal line */
    width: max-content;
    animation: scrolling 20s linear infinite;
}

/* Individual brand name styling */
.marquee-item {
    padding: 0 60px; /* Space between names */
    font-size: 1.3rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents text from wrapping to next line */
}

/* The Left-to-Right Animation Logic */
@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves halfway through the double set */
}

/* Pause the movement when a user hovers with a mouse */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
/* 1. FORCE ALL LINKS (Including Home/Active) TO BE BLACK */
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #000000 !important; /* Pure Black */
    opacity: 1 !important;
}

/* 2. Keep the padding and positioning */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-weight: 600; 
    outline: none;
    transition: .5s;
}

/* 3. Sticky Header - Ensure Black */
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #000000 !important;
}

/* 4. Brand/Logo Text - Ensure Black */
.navbar-light .navbar-brand h1 {
    color: #000000 !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* --- MOBILE VIEW --- */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }
    
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #000000 !important;
    }
    
    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}

/* --- DESKTOP VIEW --- */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    /* Underline animation - Optional */
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #000000; /* Made underline black too */
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        100% auto;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Project Portfolio ***/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* FORCE HORIZONTAL ALIGNMENT */
/* --- Modern Attractive Marquee --- */

.marquee-container {
    width: 100% !important;
    overflow: hidden !important;
    background: linear-gradient(90deg, #ffffff 0%, #f0f4f8 50%, #ffffff 100%) !important; /* Soft gradient background */
    padding: 40px 0 !important;
    display: block !important;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.marquee-content {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: scrolling 30s linear infinite !important; /* Slower, smoother speed */
}

.marquee-item {
    flex-shrink: 0 !important;
    padding: 0 60px !important;
    font-size: 1.5rem !important; /* Larger text */
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

/* Individual Brand Colors for 2026 Trends */
.brand-google  { color: #4285F4; }
.brand-meta    { color: #0668E1; }
.brand-shopify { color: #96bf48; }
.brand-hubspot { color: #ff7a59; }
.brand-amazon  { color: #ff9900; }

/* Hover Effect: Makes the brand "pop" when you touch it */
.marquee-item:hover {
    transform: scale(1.2);
    cursor: pointer;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- Modern Service Card Interaction --- */

.service-item {
    transition: all 0.4s ease-in-out !important;
    background: #ffffff !important;
    border: 1px solid #f1f1f1 !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* The "Lift" and "Shadow" effect on hover */
.service-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15) !important;
    border-color: #007bff !important;
}

/* Make the icons grow and glow */
.service-icon {
    transition: all 0.4s ease !important;
    background: #f8f9fa !important;
    color: #007bff !important;
}

.service-item:hover .service-icon {
    background: #007bff !important;
    color: #ffffff !important;
    transform: rotate(360deg) scale(1.1);
}

/* Style the "Read More" button inside the service box */
.service-item .btn {
    transition: 0.3s;
    font-weight: 600;
}

.service-item:hover .btn {
    background: #007bff;
    color: #fff;
}
/* --- Global WhatsApp Sticky Button: Left Side --- */
.wa-global-container {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Shifted to left side */
    z-index: 9999;
}

.wa-sticky-btn {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    flex-direction: row; /* Ensures icon is on the left of text */
}

/* WhatsApp Icon Circle */
.wa-icon-box {
    width: 55px;
    height: 55px;
    background: #25D366; /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* Chat Text Pill - Reversed Overlap for Left Side */
.wa-text-box {
    background: #ffffff;
    padding: 10px 30px 10px 35px; /* Extra padding on right */
    margin-left: -25px; /* Overlaps behind the green circle */
    border-radius: 0 30px 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #2124B1; /* Brand Blue */
    z-index: 1;
    transition: all 0.3s ease;
}

.wa-text-box span {
    color: #2124B1; /* Brand Blue */
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

/* Interaction Effects */
.wa-sticky-btn:hover .wa-icon-box {
    transform: scale(1.1) rotate(10deg);
}

.wa-sticky-btn:hover .wa-text-box {
    background: #2124B1; /* Solid blue on hover */
    padding-left: 45px;
}

.wa-sticky-btn:hover .wa-text-box span {
    color: #ffffff; /* White text on hover */
}

/* Continuous Pulse Animation */
@keyframes wa-pulse-left {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.wa-icon-box {
    animation: wa-pulse-left 2s infinite ease-in-out;
}

/* Mobile: Hide text to prevent covering screen content */
@media (max-width: 768px) {
    .wa-text-box {
        display: none;
    }
    .wa-global-container {
        left: 20px;
        bottom: 20px;
    }
}
/* Gallery Hover Effect */
/********** REPLACEMENT FOR PORTFOLIO SECTION **********/

/* 1. Remove the solid blue background and use a dark gradient at the bottom instead */
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Moves text to the bottom */
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    /* This replaces the solid blue background with transparency */
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important; 
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

/* 2. Show the gradient/text on hover */
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* 3. The Zoom-In Effect Logic */
.portfolio-item img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); /* Professional smooth zoom */
}

.portfolio-item:hover img {
    transform: scale(1.15); /* Zooms in by 15% */
}

/* 4. Keep the 'plus' button/icon styled if you use it */
.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}
/* Card Hover Effect */
.clickable-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.clickable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
    background-color: #fcfcfc;
}

/* Lightbox Background */
.seo-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* Lightbox Content Box */
.lightbox-content {
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    cursor: pointer;
    color: #333;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* SEO Wheel Visual Hover Effects */
.seo-wheel-svg {
    overflow: visible; /* Allows the "pop out" effect to happen */
}

.seo-segment {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    transform-origin: center;
    transform-box: fill-box; /* Ensures the slice scales from its own center */
}

/* Effect when hovering over a specific slice */
.seo-segment:hover {
    filter: brightness(1.1) drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    transform: scale(1.1); /* Makes the slice 10% larger */
}

/* This dims the other segments when you hover over one of them */
.wheel-segments:hover .seo-segment:not(:hover) {
    opacity: 0.6;
    filter: grayscale(0.3);
}

/* Adds a smooth transition to the text box border color */
.seo-step-card {
    transition: border-color 0.4s ease, transform 0.3s ease;
}
/* shrija */
/* About Page Hover Effects */
.approach-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.approach-card:hover {
    background: #ffffff !important;
    transform: translateY(-10px);
    border-color: #2124b1;
    box-shadow: 0 1rem 3rem rgba(33, 36, 177, 0.15) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #2124b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.approach-card:hover .icon-circle {
    background: #ff5e14; /* Your secondary color */
    transform: rotateY(180deg);
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}
/* --- Professional Hover Effect for Strategic Approach --- */

/* 1. Set the base state of the card */
.approach-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth movement */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    position: relative;
    z-index: 1;
}

/* 2. The Hover Action */
.approach-card:hover {
    transform: translateY(-12px); /* Lifts the card up */
    background: #111111 !important; /* Makes background slightly lighter/richer */
    border-color: #2124b1; /* Changes border to your primary blue */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(33, 36, 177, 0.2) !important;
}

/* 3. Icon Animation on Hover */
.approach-card .icon-box i {
    transition: all 0.5s ease;
}

.approach-card:hover .icon-box i {
    transform: scale(1.3) rotate(15deg); /* Scaled and tilted icon */
    color: #ffffff !important; /* Icon turns white */
    text-shadow: 0 0 10px #2124b1; /* Glowing icon effect */
}

/* 4. Text color change on Hover */
.approach-card:hover h3 {
    color: #2124b1 !important; /* Title takes primary color */
}

.approach-card:hover p {
    color: #ffffff !important; /* Subtitle turns white */
}
/* --- Trust Us Section Styling --- */

/* Glass Light-Box Effect for Cards */
.trust-card {
    background: rgba(243, 240, 240, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.trust-card:hover {
    background: rgba(33, 36, 177, 0.08); /* Light blue light-box effect */
    border-color: #2124b1;
    transform: translateX(10px); /* Subtle slide effect */
    box-shadow: 0 0 25px rgba(33, 36, 177, 0.2);
}

/* Icon Box Backgrounds */
.trust-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-light { background: rgba(33, 36, 177, 0.15); }
.bg-info-light { background: rgba(13, 202, 240, 0.15); }

/* Progress Bar Glowing Effect */
.custom-progress {
    height: 8px !important;
    background-color: #1a1a1c !important;
    overflow: visible !important;
    border-radius: 10px;
}

.progress-glow {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(33, 36, 177, 0.5);
}

.progress-glow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: inherit;
    border-radius: 50%;
    filter: blur(2px);
    box-shadow: 0 0 15px inherit;
}
/* Progress Bar Glowing Effect */

/* Workflow Card Styling */
.workflow-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.step-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.936);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: 0.4s;
}

/* Lightbox Hover Effect for Workflow */
.workflow-card:hover {
    background: rgba(253, 253, 255, 0.927) !important;
    border-color: #2124b1;
    transform: translateY(-5px);
}

.workflow-card:hover .step-num {
    color: #2124b1;
    transform: scale(1.1);
}

.workflow-card:hover h5 {
    color: #2124b1 !important;
}

/* Alignment fix for Why Trust Us Expert block */
.trust-card {
    height: 100%; /* Ensures blocks align even with different text lengths */
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100% !important;
        left: 0 !important;
    }
}
/* --- Expertise Section Styling --- */

/* 1. Card Base Style */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 2. Hover Effect: Lift and Blue Border */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(33, 36, 177, 0.1) !important;
    border-color: #2124B1; /* Using your primary blue */
}

/* 3. Icon Box Backgrounds (Soft tints) */
.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: 0.4s;
}

.bg-primary-light { background: rgba(33, 36, 177, 0.08); }
.bg-info-light { background: rgba(13, 202, 240, 0.08); }
.bg-secondary-light { background: rgba(71, 119, 245, 0.08); }

/* 4. Icon Animation on Hover */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: #2124B1 !important; /* Turns solid blue */
}

.service-card:hover .service-icon i {
    color: #ffffff !important; /* Icon turns white on hover */
}

/* 5. List Item styling */
.service-card ul li {
    padding: 5px 0;
    font-weight: 500;
    color: #444;
}

/* 6. A subtle "active" accent for the center card or any specific card */
.active-border {
    border-top: 4px solid #2124B1;
}

/* 7. Typography Optimization */
.service-card h4 {
    color: #1D1D27;
    font-weight: 700 !important;
    transition: 0.3s;
}

.service-card:hover h4 {
    color: #2124B1;
}

/* Optional: Subtle Background Shape inside the card */
.service-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(33, 36, 177, 0.03);
    bottom: -30px;
    right: -30px;
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}

.service-card:hover::after {
    background: rgba(33, 36, 177, 0.08);
    transform: scale(2);
}
/* --- Expertise Section Styling --- */

/* --- Data-Driven Approach Styling --- */

/* --- Data-Driven Block (Strict Blue & White) --- */

/* 1. Reset the card to stay White */
.approach-card {
    background-color: #ffffff !important; /* Forces background to stay white */
    border: 1px solid rgba(33, 36, 177, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* 2. Hover Effect: No dark colors, only blue accents */
.approach-card:hover {
    transform: translateY(-10px);
    border-color: #2124B1; /* Your primary blue */
    background-color: #ffffff !important; /* Ensures no dark color on hover */
    box-shadow: 0 15px 30px rgba(33, 36, 177, 0.12) !important;
}

/* 3. Icon Circle Styling */
.approach-card .icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff; /* Very soft light blue */
    color: #2124B1;
    border-radius: 50%;
    transition: 0.4s;
}

/* 4. Icon Change on Hover */
.approach-card:hover .icon-circle {
    background: #2124B1; /* Icon background turns blue */
    color: #ffffff;      /* Icon itself turns white */
}

/* 5. Text Colors */
.counter-text {
    color: #2124B1; /* Numbers in Blue */
    font-weight: 800;
}

.tracking-wide {
    color: #444444; /* Dark grey for readability, not black */
    letter-spacing: 1px;
}

.approach-card p.text-muted {
    color: #777777 !important; /* Soft grey for the description */
}

/* 6. Remove any existing "dark" classes that might be interfering */
.approach-card.bg-dark, 
.approach-card:hover.bg-dark {
    background-color: #ffffff !important;
}
/* --- Text Visibility Fix --- */

/* 1. Ensure the description text is visible on the white background */
.approach-card p {
    color: #666666 !important; /* Medium grey for good readability */
    transition: color 0.3s ease;
}

/* 2. Style for the main Heading (e.g., "Custom") */
.approach-card .counter-text, 
.approach-card h3 {
    color: #2124B1 !important; /* Your primary blue */
}

/* 3. Style for the Sub-heading (e.g., "ROI FRAMEWORKS") */
.approach-card .tracking-wide {
    color: #1D1D27 !important; /* Dark navy/black for contrast */
}

/* 4. State when clicked or hovered (Keep everything visible) */
.approach-card:hover p,
.approach-card:active p {
    color: #444444 !important; /* Slightly darker grey on hover */
}

.approach-card:hover .tracking-wide {
    color: #000000 !important; /* Pure black for maximum punch */
}
/* --- Data-Driven Approach Styling --- */

/* --- Trendy Digital & Vision Banner Styling --- */

/* 1. Custom List Styling */
.custom-list .list-group-item {
    padding: 15px 10px;
    font-size: 1.05rem;
    color: #444; /* Dark grey for readability */
    transition: transform 0.3s ease;
}

/* Hover effect for list items */
.custom-list .list-group-item:hover {
    transform: translateX(10px);
    color: #2124B1; /* Brand Blue */
}

/* 2. Vision Banner Base Styling */
.vision-banner {
    background: linear-gradient(135deg, #2124B1 0%, #4777F5 100%) !important;
    border: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* 3. Banner Hover Effect (The Catalyst Look) */
.vision-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 36, 177, 0.3) !important;
}

/* 4. Adding a subtle "shimmer" effect to the banner */
.vision-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: 0.5s;
    pointer-events: none;
}

.vision-banner:hover::before {
    left: 100%;
    top: 100%;
}

/* 5. Typography within the Banner */
.vision-banner h3 {
    font-weight: 800 !important;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vision-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 6. Responsive adjustment for mobile */
@media (max-width: 768px) {
    .vision-banner {
        padding: 30px 20px !important;
    }
}
/* --- Trendy Digital & Vision Banner Styling --- */

/* --- 4-Step Growth Engine Styling --- */

/* 1. Base Item Styling */
.method-item {
    background: #ffffff;
    border: 1px solid rgba(33, 36, 177, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* 2. Connector Line (Desktop Only) */
@media (min-width: 992px) {
    .method-item::after {
        content: "\f105"; /* FontAwesome Right Arrow */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(33, 36, 177, 0.2);
        font-size: 20px;
        transition: 0.3s;
    }
    
    /* Remove arrow from the last item */
    .col-lg-3:last-child .method-item::after {
        display: none;
    }
}

/* 3. Hover State: Blue Highlight */
.method-item:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #2124B1;
    box-shadow: 0 10px 30px rgba(33, 36, 177, 0.15) !important;
}

/* 4. Icon Animation */
.method-icon i {
    transition: all 0.5s ease;
}

.method-item:hover .method-icon i {
    transform: scale(1.2) rotate(10deg);
    color: #4777F5 !important; /* Lighter blue on hover */
}

/* 5. Step Number Styling (The 01, 02, etc.) */
.method-item h5 {
    color: #2124B1;
    font-weight: 700 !important;
    margin-top: 10px;
    transition: 0.3s;
}

.method-item:hover h5 {
    letter-spacing: 1px;
}

/* 6. Subtle Description Text */
.method-item p.text-muted {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666666 !important; /* Visibility Fix */
}

/* 7. Engine Pulse Effect */
.method-item:hover::after {
    color: #2124B1;
    right: -25px;
}
/* --- 4-Step Growth Engine Styling --- */

/* --- Innovation Lab Bento Grid & Glow Cards --- */

/* --- MERGED INNOVATION LAB & BADGE (BLUE/WHITE THEME) --- */

/* 1. The High-Tech 2026 Badge */
.innovation-badge {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #2124B1;
    background: rgba(33, 36, 177, 0.05);
    border-radius: 50px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(33, 36, 177, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.innovation-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 36, 177, 0.2), transparent);
    animation: badge-scan 3s infinite linear;
}

@keyframes badge-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.innovation-badge:hover {
    color: #ffffff;
    background: #2124B1;
    transform: translateY(-3px);
}

/* 2. Horizontal Grid Layout */
.iho-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in a row */
    gap: 30px;
    margin-top: 20px;
}

/* 3. The Glow Cards */
.glow-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #eef2ff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    perspective: 1000px;
    text-align: center;
}

/* 4. Icon Visibility & 3D Flip */
.glow-card i {
    display: block !important;
    color: #2124B1 !important; /* Solid visible blue */
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-card:hover i {
    transform: rotateY(360deg) scale(1.1); /* The Flip */
}

/* 5. Card Hover State */
.glow-card:hover {
    transform: translateY(-12px);
    border-color: #2124B1;
    background-color: #f8faff !important;
    box-shadow: 0 20px 40px rgba(33, 36, 177, 0.2) !important;
}

/* 6. Text Styling */
.glow-card h5 {
    color: #2124B1;
    font-weight: 800 !important;
}

.glow-card p.text-muted {
    color: #333333 !important;
    font-weight: 500;
}

/* 7. Bottom Accent Line */
.glow-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 5px;
    background: #2124B1;
    transition: width 0.4s ease;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
}

.glow-card:hover::after {
    width: 100%;
}

/* 8. Mobile Responsiveness */
@media (max-width: 991px) {
    .iho-bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .iho-bento-grid { grid-template-columns: 1fr; }
}
/* --- Innovation Lab Bento Grid & Glow Cards --- */

/* --- Our Story / Journey Styling --- */

/* 1. Image Frame Effect */
.col-lg-6 img.img-fluid {
    transition: all 0.5s ease;
    border-right: 8px solid #2124B1; /* Brand Blue accent on the right */
    border-bottom: 8px solid #2124B1; /* Brand Blue accent on the bottom */
    padding: 10px;
    background: #fff;
}

.col-lg-6:hover img.img-fluid {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(33, 36, 177, 0.2) !important;
}

/* 2. Journey Label (Our Journey) */
.journey-label {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    border-bottom: 2px solid #2124B1;
    padding-bottom: 5px;
}

/* 3. Journey Title */
.journey-title {
    color: #1D1D27;
    font-weight: 800 !important;
    line-height: 1.3;
}

/* 4. Paragraph Text Visibility */
.journey-text {
    color: #555555 !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* 5. Interactive Checklist Items */
.journey-item {
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 0px solid #2124B1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.journey-item:hover {
    background: #f8faff;
    transform: translateX(10px);
    border-left: 5px solid #2124B1; /* Pops out on hover */
    box-shadow: 0 6px 15px rgba(33, 36, 177, 0.1);
}

.journey-item h6 {
    margin: 0;
    font-weight: 700 !important;
    color: #1D1D27;
    display: flex;
    align-items: center;
}

/* 6. Icon Animation inside checklist */
.journey-item i {
    transition: transform 0.3s ease;
}

.journey-item:hover i {
    transform: scale(1.3);
}

/* 7. Adding a subtle decorative background number (Optional) */
.col-lg-6.wow.fadeInUp {
    position: relative;
}

@media (min-width: 992px) {
    .journey-title::before {
        content: "2026";
        position: absolute;
        top: -40px;
        right: 0;
        font-size: 10rem;
        font-weight: 900;
        color: rgba(33, 36, 177, 0.03); /* Ghostly background year */
        z-index: -1;
    }
}
/* --- Our Story / Journey Styling --- */

/* --- Business Cards --- */
/* --- Global Typography & Section Styles --- */
.section-title {
    color: #2124B1; /* Solid blue fallback */
    font-weight: 800 !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    /* This allows the gradient on modern browsers but keeps text visible if it fails */
    background: linear-gradient(135deg, #1D1D27 0%, #2124B1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Fix for headings that SHOULD be white (like the Contact or Hero section) */
.text-white .section-title, 
.bg-primary .section-title,
h1.text-white, 
h2.text-white, 
h3.text-white {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.section-subtitle {
    color: #666;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* --- Enhanced Checklist Cards (Benefit Cards) --- */
.benefit-check-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Glassmorphism Effect */
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid rgba(33, 36, 177, 0.1);
    border-left: 5px solid #2124B1; /* Changed from bottom to left for a cleaner look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-check-card:hover {
    transform: translateX(15px) scale(1.02); /* Dynamic bounce */
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(33, 36, 177, 0.1);
}

.benefit-check-card i {
    background: linear-gradient(135deg, #2124B1, #4777F5);
    
    /* Clipping the background to the text */
    -webkit-background-clip: text;
    background-clip: text;            /* Added for standard compatibility */
    
    /* Making the text transparent so the background shows through */
    -webkit-text-fill-color: transparent;
    color: transparent;               /* Added for standard compatibility */
    
    font-size: 1.8rem;
    margin-right: 20px;
}
/* --- Business Cards --- */
/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: cover; /* Use cover to fill the full width */
    width: 100%;
    display: block;
    clear: both; /* Prevents side-elements from pushing the footer */
}

.footer .container-fluid, .footer .container {
    max-width: 100% !important; /* Forces the background color to span the screen */
}
/* Unique SEO Page Styles */
/* Container & Background Styling */
.container-xxl {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Section Title Enhancement */
.section-title h6 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title h2 {
    font-weight: 800;
    color: #2c3e50;
}

/* Unique Benefit Pill Styling */
.benefit-pill {
    background: #ffffff;
    border-left: 4px solid #007bff; /* Primary Color */
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease-in-out;
}

.benefit-pill i {
    color: #007bff;
    margin-right: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.benefit-pill:hover {
    transform: translateX(10px);
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.benefit-pill:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Image Styling & Animation */
.img-fluid {
    border: 10px solid #ffffff;
    transition: transform 0.5s ease;
    position: relative;
}

.col-lg-5 .ps-lg-4::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(#007bff 20%, transparent 20%);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.3;
}

.img-fluid:hover {
    transform: translateY(-5px);
}

/* Paragraph Styling */
p.mb-4 {
    line-height: 1.8;
    color: #6c757d;
    font-size: 1.1rem;
}

p.mb-4 b {
    color: #007bff;
}
/* Unique SEO Page Styles */

/* Seo Expertise */
/* --- 1. TYPOGRAPHY (Fixing Dull Text) --- */
.expertise-headline {
    font-size: 3.8rem;
    font-weight: 900; /* Maximum bold */
    color: #1a1c1e; /* High contrast charcoal */
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(90deg, #007bff, #00d4ff);
    -webkit-background-clip: text; /* Browser specific */
    background-clip: text;         /* Standard property (Add this line) */
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(0, 123, 255, 0.2));
}

.expertise-subtext {
    font-size: 1.2rem;
    color: #4b5563; /* Darker grey */
    line-height: 1.8;
    font-weight: 500;
}

/* --- 2. RIGHT SIDE STACK LAYOUT --- */
.visual-stack-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Main Growth Card */
.main-growth-card {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.card-inner {
    background: #ffffff;
    padding: 40px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.4s ease;
}

.card-inner i {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
}

.card-inner span {
    font-weight: 800;
    color: #1a1c1e;
    font-size: 1.2rem;
}

/* --- 3. BOTTOM STATS ROW --- */
.stats-grid-row {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.stat-box-card {
    flex: 1;
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.05);
}

.icon-wrap {
    width: 45px;
    height: 45px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1c1e;
}

.lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

/* --- 4. THE LIGHTBOX GLOW --- */
.glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* HOVER EFFECTS */
.card-inner:hover, .stat-box-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

/* ready to Achieve*/
.cta-box {
    position: relative;
    padding: 80px 40px;
    border-radius: 40px;
    /* Deep premium gradient with a hint of SEO blue */
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 53, 102, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* The Animated Lightbox Glow (Hidden inside the box) */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 60%);
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
}

/* Typography Enhancements (Fixing dullness) */
.cta-box h2 {
    font-size: 3rem;
    font-weight: 850; /* Extra bold for impact */
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Premium Rounded Button */
.cta-box .btn-outline-light {
    border-width: 2px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.cta-box .btn-outline-light:hover {
    background-color: #ffffff;
    color: #003566 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Glow Animation */
@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-box {
        padding: 50px 20px;
        border-radius: 25px;
    }
    .cta-box h2 {
        font-size: 2rem;
    }
}
/* ready to Achieve*/
/* Unique SEO Page Styles */

/* web design page */
.expertise-title, .section-title h2 {
    font-weight: 800;
    color: #1a1c1e;
    letter-spacing: -1px;
}

/* Feature Pills Styling */
.feature-pill {
    background: #f0f7ff;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

.feature-pill:hover {
    background: #007bff;
    color: #fff;
}

/* Glassmorphism Service Cards */
.service-glass-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(0, 123, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.service-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.12);
    border-color: #007bff;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.service-glass-card:hover .icon-box {
    background: #007bff;
    color: #fff;
    transform: rotateY(360deg);
}

/* Right Side Visual Glow */
.design-visual-box {
    position: relative;
    padding: 20px;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* Premium CTA Box */
.web-cta-box {
    background: linear-gradient(135deg, #001d3d 0%, #007bff 100%);
    padding: 70px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth transition */
    position: relative;
    overflow: hidden;
}

/* Fix for the Grey Text Visibility */
.web-cta-box p {
    color: rgba(255, 255, 255, 0.85) !important; /* Brighter than grey, but softer than pure white */
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hover Effect */
.web-cta-box:hover {
    transform: translateY(-8px); /* Lifts the box up */
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.5); /* Deepens the shadow */
}

/* Button Hover Refinement */
.web-cta-box .btn-light {
    transition: 0.3s;
}

.web-cta-box .btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05); /* Slightly enlarges the button on hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.web-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
}
/* web design page */

   /* --- Email Marketing Page Specific Styles --- */
/* --- 1. The Card Container (Lightbox Base) --- */
.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    
    /* Smooth transition for the 'Pop' effect */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

/* --- 2. The Hover Effect (Lightbox & Lift) --- */
.feature-card:hover {
    /* Lifts the card up significantly */
    transform: translateY(-10px); 
    
    /* The "Lightbox" Glow: A large, soft shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 15px rgba(13, 110, 253, 0.1); 
    
    /* Highlight the border */
    border-color: #0d6efd; 
}

/* --- 3. The Icon Styling --- */
.feature-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    font-size: 28px; /* Icon size */
    
    background-color: #f3f6ff; /* Light blue background */
    color: #0d6efd; /* Brand blue icon */
    border-radius: 50%; /* Perfect Circle */
    
    /* Vital for the flip effect */
    transition: transform 0.6s ease, background-color 0.3s ease, color 0.3s ease;
    perspective: 1000px; /* Adds 3D depth */
}

/* --- 4. The Flipping Icon Effect --- */
.feature-card:hover .icon-wrapper {
    /* The 3D Flip */
    transform: rotateY(360deg); 
    
    /* Color Change on Flip */
    background-color: #0d6efd; 
    color: #ffffff;
    
    /* Optional: Slight scale up */
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* --- 5. Typography Enhancements --- */
.feature-card h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* email marketing */

/* PPC */
/* --- PPC Page Custom Variables --- */

/* --- Section Title Styling --- */
.ppc-section-header h2 {
    font-weight: 800;
    background: linear-gradient(135deg, var(--ppc-dark) 0%, var(--ppc-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Feature Lists (Why PPC / Benefits) --- */
.ppc-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ppc-benefits-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--ppc-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ppc-benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--ppc-shadow);
    border-left-color: var(--ppc-accent);
}

.ppc-benefits-list li b {
    color: var(--ppc-primary);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* --- "Why Choose Us" (Numbered Cards) --- */
.ppc-choose-list {
    list-style: none;
    padding: 0;
    counter-reset: ppc-counter;
    display: grid;
    gap: 20px;
}

.ppc-choose-list li {
    position: relative;
    background: #fff;
    padding: 25px 25px 25px 60px; /* Space for number */
    border-radius: 12px;
    border: 1px solid #eef0f5;
    transition: transform 0.3s ease;
}

.ppc-choose-list li:hover {
    transform: translateY(-5px);
    border-color: var(--ppc-primary);
    box-shadow: var(--ppc-shadow);
}

/* Custom Numbering Styling */
.ppc-choose-list li b::before {
    content: counter(ppc-counter);
    counter-increment: ppc-counter;
    position: absolute;
    left: 15px;
    top: 22px;
    width: 35px;
    height: 35px;
    background: var(--ppc-primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.4);
}

/* --- Services Grid (Cards) --- */
.ppc-services-grid {
    display: grid;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.ppc-services-grid li {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ppc-services-grid li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--ppc-primary);
    border-radius: 15px;
    z-index: -1;
    transition: height 0.4s ease;
    opacity: 0.05;
}

.ppc-services-grid li:hover {
    transform: translateY(-10px);
    box-shadow: var(--ppc-shadow);
    border-color: transparent;
}

.ppc-services-grid li:hover::before {
    height: 100%;
}

.ppc-services-grid li b {
    display: block;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--ppc-dark);
}

.ppc-services-grid li:hover b {
    color: var(--ppc-primary);
}

/* --- Animations --- */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.img-animate {
    animation: floatImage 4s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ppc-services-grid {
    }
}




/*App Development*/

/* --- 1. The Card Container --- */
.unique-app-card {
    /* Force the layout */
    background: #f8f9fa !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 30px 15px !important;
    text-align: center !important;
    position: relative !important;
    transition: all 0.4s ease-in-out !important;
    z-index: 1;
}

/* --- 2. The Lightbox Hover Effect --- */
.unique-app-card:hover {
    /* Force white background and lift */
    background: #ffffff !important;
    transform: translateY(-10px) !important;
    
    /* Strong Glow Shadow */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    border-color: transparent !important;
    z-index: 100 !important;
}

/* --- 3. The Icon Wrapper --- */
.unique-icon-box {
    display: inline-block !important;
    margin-bottom: 15px !important;
    perspective: 1000px !important; /* Required for 3D flip */
}

/* --- 4. The Flipping Icon --- */
.unique-app-card i {
    display: inline-block !important; /* Must be inline-block to rotate */
    transition: transform 0.6s ease !important;
    transform-style: preserve-3d !important;
}

/* The Flip Trigger */
.unique-app-card:hover i {
    transform: rotateY(360deg) !important;
}

/* --- 5. Text Styling --- */
.unique-app-card h6 {
    font-weight: 700 !important;
    transition: color 0.3s !important;
}

.unique-app-card:hover h6 {
    color: #0d6efd !important; /* Optional: Turns text blue */
}

    /* --- Main Card Styling (Lightbox Effect) --- */
    .custom-feature-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle initial shadow */
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        height: 100%;
        position: relative;
        border: 1px solid #f0f0f0;
        overflow: hidden;
    }

    /* Lightbox Hover Effect: Lifts up and Glows */
    .custom-feature-card:hover {
        transform: translateY(-12px); /* Lifts the card up */
        box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15); /* Blue-ish glow shadow */
        border-color: transparent;
    }

    /* --- Flipping Icon Styling --- */
    .flip-icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0d6efd, #0dcaf0); /* Bootstrap Blue/Cyan gradient */
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px auto;
        font-size: 32px;
        
        /* THE FLIP MAGIC */
        transition: transform 0.6s ease-in-out; 
    }

    /* Trigger the flip on Card Hover */
    .custom-feature-card:hover .flip-icon-wrapper {
        transform: rotateY(360deg); /* 3D horizontal spin */
    }

    .custom-feature-card h4 {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #333;
    }

    .custom-feature-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* --- Service Box Styling (Section 2) --- */
    .custom-service-box {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        position: relative;
        transition: all 0.3s ease;
        border-left: 4px solid #0d6efd;
        height: 100%;
    }

    .custom-service-box:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .service-number {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
        font-weight: 800;
        color: #f2f2f2;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .custom-service-box:hover .service-number {
        color: #e0e0e0;
        transform: scale(1.1);
    }

    .service-content h5 {
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }
    
    /* IHO Digital Contact Info Cards */
.info-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: .5s;
    background: #ffffff;
}

.info-item:hover {
    background: #2b34ac; /* Changes to Blue on hover */
    transform: translateY(-5px);
}

.info-item:hover * {
    color: #ffffff !important; /* Forces text to white on hover */
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #2b34ac;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    transition: .5s;
}

.info-item:hover .info-icon {
    background: #ffffff;
    /* Added !important to force the icon color to be blue, overriding the white color rule */
    color: #2b34ac !important; 
}

