    /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }

    
/* ================================
   IT SERVICES HERO SECTION
================================ */

.it-services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://blog.udemy.com/wp-content/uploads/2014/06/bigstock-Mixed-group-in-business-meetin-23883404.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;  /* ❗ remove left/right padding */
}


/* Overlay */
.hero-overlay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Content */
.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 30px 15px;   /* mobile-safe padding only here */
    margin: 0 auto;       /* force center */
    animation: fadeInUp 1s ease-out;
}


.hero-title {
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700 !important; /* Medium instead of bold */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Softer shadow */
    text-align: center;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}


/* Highlight */
.hero-title .highlight {
    color: #ffffff;
    /* font-weight: 800; */
}


/* Description */
.hero-description {
    line-height: 1.8;
    color: #f0f8ff;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Button Base */
.hero-buttons .btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
}


/* Primary Button */
.hero-buttons .btn-primary {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Outline Button */
.hero-buttons .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-buttons .btn-outline:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* ================================
   ANIMATION
================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   RESPONSIVE DESIGN
================================ */


/* Large Screens */
@media (max-width: 1400px) {

    .hero-title {
        font-size: 3.2rem;
    }
}


/* Tablets */
@media (max-width: 992px) {

    .it-services-hero-section {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .it-services-hero-section {
        min-height: 100vh; /* Full screen */
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}


/* Extra Large Screens */
@media (min-width: 1800px) {

    .it-services-hero-section {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.4rem;
        max-width: 1000px;
    }
}

/* What We Do Section - PPC Advertising */
.what-we-do-section {
    padding: 50px 0 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-title-main {
    color: #091e3e;
    margin-bottom: 5px !important;
    position: relative;
    display: inline-block;
    text-align: left;
    width: 100%;
    /* font-weight: 700; */
    letter-spacing: -0.02em;
}

.company-name-subtitle {
    color: #06a6e0;
    margin-bottom: 5px;
    text-align: left;
}

.section-tagline {
    color: #555;
    /* font-weight: 400; */
    line-height: 1.6;
    margin-bottom: 5px;
    text-align: left;
    /* font-size: 1.2rem; */
}

/* Content Area */
.what-we-do-content {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    text-align: left;
}

.what-we-do-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

/* .what-we-do-highlight {
    margin: 15px 0;
    text-align: left;
} */

/* .what-we-do-highlight p {
    margin-bottom: 0;
    color: #444;
    text-align: left;
    font-weight: 500;
    background: rgba(6, 166, 224, 0.04);
    padding: 15px;
    border-left: 4px solid #06a6e0;
    border-radius: 0 8px 8px 0;
} */

/* Image Container */
.what-we-do-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(6, 166, 224, 0.12);
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 166, 224, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 166, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
    transform: scale(1);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Items Animation - PPC Specific */
.animated-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(6, 166, 224, 0.1);
    border-radius: 50px;
    color: #06a6e0;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
    text-align: left;
    font-weight: 500;
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    background: rgba(6, 166, 224, 0.2);
    transform: translateY(-2px);
}

.feature-icon-animate {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-animate {
    transform: scale(1.2);
}

/* Image Animation */
.image-animate {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.image-animate.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Floating App Icons - PPC Style */
.floating-app-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a6e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.floating-app-icon:nth-child(1) { --delay: 0; animation-delay: 0s; }
.floating-app-icon:nth-child(2) { --delay: 1; animation-delay: 1s; }
.floating-app-icon:nth-child(3) { --delay: 2; animation-delay: 2s; }
.floating-app-icon:nth-child(4) { --delay: 3; animation-delay: 3s; }

.image-animate.animated .floating-app-icon {
    opacity: 1;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Content Animation Enhancements */
.what-we-do-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.what-we-do-content.animated p {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do-content.animated p:nth-child(1) {
    transition-delay: 0.2s;
}

.what-we-do-content.animated p:nth-child(2) {
    transition-delay: 0.4s;
}

.what-we-do-content.animated .what-we-do-highlight p {
    transition-delay: 0.6s;
}

/* Overlay Icon Animation Enhancement */
.overlay-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .what-we-do-section {
        padding: 50px 0;
    }
    
    .what-we-do-content {
        margin-bottom: 25px;
        min-height: 300px;
    }
    
    .image-container {
        min-height: 300px;
    }
    
    .section-tagline {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 0;
    }
    
    .what-we-do-content {
        min-height: 280px;
        padding: 20px;
    }
    
    .what-we-do-content p {
        margin-bottom: 12px;
    }
    
    .image-container {
        min-height: 280px;
    }
    
    .section-tagline {
        margin-bottom: 20px;
    }
    
    .animated-features {
        justify-content: flex-start;
    }
    
    .feature-item {
        padding: 6px 12px;
    }
    
    .floating-app-icon {
        width: 30px;
        height: 30px;
    }
}



/* Our AI SEO Services Section - Complete Styles */
.ai-services-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.ai-section-title {
    /* font-size: 2.5rem;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}



.ai-section-subtitle {
    color: #555;
    margin-top: 15px;
    max-width: 1200px ;   /* Set width to 1200px */
    width: 100%;

}



/* AI Service Cards */
.ai-service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(6, 166, 224, 0.05);
    display: flex;
    flex-direction: column;
}

.ai-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 166, 224, 0.1);
    border-color: rgba(6, 166, 224, 0.2);
}

.ai-card-highlight {
    background: linear-gradient(145deg, #ffffff, #f3faff);
    border-left: 4px solid #06a6e0;
}

.ai-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 166, 224, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: #06a6e0;
    transition: all 0.3s ease;
}

.ai-service-card:hover .ai-card-icon {
    background: #06a6e0;
    color: white;
    transform: scale(0.95);
}

.ai-card-title {
    font-size: 1.35rem;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ai-card-description {
    color: #555;
    /* line-height: 1.6; */
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.ai-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.ai-card-tags span {
    background: rgba(6, 166, 224, 0.06);
    color: #047a9c;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.ai-service-card:hover .ai-card-tags span {
    background: rgba(6, 166, 224, 0.12);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ai-services-section {
        padding: 60px 0;
    }
    
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .ai-services-section {
        padding: 50px 0;
    }
    
    .ai-section-title {
        font-size: 1.75rem;
    }
    
    .ai-section-subtitle {
        font-size: 1rem;
    }
    
    .ai-card-title {
        font-size: 1.2rem;
    }
    
    .ai-services-cta {
        padding: 20px;
        border-radius: 30px;
    }
    
    .ai-cta-text {
        display: block;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .ai-card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .ai-service-card {
        padding: 25px 20px;
    }
    
    .ai-card-tags span {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}



/* CTA Section Styles - Compact Version */
.cta-section {
    padding: 50px 0 50px 0;
    background: #06a3da;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-content {
    /*max-width: 700px;*/
    margin: 0 auto;
}

.cta-heading {
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 15px;
    /* line-height: 1.2; */
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
     padding-bottom: 35px;
    /* line-height: 1.5; */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-btn {
        padding: 10px 20px;
    }
}


/* ============================================= */
/* REDESIGNED: Get Smarter with Generative AI SEO */
/* Clean, Modern, Premium Aesthetic             */
/* ============================================= */

.genai-redesigned-section {
     padding: 50px 0 50px 0; 
   background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
    
}

/* Subtle background elements */
.genai-redesigned-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.genai-redesigned-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* ===== Typography ===== */
/* .genai-badge {
    display: inline-block;
    background: rgba(6, 166, 224, 0.08);
    color: #06a6e0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 60px;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 166, 224, 0.15);
} */

.genai-main-title {
    /* font-size: 3rem;
    font-weight: 700; */
    color: #0a1c3a;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.genai-description {
    /* font-size: 1.2rem; */
    color: #4a5a6e;
    /* max-width: 800px; */
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 1200;
}

/* ===== Feature Cards - Completely Redesigned ===== */
.genai-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.genai-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(6, 166, 224, 0.08);
    border-color: rgba(6, 166, 224, 0.2);
}

.card-bg-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(6,166,224,0.03) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #f0f9ff, #ffffff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #06a6e0;
    margin-bottom: 25px;
    border: 1px solid rgba(6,166,224,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.genai-card:hover .card-icon-circle {
    background: #06a6e0;
    color: white;
    border-color: #06a6e0;
    transform: scale(0.95);
}

.card-title {
    font-size: 1.4rem;
    /* font-weight: 600; */
    color: #0a1c3a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-text {
    color: #5a6a7e;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.card-stats {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: baseline;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.stat-highlight {
    font-size: 1.6rem;
    font-weight: 700;
    color: #06a6e0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7b8e;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===== Platform Ecosystem ===== */
.platforms-visual {
    background: white;
    border-radius: 28px;
    padding: 35px 30px;
    border: 1px solid rgba(6,166,224,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #fafcfd;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.platform-item:hover {
    background: white;
    border-color: rgba(6,166,224,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6,166,224,0.06);
}

.platform-item i {
    font-size: 28px;
    margin-bottom: 8px;
}

.platform-item span {
    font-size: 0.8rem;
    /* font-weight: 600; */
    color: #2a3a4e;
}

/* Platform-specific colors */
.platform-item.google i { color: #4285F4; }
.platform-item.openai i { color: #10a37f; }
.platform-item.gemini i { color: #1A73E8; }
.platform-item.perplexity i { color: #1f1f1f; }
.platform-item.microsoft i { color: #00a1f1; }
.platform-item.claude i { color: #cc9b7a; }
.platform-item.meta i { color: #0668E1; }
.platform-item.grok i { color: #6b46c1; }

.platform-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #06a6e0;
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.platform-caption i {
    font-size: 1rem;
}

/* ===== Value Proposition ===== */
.genai-value-prop {
    padding: 20px 0 20px 30px;
}

.value-header {
    margin-bottom: 30px;
}

.value-badge {
    display: inline-block;
    background: rgba(6,166,224,0.05);
    color: #06a6e0;
    font-size: 0.7rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(6,166,224,0.1);
}

.value-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1c3a;
    line-height: 1.3;
    margin-bottom: 0;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.value-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.value-list li i {
    color: #06a6e0;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-list li strong {
    display: block;
    color: #0a1c3a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-list li p {
    color: #5a6a7e;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.value-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.genai-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0a1c3a;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(10,28,58,0.1);
}

.genai-btn-primary:hover {
    background: #06a6e0;
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(6,166,224,0.2);
}

.genai-btn-primary i {
    transition: transform 0.3s ease;
}

.genai-btn-primary:hover i {
    transform: translateX(5px);
}

.value-cta-note {
    color: #8a9aae;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Service Pills ===== */
.service-pills-container {
    background: #fafcfd;
    border-radius: 40px;
    padding: 30px 35px;
    border: 1px solid rgba(6,166,224,0.06);
       margin-bottom: 0;
}

.section-label {
    text-align: center;
    color: #06a6e0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 10px 22px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a3a4e;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.01);
}

.service-pill i {
    color: #06a6e0;
    font-size: 0.9rem;
}

.service-pill:hover {
    background: #06a6e0;
    color: white;
    border-color: #06a6e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6,166,224,0.15);
}

.service-pill:hover i {
    color: white;
}

/* ===== Animation ===== */
.genai-redesigned-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.genai-redesigned-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .genai-main-title {
        font-size: 2.5rem;
    }
    
    .genai-value-prop {
        padding: 40px 0 0 0;
    }
    
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .value-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .genai-redesigned-section {
        padding: 70px 0;
    }
    
    .genai-main-title {
        font-size: 2rem;
    }
    
    .genai-description {
        font-size: 1rem;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .value-header h3 {
        font-size: 1.4rem;
    }
    
    .service-pills-container {
        padding: 25px 20px;
    }
    
    .service-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .genai-btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .value-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .genai-main-title {
        font-size: 1.7rem;
    }
    
    .card-icon-circle {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .stat-highlight {
        font-size: 1.3rem;
    }
}
.genai-redesigned-section > .container > *:last-child {
    margin-bottom: 0 !important;
}


/* ============================================= */
/* AI SEO PROCESS - CONNECTED TIMELINE DESIGN    */
/* No boxes, no cards - organic flowing nodes    */
/* ============================================= */

.ai-process-timeline-section {
    padding: 50px 0 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle organic background */
.ai-process-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.ai-process-timeline-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 5;
}

.tl-title {
    /* font-size: 3rem;
    font-weight: 750; */
    color: #0a1c3a;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    background: #0a1c3a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tl-subtitle {
    /* font-size: 1.2rem; */
    color: #4a5a6e;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    /* font-weight: 400; */
}

/* ===== Timeline Container ===== */
.timeline-container {
    max-width: 1000px;
    margin: 50px auto 20px !important;
    position: relative;
}

/* ===== Timeline Node ===== */
.timeline-node {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

/* Left side - Marker column */
.node-left {
    width: 140px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

.node-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-number {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: #06a6e0;
    padding: 5px 14px;
    border-radius: 40px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    box-shadow: 0 6px 14px rgba(6,166,224,0.25);
    border: 2px solid white;
    z-index: 15;
}

.node-dot {
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #06a6e0;
    border-radius: 50%;
    position: relative;
    z-index: 12;
    box-shadow: 0 0 0 4px rgba(6,166,224,0.08);
    transition: all 0.3s ease;
}

.timeline-node:hover .node-dot {
    background: #06a6e0;
    border-color: white;
    box-shadow: 0 0 0 8px rgba(6,166,224,0.15);
    transform: scale(1.1);
}

.node-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, #06a6e0, rgba(6,166,224,0.2));
    margin-top: 5px;
    flex-grow: 1;
}


/* .timeline-node:last-child .node-line {
    display: none;
} */

/* Right side - Content column */
.node-right {
    flex: 1;
    padding-left: 20px;
}

.node-content {
    padding: 25px 0 15px;
    position: relative;
    border-bottom: 1px solid rgba(6,166,224,0.1);
}

/* .timeline-node:last-child .node-content {
    border-bottom: none;
} */

.node-icon {
    width: 48px;
    height: 48px;
    background: rgba(6,166,224,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #06a6e0;
    margin-bottom: 16px;
    border: 1px dashed rgba(6,166,224,0.3);
    transition: all 0.3s ease;
}

.timeline-node:hover .node-icon {
    background: rgba(6,166,224,0.08);
    border-color: #06a6e0;
    transform: scale(1.05);
}

.node-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.node-title {
    font-size: 1.6rem;
    font-weight: 650;
    color: #0a1c3a;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.3;
}

.node-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.node-tags span {
    background: rgba(6,166,224,0.03);
    color: #0477a3;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 60px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(6,166,224,0.08);
    transition: all 0.2s ease;
}

.timeline-node:hover .node-tags span {
    background: rgba(6,166,224,0.06);
    border-color: rgba(6,166,224,0.2);
}

.node-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #3e4e62;
    margin-bottom: 20px;
    max-width: 90%;
}

.node-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    padding-top: 10px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #06a6e0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #5a6a7e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.06);
}

/* ===== Outro / CTA ===== */
.timeline-outro {
    margin-top: 30px;
    background: rgba(6,166,224,0.02);
    border-radius: 80px;
    padding: 35px 45px;
    border: 1px solid rgba(6,166,224,0.1);
    backdrop-filter: blur(8px);
}

.outro-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.outro-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #06a6e0;
    box-shadow: 0 10px 25px rgba(6,166,224,0.1);
    border: 1px solid rgba(6,166,224,0.15);
}

.outro-text {
    flex: 1;
}

.outro-text h4 {
    font-size: 1.4rem;
    font-weight: 650;
    color: #0a1c3a;
    margin-bottom: 6px;
}

.outro-text p {
    font-size: 0.98rem;
    color: #4a5a6e;
    margin-bottom: 0;
}

.outro-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0a1c3a;
    color: white;
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 8px 20px rgba(10,28,58,0.15);
}

.outro-btn:hover {
    background: #06a6e0;
    transform: translateX(6px);
    box-shadow: 0 15px 30px rgba(6,166,224,0.25);
}

.outro-btn i {
    transition: transform 0.3s ease;
}

.outro-btn:hover i {
    transform: translateX(5px);
}

/* ===== Animation ===== */
.ai-process-timeline-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ai-process-timeline-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .tl-title {
        font-size: 2.5rem;
    }
    
    .timeline-container::before {
        left: 70px;
    }
    
    .node-left {
        width: 90px;
        padding-right: 20px;
    }
    
    .node-title {
        font-size: 1.4rem;
    }
    
    .node-description {
        max-width: 100%;
    }
    
    .outro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .outro-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ai-process-timeline-section {
        padding: 70px 0;
    }
    
    .tl-title {
        font-size: 2rem;
    }
    
    .tl-subtitle {
        font-size: 1rem;
    }
    
    .timeline-container::before {
        left: 45px;
    }
    
    .node-left {
        width: 60px;
        padding-right: 15px;
    }
    
    .node-number {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .node-dot {
        width: 14px;
        height: 14px;
        border-width: 2.5px;
    }
    
    .node-title {
        font-size: 1.2rem;
    }
    
    .node-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .node-stats {
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat {
        width: 100%;
    }
    
    .outro-text h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .timeline-node {
        flex-direction: column;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .node-left {
        width: 100%;
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .node-marker {
        flex-direction: row;
        gap: 15px;
    }
    
    .node-number {
        margin-bottom: 0;
    }
    
    .node-line {
        width: 80px;
        height: 2px;
        margin-top: 10px;
        background: linear-gradient(90deg, #06a6e0, rgba(6,166,224,0.1));
    }
    
    .node-right {
        padding-left: 0;
    }
    
    .node-content {
        padding-top: 0;
    }
    
    .timeline-outro {
        border-radius: 30px;
        padding: 30px 20px;
    }
}
.ai-process-timeline-section {
    padding-bottom: 20px !important;
}




/* ============================================= */
/* AI MAKE SEO EASIER - 6 BOX GRID DESIGN        */
/* Clean, specific, tangible benefits            */
/* ============================================= */

.ai-grid-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background */
.ai-grid-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.ai-grid-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
}

/* ===== Section Header ===== */
.grid-badge {
    display: inline-block;
    background: rgba(6,166,224,0.04);
    color: #06a6e0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    padding: 8px 24px;
    border-radius: 60px;
    margin-bottom: 20px;
    border: 1px solid rgba(6,166,224,0.12);
    backdrop-filter: blur(4px);
}

.grid-title {
    /* font-size: 2.8rem;
    font-weight: 750; */
    color: #0a1c3a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    background: #0a1c3a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .grid-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #06a6e0, #c0e6ff);
    border-radius: 4px;
    margin: 20px auto;
} */

.grid-subtitle {
    /* font-size: 1.2rem; */
    color: #4a5a6e;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    /* font-weight: 400; */
}

/* ===== 6 Box Grid ===== */
.ai-simplify-box {
    background: white;
    padding: 35px 30px;
    border-radius: 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ai-simplify-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(6,166,224,0.06);
    border-color: rgba(6,166,224,0.08);
}

/* Icon with glow effect */
.box-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.box-icon {
    width: 60px;
    height: 60px;
    background: rgba(6,166,224,0.04);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #06a6e0;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(6,166,224,0.08);
    transition: all 0.3s ease;
}

.ai-simplify-box:hover .box-icon {
    background: #06a6e0;
    color: white;
    border-color: #06a6e0;
    transform: scale(0.95);
}

.box-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(6,166,224,0.2);
    border-radius: 18px;
    filter: blur(8px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.ai-simplify-box:hover .box-glow {
    opacity: 0.3;
    width: 75px;
    height: 75px;
}

.box-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a1c3a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.box-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5a6e;
    margin-bottom: 25px;
    flex: 1;
}

.box-metric {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 750;
    color: #06a6e0;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.7rem;
    color: #5a6a7e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ===== Comparison Strip ===== */
.comparison-strip {
    background: linear-gradient(145deg, #fafcfd, #ffffff);
    border-radius: 32px;
    padding: 35px 40px;
    border: 1px solid rgba(6,166,224,0.06);
    box-shadow: 0 15px 30px rgba(0,0,0,0.01);
}

.strip-header {
    margin-bottom: 25px;
}

.strip-badge {
    display: inline-block;
    background: rgba(6,166,224,0.04);
    color: #06a6e0;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 60px;
    margin-bottom: 12px;
    border: 1px solid rgba(6,166,224,0.1);
}

.strip-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1c3a;
    margin-bottom: 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.strip-column {
    padding: 15px 0;
}

.strip-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 650;
}

.strip-label i {
    font-size: 1.2rem;
}

.traditional .strip-label i {
    color: #cbd5e1;
}

.traditional .strip-label span {
    color: #475569;
}

.ai .strip-label i {
    color: #06a6e0;
}

.ai .strip-label span {
    color: #06a6e0;
}

.strip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strip-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #4a5a6e;
}

.strip-list li i {
    width: 18px;
    color: #94a3b8;
}

.ai .strip-list li i {
    color: #06a6e0;
}

.strip-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-vs span {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a1c3a;
    border: 1px solid rgba(6,166,224,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* ===== CTA ===== */
.grid-cta {
    padding: 20px 0;
}

.grid-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0a1c3a;
    color: white;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 15px 30px rgba(10,28,58,0.1);
}

.grid-cta-btn:hover {
    background: #06a6e0;
    transform: translateX(5px);
    box-shadow: 0 20px 40px rgba(6,166,224,0.2);
}

.grid-cta-btn i {
    transition: transform 0.3s ease;
}

.grid-cta-btn:hover i {
    transform: translateX(5px);
}

.grid-cta-sub {
    margin-top: 20px;
    color: #5a6a7e;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Animation ===== */
.ai-grid-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ai-grid-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .grid-title {
        font-size: 2.2rem;
    }
    
    .strip-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strip-vs {
        display: none;
    }
    
    .comparison-strip {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .ai-grid-section {
        padding: 70px 0;
    }
    
    .grid-title {
        font-size: 1.8rem;
    }
    
    .grid-subtitle {
        font-size: 1rem;
    }
    
    .ai-simplify-box {
        padding: 30px 25px;
    }
    
    .box-title {
        font-size: 1.2rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .grid-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ai-simplify-box {
        padding: 25px 20px;
    }
    
    .box-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .box-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Industry Services Section */
.industry-services {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.industry-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(6, 166, 224, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 40%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-heading {
    font-weight: 800;
    margin-bottom: 5px;
    color: #091e3e;
    position: relative;
    display: inline-block;
}
/* 
.main-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #06a6e0, #0d6efd);
    border-radius: 2px;
} */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Item */
.service-item {
    background: white;
    border-radius: 14px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    z-index: 1;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(6, 166, 224, 0.1), rgba(13, 110, 253, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a6e0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
}

.item-title {
    font-weight: 700;
    color: #091e3e;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
}

/* Flip Card Back - Description */
.service-item .item-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    color: white;
    transform: rotateY(180deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 14px;
    line-height: 1.3;
    text-align: center;
    backface-visibility: hidden;
    z-index: 3;
    font-size: 0.75rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.service-item .item-description::-webkit-scrollbar {
    width: 4px;
}

.service-item .item-description::-webkit-scrollbar-track {
    background: transparent;
}

.service-item .item-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Hover Effects */
.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(6, 166, 224, 0.15);
}

.service-item:hover .item-description {
    transform: rotateY(0deg);
    opacity: 1;
}

.service-item:hover .item-icon,
.service-item:hover .item-title {
    transform: rotateY(180deg);
    opacity: 0;
}

.service-item:hover .item-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Float Animation */
@keyframes floatItem {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.service-item {
    animation: floatItem 4s ease-in-out infinite;
}

.service-item:hover {
    animation-play-state: paused;
}

.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.9s; }
.service-item:nth-child(5) { animation-delay: 1.2s; }
.service-item:nth-child(6) { animation-delay: 1.5s; }
.service-item:nth-child(7) { animation-delay: 1.8s; }
.service-item:nth-child(8) { animation-delay: 2.1s; }
.service-item:nth-child(9) { animation-delay: 2.4s; }
.service-item:nth-child(10) { animation-delay: 2.7s; }
.service-item:nth-child(11) { animation-delay: 3s; }
.service-item:nth-child(12) { animation-delay: 3.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .service-item {
        padding: 25px 15px;
        height: 130px;
    }
    
    .item-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-item .item-description {
        padding: 12px 10px;
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .industry-services {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-item {
        padding: 22px 12px;
        height: 120px;
    }
    
    .item-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .service-item .item-description {
        padding: 10px 8px;
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-item {
        padding: 20px 10px;
        height: 110px;
        border-radius: 12px;
    }
    
    .item-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .service-item .item-description {
        padding: 8px 6px;
        font-size: 0.6rem;
        line-height: 1.15;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 10px;
    }
    
    .service-item {
        height: 100px;
    }
}


/* ============================================= */
/* BENEFITS OF AI DRIVEN SEO SERVICES            */
/* 6-card grid with stats, trust elements        */
/* Clean, premium, value-focused                 */
/* ============================================= */

.ai-benefits-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
  
    overflow: hidden;
}

/* Background depth */
.ai-benefits-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.ai-benefits-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,166,224,0.02) 0%, rgba(6,166,224,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
}

.benefits-title {
    /* font-size: 2.8rem;
    font-weight: 750; */
    color: #0a1c3a;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    color: #0a1c3a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .benefits-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #06a6e0, #c0e6ff);
    border-radius: 4px;
    margin: 20px auto;
} */

.benefits-subtitle {
    /* font-size: 1.2rem; */
    color: #4a5a6e;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    /* font-weight: 400; */
}

/* ===== Benefit Cards ===== */
.benefit-card {
    height: 100%;
    background: transparent;
    perspective: 1000px;
}

.benefit-card-inner {
    background: white;
    padding: 35px 30px;
    border-radius: 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.benefit-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #06a6e0, #a0d8ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(6,166,224,0.06);
    border-color: rgba(6,166,224,0.1);
}

.benefit-card:hover .benefit-card-inner::before {
    opacity: 1;
}

/* Icon with floating effect */
.benefit-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(6,166,224,0.04);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #06a6e0;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(6,166,224,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #06a6e0;
    color: white;
    border-color: #06a6e0;
    transform: scale(0.95) rotate(3deg);
}

.benefit-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(6,166,224,0.2);
    border-radius: 22px;
    filter: blur(12px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.benefit-card:hover .benefit-icon-bg {
    opacity: 0.3;
    width: 90px;
    height: 90px;
}

.benefit-card-title {
    font-size: 1.4rem;
    /* font-weight: 700; */
    color: #0a1c3a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.benefit-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5a6e;
    margin-bottom: 25px;
    flex: 1;
}

.benefit-stat {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 750;
    color: #06a6e0;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: #5a6a7e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ===== Benefits Highlight Strip ===== */
.benefits-highlight {
    background: white;
    border-radius: 60px;
    padding: 30px 40px;
    border: 1px solid rgba(6,166,224,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.highlight-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    text-align: center;
}

.highlight-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #06a6e0;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.highlight-label {
    font-size: 0.8rem;
    color: #4a5a6e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.highlight-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.06);
}

/* ===== CTA Section with Trust Bubbles ===== */
.benefits-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.trust-bubble {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 25px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1c3a;
    border: 1px solid rgba(6,166,224,0.12);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.trust-bubble i {
    color: #06a6e0;
    font-size: 0.9rem;
}

.trust-bubble:hover {
    transform: translateY(-3px);
    border-color: rgba(6,166,224,0.3);
    box-shadow: 0 10px 20px rgba(6,166,224,0.06);
}

.benefits-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0a1c3a;
    color: white;
    padding: 18px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 15px 35px rgba(10,28,58,0.1);
}

.benefits-cta-btn:hover {
    background: #06a6e0;
    transform: translateX(5px);
    box-shadow: 0 20px 45px rgba(6,166,224,0.2);
}

.benefits-cta-btn i {
    transition: transform 0.3s ease;
}

.benefits-cta-btn:hover i {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 20px;
    color: #5a6a7e;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Animation ===== */
.ai-benefits-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ai-benefits-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .highlight-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .highlight-divider {
        display: none;
    }
    
    .benefits-highlight {
        border-radius: 40px;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .ai-benefits-section {
        padding: 70px 0;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card-inner {
        padding: 30px 25px;
    }
    
    .benefit-card-title {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .benefits-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .cta-bubbles {
        flex-direction: column;
        width: 100%;
    }
    
    .trust-bubble {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .highlight-value {
        font-size: 1.8rem;
    }
}


/* Business Management CTA Section with Background Image - Compact Version */
.bms-cta-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://content.app-sources.com/s/51780403845024877/uploads/Images/purpose-vision-values-3306219.png?format=webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: #ffffff;
    padding-right: 20px;
}

.cta-title {
    font-weight: 700;
    color: #06a3da;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(6, 163, 218, 0.3);
    overflow: hidden;
    position: relative;
    min-width: 220px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(104, 164, 196, 0.4);
    border-color: transparent;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Animated elements for visual interest */
.bms-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 163, 218, 0.1) 50%, transparent 70%);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .bms-cta-section {
        padding: 50px 0;
    }
    
    .cta-button {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .bms-cta-section {
        padding: 45px 0;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .cta-button {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .bms-cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .cta-note {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .bms-cta-section {
        padding: 35px 20px;
    }
}


/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    margin-bottom: 0; /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
    margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-main-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
    color: #091e3e; /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
    color: #06a3da; /* Blue color */
}

.faq-subtitle {
    font-size: 1rem;
    color: #444;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
    margin-bottom: 14px; /* SPACE BETWEEN BOXES */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
    border: 1px solid #d1ecff;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.03), rgba(104, 164, 196, 0.03));
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    min-height: 70px; /* Taller question area */
    transition: all 0.3s ease;
    padding: 0 30px;
}

/* Question Content */
.question-content {
    display: flex;
    align-items: center;
    flex: 1;
}

/* FAQ Title */
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #091e3e; /* Changed to blue for questions */
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0; /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
    display: none; /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
    color: #0480b8; /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
    color: #06a3da; /* Keep blue when active */
    font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
    color: #091e3e;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
    background: rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.15);
    transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 30px;
    position: relative;
    line-height: 1.6;
    background: rgba(6, 163, 218, 0.02);
    border-top: 1px solid transparent;
}

.faq-answer::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #68a4c4, #06a3da);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 25px 30px;
    border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-answer p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 10px;
}

.faq-question:hover {
    transform: translateX(3px);
}

.faq-item.active .faq-question {
    transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-main-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .faq-main-title::after {
        width: 80px;
        height: 2.5px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        min-height: 65px;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer::before {
        left: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    
    .faq-main-title::after {
        width: 60px;
        height: 2px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        min-height: 60px;
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer::before {
        left: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* For larger screens */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 900px;
    }
}

@media (min-width: 1400px) {
    .faq-container {
        max-width: 1000px;
    }
    
    .faq-item {
        margin-bottom: 18px;
    }
}