 :root {
     /* --- BRAND IDENTITY (Premium Pink & Gold) --- */
     --primary: hsl(334, 79%, 38%);
     /* Royal Pink */
     --primary-rgb: 173, 20, 87;
     --primary-light: #FDF2F5;
     /* Soft Petal Pink */
     --primary-dark: #880E4F;
     /* Deep Crimson */
     --primary-glass: rgba(173, 20, 87, 0.1);

     --secondary: hsl(43, 89%, 38%);
     /* Sovereign Gold */
     --secondary-rgb: 184, 134, 11;
     --secondary-light: hsl(43, 50%, 96%);
     /* Pale Silk Gold */
     --secondary-dark: hsl(43, 100%, 33%);
     /* Burnished Gold */
     --secondary-glass: rgba(184, 134, 11, 0.1);

     /* --- TEXT SYSTEM --- */
     --text-main: #1A1C1E;
     /* Near Black Charcoal */
     --text-muted: #5E6368;
     /* Slate Grey */
     --text-light: #FFFFFF;
     --text-on-primary: #FFFFFF;

     /* --- BACKGROUND SYSTEM --- */
     --bg-white: #FFFFFF;
     --bg-soft: #F4F7F5;
     /* Emerald Mist (Ayurvedic freshness) */
     --bg-warm: #FFFCF5;
     /* Sacred Gold Tint (Traditional warmth) */
     --bg-accent: #FFF0F3;
     /* Ultra Light Pink */

     /* --- UI ELEMENTS --- */
     --glass-bg: rgba(255, 255, 255, 0.85);
     --glass-border: rgba(255, 255, 255, 0.5);
     --border-light: #F0F0F0;
     --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
     --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.08);

     /* --- LEGACY MAPPINGS (Ensures existing code doesn't break) --- */
     --ayur-green: var(--primary);
     --ayur-green-light: var(--primary-light);
     --ayur-pink: var(--primary);
     --ayur-pink-light: var(--primary-light);
     --ayur-gold: var(--secondary);
     --ayur-gold-light: var(--secondary-light);
 }

 body {
     font-family: 'Baloo 2', cursive;
     color: var(--text-main);
     background-color: var(--bg-white);
     overflow-x: hidden;
     font-size: 1.13rem;
     line-height: 1.6;
 }

 .bg-ayur-green {
     background-color: var(--primary) !important;
 }

 .text-ayur-green {
     color: var(--primary) !important;
 }

 .bg-ayur-pink-light {
     background-color: var(--primary-light) !important;
 }

 .text-ayur-pink {
     color: var(--primary) !important;
 }

 .bg-ayur-gold-light {
     background-color: var(--secondary-light) !important;
 }

 .text-ayur-gold {
     color: var(--secondary) !important;
 }

 /* Semantic Brand Helpers */
 .bg-primary {
     background-color: var(--primary) !important;
 }

 .text-primary {
     color: var(--primary) !important;
 }

 .bg-primary-light {
     background-color: var(--primary-light) !important;
 }

 .bg-secondary {
     background-color: var(--secondary) !important;
 }

 .text-secondary {
     color: var(--secondary) !important;
 }

 .bg-secondary-light {
     background-color: var(--secondary-light) !important;
 }

 .bg-soft {
     background-color: var(--bg-soft) !important;
 }

 .bg-warm {
     background-color: var(--bg-warm) !important;
 }

 .text-main {
     color: var(--text-main) !important;
 }

.text-muted {
    color: var(--text-muted) !important;
}

.navbar {
    background-color: rgba(var(--primary-rgb), 0.95);
    /* Initial color: Default premium pink */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 8px 0;
    /* Fixed the empty padding */
}

.navbar.scrolled {
    margin-top: 15px;
    width: 79%;
    background-color: rgba(var(--primary-rgb), 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0 !important;
}

.navbar.scrolled .nav-link {
    color: white !important;
}

.navbar.scrolled .navbar-toggler .bi-list {
    color: white !important;
}

.navbar.scrolled .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white !important;
}

.navbar.scrolled .btn-nav {
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.nav-link {
    color: white !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
}

.btn-nav {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 50px;
    padding: 10px 28px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.hero-section {
    padding: 180px 0 150px;
    background:
        radial-gradient(circle at top right, var(--secondary-light) 0%, transparent 70%),
        radial-gradient(circle at bottom left, var(--bg-soft) 0%, transparent 70%),
        var(--bg-white);
    position: relative;
    overflow: hidden;
    min-height: 850px;
    display: flex;
    align-items: center;
}

/* Architectural Watermark */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    /* Subtle texture */
    opacity: 0.3;
    pointer-events: none;
}

/* Double Layered Wave */
.form-icon-inner {
    position: absolute;
    left: 20px;
    top: 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-custom:focus-within .form-icon-inner {
    color: var(--primary) !important;
    transform: scale(1.15);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill-gold {
    fill: var(--secondary-glass);
}

.hero-wave .shape-fill-white {
    fill: var(--bg-white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--bg-soft);
    z-index: 0;
}

.hero-badge {
    background: linear-gradient(135deg, #FFF5F8 0%, #FCE4EC 100%);
    color: var(--ayur-pink);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border: 2px solid rgba(var(--primary-rgb), 0.22);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.14);
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-badge i {
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

.hero-badge.bg-primary-light {
    background: linear-gradient(135deg, #FFF5F8 0%, #FCE4EC 100%) !important;
    border-color: rgba(var(--primary-rgb), 0.25) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.14) !important;
}

.hero-badge.bg-secondary-light {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFE8B8 100%) !important;
    border-color: rgba(var(--secondary-rgb), 0.28) !important;
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.12) !important;
}

.text-center .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Badge Pill (निसर्गदत्त मातृत्व) */
.hero-badge-pill {
    position: relative;
    z-index: 2;
}

.badge-pill-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 100px;
    border: 2px solid rgba(var(--primary-rgb), 0.18);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.10);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.badge-pill-inner i {
    font-size: 1.15rem;
    color: var(--primary);
}

.badge-pill-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.18);
}

.hero-title {
    font-size: clamp(2.8rem, 4vw, 5.2rem);
    font-weight: 800;
    line-height: 1.35;
    padding: 0;
    color: #C2185B;
    -webkit-text-fill-color: #C2185B;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    animation: titleFloat 4s ease-in-out infinite;
    will-change: transform, filter;
}

/* Title Shape Container */
.hero-title-shape {
    background: linear-gradient(135deg, rgba(255, 240, 243, 0.7) 0%, rgba(255, 248, 230, 0.7) 100%);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    border-left: 5px solid var(--primary);
    border-radius: 0 20px 20px 0;
    padding: 18px 28px 14px 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-title-shape::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title-shape:hover {
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.14);
    transform: translateX(4px);
}

/* Subtitle Shape Container */
.hero-subtitle-shape {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE8EE 100%);
    border: 2px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 16px;
    padding: 14px 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.08);
    transition: all 0.3s ease;
}

.hero-subtitle-shape .hero-tagline {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-subtitle-shape:hover {
    box-shadow: 0 10px 32px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-2px);
}

/* Info Shape Container */
.hero-info-shape {
    background: linear-gradient(135deg, #FFFCF5 0%, #FFF8EE 100%);
    border: 2px solid rgba(var(--secondary-rgb), 0.15);
    border-left: 5px solid var(--secondary);
    border-radius: 0 18px 18px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 24px rgba(var(--secondary-rgb), 0.08);
    transition: all 0.3s ease;
}

.hero-info-shape .hero-subtitle {
    margin-bottom: 0;
    max-width: none;
}

.hero-info-shape:hover {
    box-shadow: 0 10px 32px rgba(var(--secondary-rgb), 0.14);
    transform: translateX(4px);
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 10px rgba(184, 134, 11, 0.2));
    }
    50% {
        transform: translateY(-6px);
        filter: drop-shadow(3px 8px 15px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 20px rgba(184, 134, 11, 0.4));
    }
}

.hero-tagline {
    font-size: 1.75rem;
    line-height: 1.35;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-main);
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 550px;
}

/* Enhanced Promo Card Glow */
.promo-card-glow {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
    border: 2px solid rgba(var(--secondary-rgb), 0.25);
    box-shadow: 0 8px 32px rgba(var(--secondary-rgb), 0.12), 0 0 0 1px rgba(var(--secondary-rgb), 0.05);
    transition: all 0.4s ease;
    animation: promoGlow 3s ease-in-out infinite;
}

.promo-card-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(var(--secondary-rgb), 0.2), 0 0 0 2px rgba(var(--secondary-rgb), 0.15);
    border-color: rgba(var(--secondary-rgb), 0.4);
}

@keyframes promoGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(var(--secondary-rgb), 0.12), 0 0 0 1px rgba(var(--secondary-rgb), 0.05);
    }
    50% {
        box-shadow: 0 12px 40px rgba(var(--secondary-rgb), 0.2), 0 0 20px rgba(var(--secondary-rgb), 0.08);
    }
}

.promo-arrow-pulse {
    margin-left: auto;
    color: var(--secondary);
    font-size: 1.5rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(6px); opacity: 1; }
}

.hero-carousel-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.hero-carousel {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 60px 100px -20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
}

.carousel-item img {
    height: 650px;
    object-fit: cover;
    transition: transform 6s ease;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 400px;
    }

    .carousel-caption-custom {
        bottom: 35px !important;
        left: 20px !important;
    }

    .carousel-caption-custom h3 {
        font-size: 1.12rem !important;
    }

    .caption-tag {
        font-size: 0.6rem !important;
        padding: 2px 8px !important;
        margin-bottom: 5px !important;
    }

    .custom-indicators {
        bottom: 12px !important;
        gap: 8px !important;
    }

    .hero-carousel-wrapper {
        padding-left: 0;
    }
}

.carousel-item.active img {
    transform: scale(1.1);
}

.carousel-img-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

/* Custom Indicators */
.custom-indicators {
    bottom: 40px;
    gap: 12px;
    margin-bottom: 0;
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid transparent !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1 !important;
}

.custom-indicators button.active {
    width: 40px !important;
    border-radius: 20px !important;
    background-color: white !important;
}

/* Custom Controls */
.custom-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-carousel:hover .custom-control {
    opacity: 1;
}

.custom-control:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.custom-control i {
    font-size: 1.5rem;
    color: white;
}

/* Custom Caption */
.carousel-caption-custom {
    position: absolute;
    bottom: 60px;
    left: 40px;
    color: white;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transition: all 0.8s ease;
    transform: translateY(20px);
    opacity: 0;
}

.carousel-item.active .carousel-caption-custom {
    transform: translateY(0);
    opacity: 1;
}

.caption-tag {
    background: var(--ayur-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.carousel-caption-custom h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.stats-floating {
    position: absolute;
    z-index: 10;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stats-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -15px rgba(0, 0, 0, 0.2);
}

.btn-ayur {
    background: var(--ayur-gold);
    color: white !important;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.btn-ayur:hover {
    transform: translateY(-3px);
    background: var(--secondary-dark);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: var(--ayur-gold);
    margin: 15px auto 0;
    border-radius: 10px;
}

.target-audience-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

/* Section Divider */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider .shape-fill {
    fill: var(--bg-soft);
    /* Matches next section */
}

.target-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(173, 20, 87, 0.12);
    border: 6px solid white;
}

.target-image-container img {
    width: 100%;
    height: 550px;
    /* Reduced height for better balance */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.target-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns to reduce height */
    gap: 15px;
}

.target-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.target-item:hover {
    transform: translateY(-5px);
    border-color: var(--ayur-green);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.08);
}

.target-check {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--primary-light) 0%, #FFE4EE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ayur-green);
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.target-check::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.25);
    opacity: 0;
    transform: scale(0.85);
}

.target-check i {
    display: block;
}

.target-audience-section.reveal:not(.active) .target-check i {
    transform: scale(0);
    opacity: 0;
}

/* Target section: .reveal only triggers checklist animation, not fade-out */
.target-audience-section.reveal {
    opacity: 1;
    transform: none;
    filter: none;
}

.target-item:hover .target-check {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.25);
}

.target-item:hover .target-check::before {
    opacity: 1;
    transform: scale(1);
    animation: targetCheckRing 0.6s ease-out;
}

.target-item:hover .target-check i {
    animation: targetCheckBounce 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Staggered check pop when section scrolls into view */
.target-audience-section.reveal.active .target-item {
    animation: targetItemIn 0.55s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.target-audience-section.reveal.active .target-item:nth-child(1) { animation-delay: 0.05s; }
.target-audience-section.reveal.active .target-item:nth-child(2) { animation-delay: 0.12s; }
.target-audience-section.reveal.active .target-item:nth-child(3) { animation-delay: 0.19s; }
.target-audience-section.reveal.active .target-item:nth-child(4) { animation-delay: 0.26s; }
.target-audience-section.reveal.active .target-item:nth-child(5) { animation-delay: 0.33s; }
.target-audience-section.reveal.active .target-item:nth-child(6) { animation-delay: 0.4s; }
.target-audience-section.reveal.active .target-item:nth-child(7) { animation-delay: 0.47s; }
.target-audience-section.reveal.active .target-item:nth-child(8) { animation-delay: 0.54s; }
.target-audience-section.reveal.active .target-item:nth-child(9) { animation-delay: 0.61s; }
.target-audience-section.reveal.active .target-item:nth-child(10) { animation-delay: 0.68s; }

.target-audience-section.reveal.active .target-check i {
    animation: targetCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.target-audience-section.reveal.active .target-item:nth-child(1) .target-check i { animation-delay: 0.2s; }
.target-audience-section.reveal.active .target-item:nth-child(2) .target-check i { animation-delay: 0.27s; }
.target-audience-section.reveal.active .target-item:nth-child(3) .target-check i { animation-delay: 0.34s; }
.target-audience-section.reveal.active .target-item:nth-child(4) .target-check i { animation-delay: 0.41s; }
.target-audience-section.reveal.active .target-item:nth-child(5) .target-check i { animation-delay: 0.48s; }
.target-audience-section.reveal.active .target-item:nth-child(6) .target-check i { animation-delay: 0.55s; }
.target-audience-section.reveal.active .target-item:nth-child(7) .target-check i { animation-delay: 0.62s; }
.target-audience-section.reveal.active .target-item:nth-child(8) .target-check i { animation-delay: 0.69s; }
.target-audience-section.reveal.active .target-item:nth-child(9) .target-check i { animation-delay: 0.76s; }
.target-audience-section.reveal.active .target-item:nth-child(10) .target-check i { animation-delay: 0.83s; }

.target-audience-section.reveal.active .target-check {
    animation: targetCheckGlow 2.8s ease-in-out infinite;
}

.target-audience-section.reveal.active .target-item:nth-child(1) .target-check { animation-delay: 0.9s; }
.target-audience-section.reveal.active .target-item:nth-child(2) .target-check { animation-delay: 1s; }
.target-audience-section.reveal.active .target-item:nth-child(3) .target-check { animation-delay: 1.1s; }
.target-audience-section.reveal.active .target-item:nth-child(4) .target-check { animation-delay: 1.2s; }
.target-audience-section.reveal.active .target-item:nth-child(5) .target-check { animation-delay: 1.3s; }
.target-audience-section.reveal.active .target-item:nth-child(6) .target-check { animation-delay: 1.4s; }
.target-audience-section.reveal.active .target-item:nth-child(7) .target-check { animation-delay: 1.5s; }
.target-audience-section.reveal.active .target-item:nth-child(8) .target-check { animation-delay: 1.6s; }
.target-audience-section.reveal.active .target-item:nth-child(9) .target-check { animation-delay: 1.7s; }
.target-audience-section.reveal.active .target-item:nth-child(10) .target-check { animation-delay: 1.8s; }

@keyframes targetItemIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes targetCheckPop {
    0% {
        transform: scale(0) rotate(-25deg);
        opacity: 0;
    }

    65% {
        transform: scale(1.2) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@keyframes targetCheckGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0);
    }
}

@keyframes targetCheckRing {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes targetCheckBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes mobileTargetCardIn {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileTargetCheckPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    70% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mobileCircleFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

@keyframes mobileCircleRingSpin {
    0% {
        transform: rotate(0deg);
        opacity: 0.45;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.45;
    }
}

@keyframes mobileCirclePulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.65), 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.12), 0 8px 16px rgba(var(--primary-rgb), 0.16);
    }
}

@media (prefers-reduced-motion: reduce) {

    .target-audience-section.reveal.active .target-item,
    .target-audience-section.reveal.active .target-check,
    .target-audience-section.reveal.active .target-check i {
        animation: none !important;
    }

    .target-check i {
        transform: scale(1);
        opacity: 1;
    }
}

.target-item-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
}

/* Decorative Element */
.target-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.problem-section {
    padding: 120px 0;
    background: var(--bg-soft);
    /* Emerald Mist - Clear separation */
    position: relative;
}

/* Narrative Connector */
.section-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    /* Sits on the divider */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--ayur-gold), transparent);
}

.connector-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--ayur-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ayur-gold);
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.15);
}

/* Legacy problem grid kept for reference, replaced by visual grid */
.problem-grid {
    display: none;
}

.problem-illustration-box {
    display: none;
}

/* ===== VISUAL PROBLEM CARDS — NEW DESIGN ===== */
.problem-section-desc {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.problem-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.pv-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.pv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.pv-top {
    height: 180px;
    position: relative;
    overflow: hidden;
}

/* The actual photo inside the card top */
.pv-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pv-card:hover .pv-img {
    transform: scale(1.1);
}

.pv-body {
    padding: 20px 20px 22px;
    background: white;
}

.pv-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 5px;
    line-height: 1.3;
    font-family: 'Baloo 2', cursive;
}

.pv-sub {
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    font-family: 'Baloo 2', cursive;
}

.pv-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'Baloo 2', cursive;
    letter-spacing: 0.3px;
}

/* 2-column layout at medium viewport */
@media (max-width: 1199px) {
    .problem-visual-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .pv-top {
        height: 160px;
    }
}

@media (max-width: 991px) {
    .problem-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.benefit-section {
    padding: 120px 0;
    background: var(--bg-warm);
    /* Sacred Gold Tint */
    position: relative;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-premium {
    position: relative;
    height: 500px;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(184, 134, 11, 0.2);
}

.benefit-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.benefit-card-premium:hover .benefit-bg-img {
    transform: scale(1.1);
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
}

.benefit-content-glass {
    position: relative;
    z-index: 2;
    padding: 14px 16px;
    margin: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
}

.benefit-card-premium i {
    font-size: 2.5rem;
    color: var(--ayur-gold);
    margin-bottom: 15px;
    display: block;
}

.benefit-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.25;
}

.benefit-card-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 0;
}

.problem-item {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid var(--ayur-pink-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.problem-item:hover {
    background: var(--ayur-pink-light);
    color: var(--ayur-pink);
}

.expert-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
}

.iq-card {
    background: var(--ayur-green-light);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.iq-card:hover {
    background: var(--ayur-green);
    color: white;
}

.registration-box {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.reg-info {
    background-color: var(--ayur-green);
    color: white;
    padding: 50px;
}

.reg-form {
    padding: 50px;
}

.form-control {
    border-radius: 15px;
    padding: 15px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border-light);
}

/* Registration Section Architecture */
.registration-section {
    padding: 60px 0;
    background: var(--bg-soft);
}
.registration-box {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(173, 20, 87, 0.07);
    border: 1px solid rgba(173, 20, 87, 0.04);
    transition: all 0.4s ease;
}

.registration-box:hover {
    box-shadow: 0 50px 110px rgba(173, 20, 87, 0.12);
}

.reg-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reg-info::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.07);
    filter: blur(50px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.reg-info h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
}

.reg-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.reg-glass-item {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reg-glass-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.reg-glass-whatsapp {
    border-style: dashed !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.05);
}

.reg-glass-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.reg-glass-whatsapp:hover .whatsapp-icon {
    background: #25D366 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
}

.reg-icon-circle {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary) !important;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.15);
}

.reg-glass-item:hover .reg-icon-circle {
    transform: rotate(15deg) scale(1.1);
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 0 15px white;
}

.reg-form {
    padding: 60px 50px;
    background: var(--bg-warm);
    border-left: 1px solid rgba(173, 20, 87, 0.04);
}

.form-group-custom {
    margin-bottom: 22px;
    position: relative;
}

.reg-label {
    display: block !important;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    padding-left: 52px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    background: #FAFAFA;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--text-main);
}

.form-control-custom::placeholder {
    color: #A0AEC0;
    opacity: 0.85;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary) !important;
    background: white;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.08) !important;
}

.btn-action-master {
    background: linear-gradient(135deg, var(--ayur-gold) 0%, var(--secondary-dark) 100%) !important;
    color: white !important;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.12rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-action-master:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--secondary-rgb), 0.4);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--ayur-gold) 100%) !important;
}

.btn-action-master:active {
    transform: translateY(1px);
}

/* Subtitle highlight style */
.highlight-text {
    color: var(--primary) !important;
    font-weight: 800 !important;
}

/* Gallery - Infinite Marquee */
.gallery-section {
    padding: 60px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.marquee-wrapper {
    margin-top: 30px;
    display: flex;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee var(--gallery-duration, 30s) linear infinite;
    width: max-content;
    --gallery-slide-width: 370px;
    --gallery-count: 4;
}

.gallery-item-marquee {
    width: 350px;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.gallery-item-marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Footer - Sovereign Legacy */
footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.05;
    pointer-events: none;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
    background: var(--bg-white);
    padding: 8px;
    border-radius: 12px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFFFFF;
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    opacity: 1;
    color: white;
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-grid {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--ayur-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Timed Popup Styles */
.modal-content-premium {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.modal-reg-header {
    background: var(--ayur-green);
    color: white;
    padding: 30px;
    position: relative;
}

.modal-date-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 6px 14px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
    margin-right: 28px; /* Prevents overlapping with the close button 'x' */
}

.modal-date-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700; /* Gold */
    font-size: 0.95rem;
    flex-shrink: 0;
}

.modal-date-label {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.modal-date-value {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.modal-reg-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
}

.modal-reg-body {
    padding: 40px;
    background: var(--bg-white);
}

.btn-close-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1051;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: all 0.3s;
}

.btn-close-premium:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.feature-story-hub {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.feature-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.story-item {
    display: flex;
    gap: 20px;
    padding: 30px 25px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.story-item:hover {
    transform: translateY(-12px);
    border-color: var(--ayur-green-light);
    box-shadow: 0 40px 80px rgba(173, 20, 87, 0.1);
}

.story-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: var(--ayur-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.story-item:hover::after {
    opacity: 1;
}

.story-icon-hub {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(173, 20, 87, 0.08);
}

.story-icon-hub i {
    font-size: 2.25rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

.story-icon-01 {
    background: linear-gradient(145deg, #FDF2F5 0%, #FFE4EE 100%);
    color: var(--primary);
}

.story-icon-02 {
    background: linear-gradient(145deg, #FFF8E8 0%, #FFE8B8 100%);
    color: var(--secondary-dark);
}

.story-icon-03 {
    background: linear-gradient(145deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}

.story-icon-04 {
    background: linear-gradient(145deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
}

.story-icon-05 {
    background: linear-gradient(145deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1565C0;
}

.story-icon-06 {
    background: linear-gradient(145deg, #FFF3E0 0%, #FFCC80 100%);
    color: #E65100;
}

.story-icon-07 {
    background: linear-gradient(145deg, #FCE4EC 0%, #F8BBD0 100%);
    color: #AD1457;
}

.story-icon-08 {
    background: linear-gradient(145deg, #E8F5E9 0%, #A5D6A7 100%);
    color: #1B5E20;
}

.story-item:hover .story-icon-hub {
    background: var(--ayur-green);
    border-color: transparent;
    color: white;
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(173, 20, 87, 0.25);
}

.story-item:hover .story-icon-hub i {
    transform: scale(1.05);
}

.story-content {
    flex-grow: 1;
}

.story-index {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ayur-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.story-title-hub {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 15px;
}

.story-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .feature-story-grid {
        grid-template-columns: 1fr;
    }

    .story-item {
        padding: 40px 25px;
    }

    .story-title-hub {
        font-size: 1.25rem;
    }
}

.video-guidance-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    flex: 0 1 calc(50% - 20px);
    min-width: 300px;
    max-width: 600px;
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(173, 20, 87, 0.12);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
}

.video-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ayur-green);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-guidance-section {
        padding: 60px 0;
    }
}

.expert-enrollment-section {
    padding: 120px 0;
    background: var(--bg-soft);
    padding: 60px 0;
}

.expert-grid-normal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 40px;
    align-items: stretch;
}

.doctor-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-img-container {
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-soft);
}

.doctor-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on faces */
}

.doctor-content {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.doctor-qual {
    color: var(--ayur-gold);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ayur-green);
    margin-bottom: 10px;
}

.doctor-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.doctor-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    align-self: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
}

.doctor-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

@media (max-width: 768px) {
    .expert-grid-normal {
        grid-template-columns: 1fr;
    }
}

/* Sovereign Action Center */
.action-center-card {
    background: var(--ayur-green);
    border-radius: 40px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(27, 67, 50, 0.2);
}

.action-center-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
    pointer-events: none;
}

.action-icon-3d {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--ayur-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.action-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.action-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-action-master {
    background: var(--ayur-gold);
    color: white;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    border: none;
}

.btn-action-master:hover {
    transform: scale(1.05);
    background: var(--secondary-dark);
    color: white;
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.4);
}

.action-center-card .btn-action-master {
    width: auto !important;
    max-width: 100%;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1100px) {
    .expert-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-center-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .expert-grid-modern {
        grid-template-columns: 1fr;
    }

    .action-center-card {
        grid-column: span 1;
        padding: 60px 30px;
    }

    .expert-card-vertical {
        height: 500px;
    }
}

/* Testimonials 'Normal' Review Carousel */
.testimonial-section {
    padding: 60px 0;
    background: var(--bg-warm);
}

.review-card {
    background: var(--bg-white);
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--secondary-glass);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.star-rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.review-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
    border: 2px solid var(--ayur-gold);
}

.review-avatar-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-on-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--ayur-gold);
    flex-shrink: 0;
}

.review-source {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ayur-gold);
    margin-bottom: 10px;
    padding: 4px 10px;
    background: var(--secondary-light);
    border-radius: 100px;
}

.review-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ayur-green);
}

.review-info small {
    color: var(--ayur-gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.carousel-control-prev-review,
.carousel-control-next-review {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ayur-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-control-prev-review {
    left: -20px;
}

.carousel-control-next-review {
    right: -20px;
}


.testi-quote-icon {
    position: absolute;
    top: -25px;
    left: 50px;
    width: 50px;
    height: 50px;
    background: var(--ayur-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.testi-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--ayur-gold);
}

.testi-name {
    font-weight: 800;
    color: var(--ayur-green);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testi-status {
    font-size: 0.85rem;
    color: var(--ayur-gold);
    font-weight: 700;
    text-transform: uppercase;
}

/* Gallery Section - Infinite Marquee Redesign */
.gallery-section {
    padding: 50px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.marquee-wrapper {
    margin-top: 30px;
    display: flex;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee var(--gallery-duration, 30s) linear infinite;
    width: max-content;
    --gallery-slide-width: 370px;
    --gallery-count: 4;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.gallery-item-marquee {
    width: 350px;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.gallery-item-marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-marquee:hover img {
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--gallery-slide-width) * var(--gallery-count) * -1));
    }
}

@media (max-width: 768px) {
    .marquee-track {
        --gallery-slide-width: 300px;
    }

    .gallery-item-marquee {
        width: 280px;
        height: 200px;
    }
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(173, 20, 87, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: var(--ayur-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 40px 30px;
    }
}

.reg-info,
.reg-form {
    padding: 30px;
}

/* =========================================================
   MOBILE-FIRST APP-LIKE DESIGN SYSTEM
   Goal: Native app feel, not a scaled-down website
   Breakpoint: <= 991px (mobile/tablet)
   ========================================================= */

/* ---- BOTTOM NAVIGATION BAR (Mobile Only) ---- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    z-index: 9999;
    padding: 0 4px env(safe-area-inset-bottom, 0);
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.07);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 52px;
    min-height: 48px;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
    font-family: 'Baloo 2', cursive;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    line-height: 1;
}

.mobile-nav-item:active {
    transform: scale(0.9);
}

.mobile-nav-item.active-nav {
    color: var(--ayur-green);
}

.mobile-nav-item.cta-nav {
    background: var(--ayur-green);
    color: white !important;
    border-radius: 18px;
    padding: 8px 14px;
    min-height: 52px;
    min-width: 60px;
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.35);
    margin-top: -8px;
}

.mobile-nav-item.cta-nav i {
    font-size: 1.3rem;
}

/* ---- WHATSAPP FLOATING ACTION BUTTON ---- */
.whatsapp-fab {
    display: none;
    position: fixed;
    bottom: 84px;
    right: 18px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 9998;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-fab:hover,
.whatsapp-fab:active {
    transform: scale(1.1);
    color: white;
}

/* ---- SWIPE HINT PILL ---- */
.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--ayur-gold);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.swipe-hint i {
    font-size: 0.9rem;
    animation: swipeAnim 1.5s ease-in-out infinite;
}

@keyframes swipeAnim {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

/* ---- MOBILE SCROLL DOTS ---- */
.mobile-scroll-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.mobile-scroll-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all 0.3s ease;
}

.mobile-scroll-dots .dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--ayur-green);
}

/* =========================================================
   RESPONSIVE OVERRIDES — <= 991px
   ========================================================= */
@media (max-width: 991px) {

    /* ---- PREVENT HORIZONTAL OVERFLOW (right-side gap) ---- */
    html,
    body {
        overflow-x: clip !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* Sections that may bleed beyond viewport */
    header,
    section,
    footer,
    .container,
    .row {
        max-width: 100% !important;
    }

    /* Fix: target glow absolute element bleeds right */
    .target-glow {
        display: none !important;
    }

    /* Fix: hero section right-side bg slab */
    .hero-section::before {
        display: none !important;
    }

    /* Fix: hero wave SVG wider than viewport */
    .hero-wave svg {
        width: 100% !important;
    }

    /* Fix: section-divider SVG overflow */
    .section-divider svg {
        width: 100% !important;
    }

    /* Body padding for bottom nav */
    body {
        padding-bottom: 68px;
    }

    /* Show mobile elements */
    .mobile-bottom-nav {
        display: flex;
    }

    .whatsapp-fab {
        display: flex;
    }

    .swipe-hint {
        display: flex;
    }

    .mobile-scroll-dots {
        display: flex;
    }

    /* ===== NAVBAR ===== */
    .navbar {
        padding: 6px 0 !important;
        background-color: rgba(173, 20, 87, 0.98) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        margin-top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        transform: none !important;
        left: 0 !important;
    }

    .navbar.scrolled {
        margin-top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        transform: none !important;
        left: 0 !important;
        background-color: rgba(173, 20, 87, 0.98) !important;
    }

    .navbar-brand img {
        height: 58px !important;
        transition: height 0.3s ease !important;
    }

    /* Mobile Logo Badge - Centered in navbar */
    .mobile-logo-badge {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--text-light) !important;
        font-size: 0.78rem;
        border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow: none !important;
        white-space: nowrap;
        transition: all 0.3s ease;
        padding: 5px 12px;
        border-radius: 50px;
        font-weight: 700;
        flex: 0 0 auto !important;
        margin: 0 auto;
    }

    .mobile-logo-badge i {
        font-size: 0.95rem;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .navbar-toggler .bi-list {
        font-size: 1.5rem !important;
        color: white !important;
    }

    .navbar-collapse {
        background-color: rgba(173, 20, 87, 1) !important;
        border-radius: 20px;
        margin-top: 12px;
        padding: 20px !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .navbar-nav {
        gap: 4px !important;
        margin-top: 0 !important;
    }

    .nav-link {
        padding: 12px 16px !important;
        font-size: 1.05rem !important;
         justify-content: center;
     }

     /* ===== HERO SECTION ===== */
     .hero-section {
         padding: 120px 0 60px !important;
         min-height: auto !important;
     }

     .hero-section::before {
         width: 100% !important;
         opacity: 0.15 !important;
     }

     /* Tighten Bootstrap margin utilities inside hero on mobile */
     .hero-section .mb-4 {
         margin-bottom: 12px !important;
     }

     .hero-section .mb-5 {
         margin-bottom: 16px !important;
     }

     /* Row gap between text col and carousel col */
     .hero-section .gy-5 {
         --bs-gutter-y: 1.5rem !important;
     }

      .hero-title {
          font-size: 2.4rem !important;
          letter-spacing: -0.8px !important;
          line-height: 1.35 !important;
          padding: 12px 0 !important;
          margin-bottom: 12px !important;
          white-space: normal !important;
      }

     .hero-tagline {
        font-size: 1.12rem !important;
         font-weight: 600 !important;
         line-height: 1.35 !important;
         margin-bottom: 10px !important;
     }

     .hero-subtitle {
        font-size: 1.22rem !important;
         line-height: 1.65 !important;
         margin-bottom: 16px !important;
         max-width: 100% !important;
     }

     .hero-badge {
         font-size: 0.95rem !important;
         padding: 10px 20px !important;
         margin-bottom: 14px !important;
         border-width: 2px !important;
         box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.12) !important;
         gap: 8px !important;
     }

     .hero-badge i {
         font-size: 1.15em !important;
     }

     /* ---- PROMO CARD ---- */
     .promo-card {
         padding: 14px 16px !important;
         border-radius: 16px !important;
         margin-bottom: 18px !important;
         gap: 12px !important;
         max-width: 100% !important;
         align-items: flex-start !important;
     }

     /* Shrink gift icon so text has more room */
     .promo-card>div:first-child {
         width: 36px !important;
         height: 36px !important;
         flex-shrink: 0 !important;
         margin-top: 2px;
     }

     .promo-card>div:first-child i {
         font-size: 1rem !important;
     }

     /* Prevent emoji from orphaning to its own line */
     .promo-card p.fw-bold,
     .promo-card p {
        font-size: 0.95rem !important;
         line-height: 1.45 !important;
         margin-bottom: 4px !important;
         word-break: break-word;
     }

     .promo-card small {
        font-size: 0.84rem !important;
         display: block;
     }

     /* ---- CENTER ALL HERO CONTENT ON MOBILE ---- */
     .hero-section .col-lg-6:first-child {
         text-align: center !important;
         display: flex !important;
         flex-direction: column !important;
         align-items: center !important;
     }

     .hero-section .hero-badge {
         align-self: center !important;
     }

     .hero-section .hero-title {
         text-align: center !important;
         width: 100% !important;
     }

     .hero-section .hero-tagline {
         text-align: center !important;
         width: 100% !important;
     }

     .hero-section .hero-subtitle {
         text-align: center !important;
         width: 100% !important;
     }

     /* Mobile Centered and Symmetrical Hero Shapes */
     .hero-title-shape,
     .hero-subtitle-shape,
     .hero-info-shape {
         margin-left: auto !important;
         margin-right: auto !important;
         text-align: center !important;
         max-width: 100% !important;
     }

     .hero-title-shape {
         border-radius: 20px !important;
         border: 2px solid rgba(var(--primary-rgb), 0.15) !important;
         border-top: 4px solid var(--primary) !important;
         border-left: 2px solid rgba(var(--primary-rgb), 0.15) !important; /* Symmetrical border overrides */
         padding: 16px 20px !important;
     }

     .hero-subtitle-shape {
         display: block !important;
         width: fit-content !important;
         border-radius: 16px !important;
     }

     .hero-info-shape {
         border-radius: 20px !important;
         border: 2px solid rgba(var(--secondary-rgb), 0.15) !important;
         border-top: 4px solid var(--secondary) !important;
         border-left: 2px solid rgba(var(--secondary-rgb), 0.15) !important; /* Symmetrical border overrides */
         padding: 18px 20px !important;
     }

     /* Promo card — centered, compact */
     .hero-section .promo-card {
         justify-content: center !important;
         text-align: left !important;
         width: 100% !important;
         max-width: 380px !important;
     }

     /* ---- CTA + SOCIAL PROOF ROW ---- */
     .hero-section .d-flex.flex-column.flex-sm-row {
         flex-direction: column !important;
         align-items: center !important;
         gap: 16px !important;
         width: 100% !important;
     }

     /* Button full-width centered */
     .hero-section .btn-ayur {
         width: 100% !important;
         max-width: 380px !important;
         justify-content: center !important;
     }

     /* Social proof row — centered */
     .hero-section .d-flex.align-items-center.gap-3 {
         align-items: center !important;
         justify-content: center !important;
         gap: 10px !important;
     }

     /* "500+ आनंदी माता" text sizes */
     .hero-section .fw-bold.lh-1 {
         font-size: 0.95rem !important;
         line-height: 1.2 !important;
         text-align: left !important;
     }

     .hero-section .d-flex.align-items-center.gap-3 small {
         font-size: 0.75rem !important;
         text-align: left !important;
     }

     /* Avatar overlap group */
     .hero-section .d-flex.-space-x-2 img {
         width: 36px !important;
         height: 36px !important;
     }

     .hero-carousel-wrapper {
         padding-left: 0 !important;
         margin-top: 4px;
     }

     .hero-carousel {
         border-radius: 20px !important;
     }

     .carousel-item img {
         height: 280px !important;
     }

     .hero-carousel .custom-control {
         width: 36px !important;
         height: 36px !important;
         margin: 0 8px !important;
     }

     .hero-carousel .custom-control i {
         font-size: 1rem !important;
     }

     .btn-ayur {
         padding: 13px 28px !important;
         font-size: 0.95rem !important;
         width: 100%;
         display: flex !important;
         align-items: center;
         justify-content: center;
         border-radius: 14px !important;
         min-height: 50px;
     }

     .hero-wave svg {
         height: 50px !important;
     }

     /* ===== GLOBAL SECTION TITLES ===== */
     .section-title {
         font-size: 2.05rem !important;
         margin-bottom: 20px !important;
         line-height: 1.25 !important;
     }

     .section-title::after {
         margin: 10px 0 0 !important;
     }

     h2.fw-bold,
     h3.fw-bold {
         font-size: 1.6rem !important;
         line-height: 1.25 !important;
     }

     /* ===== WHO IS THIS FOR / TARGET AUDIENCE ===== */
     .target-audience-section {
         padding: 56px 0 !important;
        overflow-x: clip !important;
    }

    .target-audience-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: clip !important;
    }

    .target-audience-section .row {
        --bs-gutter-x: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .target-audience-section .col-lg-4,
    .target-audience-section .col-lg-8,
    .target-audience-section .ps-lg-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
     }

     .target-image-container {
         display: none !important;
     }

     .target-list-grid {
         grid-template-columns: 1fr !important;
         gap: 10px !important;
        width: 100% !important;
        overflow: hidden !important;
     }

     .target-item {
       padding: 20px 16px 18px !important;
        border-radius: 24px !important;
       min-height: 142px;
        border: 2px solid rgba(var(--primary-rgb), 0.6) !important;
        background: #f4f4f4 !important;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
    }

    .target-item:active {
        transform: scale(0.985);
        box-shadow: 0 5px 12px rgba(17, 24, 39, 0.08) !important;
    }

    .target-item:active .target-check {
        transform: scale(0.94);
     }

     .target-item-text {
         font-size: 1.15rem !important;
        line-height: 1.35 !important;
        text-align: center !important;
        max-width: 95%;
     }

     .target-check {
       width: 44px !important;
       height: 44px !important;
         flex-shrink: 0 !important;
        border-radius: 50% !important;
        margin-top: 0 !important;
       background: radial-gradient(circle at 30% 30%, #fff6fa 0%, #fdebf3 60%, #f8dce9 100%) !important;
       border: 2px solid rgba(var(--primary-rgb), 0.72) !important;
       box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.65), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        transition: transform 0.26s ease, box-shadow 0.26s ease !important;
        position: relative !important;
        isolation: isolate;
        animation: mobileCircleFloat 2.8s ease-in-out infinite, mobileCirclePulse 2.2s ease-in-out infinite !important;
     }

    .target-check::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: conic-gradient(from 0deg, rgba(var(--primary-rgb), 0) 0deg, rgba(var(--primary-rgb), 0.3) 110deg, rgba(var(--primary-rgb), 0) 240deg);
        z-index: -1;
        filter: blur(1.5px);
        animation: mobileCircleRingSpin 3.6s linear infinite;
        pointer-events: none;
    }

    .target-check i {
       font-size: 0.95rem !important;
       color: var(--primary) !important;
    }

     .target-audience-section.reveal.active .target-item,
     .target-audience-section.reveal.active .target-check,
     .target-audience-section.reveal.active .target-check i {
         animation-duration: 0.4s !important;
     }

    .target-audience-section.reveal.active .target-item {
        animation: mobileTargetCardIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both !important;
    }

    .target-audience-section.reveal.active .target-item:nth-child(1) { animation-delay: 0.05s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(2) { animation-delay: 0.1s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(3) { animation-delay: 0.15s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(4) { animation-delay: 0.2s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(5) { animation-delay: 0.25s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(6) { animation-delay: 0.3s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(7) { animation-delay: 0.35s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(8) { animation-delay: 0.4s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(9) { animation-delay: 0.45s !important; }
    .target-audience-section.reveal.active .target-item:nth-child(10) { animation-delay: 0.5s !important; }

    .target-audience-section.reveal.active .target-check {
        animation:
            mobileTargetCheckPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both,
            mobileCircleFloat 2.8s ease-in-out 0.42s infinite,
            mobileCirclePulse 2.2s ease-in-out 0.42s infinite !important;
    }

     .target-audience-section.reveal.active .target-check {
         animation: targetCheckGlow 3.2s ease-in-out infinite !important;
     }

     /* ===== PROBLEMS SECTION ===== */
     .problem-section {
         padding: 56px 0 !important;
     }

     .problem-section-desc {
        font-size: 1.22rem !important;
         margin-bottom: 20px !important;
     }

     /* Visual problem cards — horizontal scroll on mobile */
     .problem-visual-grid {
         display: flex !important;
         flex-direction: row !important;
         overflow-x: auto !important;
         scroll-snap-type: x mandatory !important;
         -webkit-overflow-scrolling: touch !important;
         gap: 14px !important;
         padding: 8px 16px 20px !important;
         margin: 0 !important;
         scrollbar-width: none !important;
         grid-template-columns: unset !important;
     }

     .problem-visual-grid::-webkit-scrollbar {
         display: none !important;
     }

     .pv-card {
         flex: 0 0 52vw !important;
         max-width: 200px !important;
         scroll-snap-align: start !important;
         border-radius: 20px !important;
     }

     .pv-top {
         height: 140px !important;
     }

     .pv-body {
         padding: 14px 14px 16px !important;
     }

     .pv-title {
        font-size: 0.98rem !important;
     }

     .pv-sub {
        font-size: 0.8rem !important;
         margin-bottom: 8px !important;
     }

     .pv-badge {
         font-size: 0.62rem !important;
         padding: 3px 10px !important;
     }

     .section-connector {
         display: none;
     }

     /* ===== BENEFITS SECTION — HORIZONTAL SCROLL CAROUSEL ===== */
     .benefit-section {
         padding: 56px 0 !important;
     }

     .benefit-grid {
         display: flex !important;
         flex-direction: row !important;
         overflow-x: auto !important;
         scroll-snap-type: x mandatory !important;
         -webkit-overflow-scrolling: touch !important;
         gap: 16px !important;
         padding: 8px 16px 24px !important;
         margin: 0 !important;
         scrollbar-width: none !important;
         grid-template-columns: unset !important;
     }

     .benefit-grid::-webkit-scrollbar {
         display: none !important;
     }

     .benefit-card-premium {
         flex: 0 0 72vw !important;
         max-width: 280px !important;
         height: 380px !important;
         scroll-snap-align: center !important;
         border-radius: 28px !important;
     }

     .benefit-card-title {
         font-size: 1.2rem !important;
     }

     .benefit-card-desc {
        font-size: 0.94rem !important;
     }

     .benefit-content-glass {
         padding: 12px 14px !important;
         margin: 10px !important;
         border-radius: 16px !important;
     }

     /* ===== FEATURES SECTION ===== */
     .feature-story-hub {
         padding: 56px 0 !important;
     }

     .feature-story-grid {
         grid-template-columns: 1fr !important;
         gap: 14px !important;
         margin-top: 24px !important;
     }

     .story-item {
         padding: 18px 16px !important;
         border-radius: 20px !important;
         gap: 14px !important;
     }

     .story-item::after {
         display: none;
     }

     .story-icon-hub {
         width: 56px !important;
         height: 56px !important;
         border-radius: 16px !important;
         flex-shrink: 0 !important;
     }

     .story-icon-hub i {
         font-size: 1.45rem !important;
     }

     .story-title-hub {
        font-size: 1.12rem !important;
         margin-bottom: 6px !important;
         line-height: 1.35 !important;
     }

     .story-desc {
        font-size: 1.18rem !important;
         line-height: 1.55 !important;
     }

     .story-index {
         font-size: 0.72rem !important;
         margin-bottom: 4px !important;
     }

     /* ===== EXPERTS SECTION ===== */
     .expert-enrollment-section {
         padding: 56px 0 !important;
     }

    .expert-grid-normal {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 28px !important;
    }

    .doctor-card {
        width: 100% !important;
    }

    .doctor-img-container {
        height: 240px !important;
    }

     .doctor-img-container img {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .doctor-content {
         padding: 18px 20px !important;
     }

     .doctor-name {
        font-size: 1.22rem !important;
     }

     .doctor-bio {
        font-size: 1.16rem !important;
     }

     .action-center-card {
         padding: 32px 24px !important;
         border-radius: 28px !important;
         margin-top: 28px !important;
     }

     .action-title {
         font-size: 1.35rem !important;
         line-height: 1.3 !important;
     }

     .btn-action-master {
         padding: 14px 28px !important;
         font-size: 1rem !important;
         border-radius: 100px !important;
         min-height: 52px;
         display: inline-flex !important;
         align-items: center;
         justify-content: center;
     }

     .action-center-card .btn-action-master {
         width: auto !important;
         max-width: 100%;
         margin: 0 auto;
     }

     /* ===== TESTIMONIALS ===== */
     .testimonial-section {
         padding: 48px 0 !important;
     }

     .review-card {
         border-radius: 20px !important;
         padding: 24px !important;
         height: auto !important;
         min-height: unset !important;
     }

     .review-text {
        font-size: 1.2rem !important;
         flex-grow: 0 !important;
         margin-bottom: 20px !important;
     }

     .review-author {
         align-items: center !important;
         flex-shrink: 0 !important;
         padding-top: 16px !important;
     }

     .review-avatar,
     .review-avatar-initial {
         width: 48px !important;
         height: 48px !important;
         min-width: 48px !important;
         min-height: 48px !important;
         max-width: 48px !important;
         max-height: 48px !important;
         border-radius: 50% !important;
         flex-shrink: 0 !important;
         flex-grow: 0 !important;
         flex-basis: 48px !important;
     }

     .review-avatar {
         object-fit: cover !important;
         display: block !important;
         overflow: hidden !important;
     }

     .carousel-control-prev-review,
     .carousel-control-next-review {
         display: none !important;
     }

     /* Fix Bootstrap carousel forcing height that stretches review cards */
     #reviewCarousel .carousel-inner {
         height: auto !important;
     }

     #reviewCarousel .carousel-item {
         height: auto !important;
     }

     #reviewCarousel .row {
         align-items: flex-start !important;
     }

     #reviewCarousel .col-md-4 {
         align-self: flex-start !important;
     }

     /* ===== GALLERY ===== */
     .gallery-section {
         padding: 40px 0 !important;
     }

     .marquee-track {
         --gallery-slide-width: 240px !important;
     }

     .gallery-item-marquee {
         width: 220px !important;
         height: 160px !important;
         border-radius: 16px !important;
     }

     /* ===== REGISTRATION SECTION ===== */
     .registration-section {
         padding: 40px 0 !important;
     }

     .registration-box {
         border-radius: 28px !important;
         overflow: hidden;
     }

     .reg-info {
         padding: 28px 24px !important;
     }

     .reg-info h2 {
         font-size: 1.5rem !important;
         line-height: 1.3 !important;
         margin-bottom: 16px !important;
     }

     .reg-info p {
        font-size: 1.2rem !important;
         margin-bottom: 24px !important;
     }

     .reg-glass-item {
         padding: 14px 16px !important;
         border-radius: 14px !important;
         margin-bottom: 12px !important;
     }

     .reg-glass-item h6 {
         font-size: 0.9rem !important;
     }

     .reg-form {
         padding: 35px 24px !important;
         border-left: none !important;
         border-top: 1px solid rgba(173, 20, 87, 0.08) !important;
     }

     .reg-form h3 {
         font-size: 1.3rem !important;
     }

     .form-group-custom {
         margin-bottom: 18px !important;
     }

     .form-control-custom {
         font-size: 1rem !important;
         padding: 14px 18px 14px 50px !important;
         border-radius: 14px !important;
         min-height: 52px;
     }

     .reg-label {
         font-size: 0.78rem !important;
         margin-bottom: 8px !important;
     }

     /* ===== FOOTER ===== */
     footer {
         padding: 20px 0 0 !important;
     }
     
     footer .row.g-5 {
         --bs-gutter-y: 1.5rem !important;
     }

     /* Make navigation columns side-by-side on mobile */
     footer .col-lg-2.col-md-6 {
         width: 50% !important;
         margin-bottom: 0 !important;
     }

     .footer-logo {
         width: 80px !important;
     }

     .footer-desc {
        font-size: 1rem !important;
         line-height: 1.5 !important;
         opacity: 1 !important;
     }

     .footer-title {
         font-size: 1rem !important;
         margin-bottom: 10px !important;
     }

     .footer-links a {
        font-size: 0.96rem !important;
         min-height: 36px;
         display: flex !important;
         align-items: center;
     }

     .footer-links li {
         margin-bottom: 0px !important;
     }
     
     .footer-links a {
         padding: 5px 0 !important;
         min-height: auto !important;
     }

     .footer-contact-item {
        font-size: 0.95rem !important;
         margin-bottom: 8px !important;
         opacity: 1 !important;
     }

     .footer-bottom {
         padding: 10px 0 !important;
         margin-top: 10px !important;
     }

     .footer-bottom-text {
        font-size: 0.78rem !important;
         margin: 0 !important;
     }

     .social-btn {
         width: 40px !important;
         height: 40px !important;
     }

     /* ===== MODAL (POPUP) ON MOBILE ===== */
     .modal-content-premium {
         border-radius: 24px !important;
         margin: 12px !important;
     }

     .modal-reg-header {
         padding: 24px !important;
     }

     .modal-reg-body {
         padding: 24px 20px !important;
     }

     /* Center all cards, containers, and text contents on mobile */
     h1, h2, h3, h4, h5, h6, .section-title {
         text-align: center !important;
     }

     .section-title::after {
         margin: 10px auto 0 !important;
     }

     p, .problem-section-desc, .reg-info p, .reg-form p {
         text-align: center !important;
     }

     .doctor-card {
         max-width: 340px !important;
         margin-left: auto !important;
         margin-right: auto !important;
     }

     .story-item {
         max-width: 420px !important;
         margin-left: auto !important;
         margin-right: auto !important;
         flex-direction: column !important;
         text-align: center !important;
         align-items: center !important;
     }

     .story-icon-hub {
         margin-bottom: 8px !important;
         margin-right: 0 !important;
     }

     .video-card {
         max-width: 420px !important;
         margin-left: auto !important;
         margin-right: auto !important;
     }

     .reg-info {
         text-align: center !important;
         display: flex !important;
         flex-direction: column !important;
         align-items: center !important;
     }

     .reg-glass-item {
         flex-direction: column !important;
         text-align: center !important;
         align-items: center !important;
         justify-content: center !important;
         width: 100% !important;
         max-width: 320px !important;
         margin-left: auto !important;
         margin-right: auto !important;
     }

     .reg-icon-circle {
         margin-right: 0 !important;
         margin-bottom: 8px !important;
     }

     .reg-form form {
         max-width: 380px !important;
         margin-left: auto !important;
         margin-right: auto !important;
         text-align: left !important;
     }

     .modal-reg-header {
         flex-direction: column !important;
         text-align: center !important;
         align-items: center !important;
         justify-content: center !important;
         gap: 15px !important;
     }

     .modal-date-badge {
         margin-left: auto !important;
         margin-right: auto !important;
     }
 }

 /* =========================================================
   SMALL MOBILE TWEAKS — <= 480px
   ========================================================= */
 @media (max-width: 480px) {

     .hero-title {
         font-size: 2.1rem !important;
         letter-spacing: -0.5px !important;
     }

     .hero-tagline {
        font-size: 1rem !important;
     }

     .hero-subtitle {
        font-size: 1.15rem !important;
     }

     /* Even tighter spacing on small phones */
     .hero-section .mb-4 {
         margin-bottom: 10px !important;
     }

     .hero-section .mb-5 {
         margin-bottom: 14px !important;
     }

     .promo-card p.fw-bold,
     .promo-card p {
        font-size: 0.88rem !important;
     }

     .hero-section .d-flex.flex-column.flex-sm-row {
         gap: 14px !important;
         align-items: center !important;
     }

     .hero-section .promo-card {
         max-width: 100% !important;
     }

     .hero-section .btn-ayur {
         max-width: 100% !important;
     }

     .section-title {
         font-size: 1.85rem !important;
     }

     h2.fw-bold,
     h3.fw-bold {
         font-size: 1.75rem !important;
     }

     .benefit-card-premium {
         flex: 0 0 78vw !important;
         max-width: 260px !important;
         height: 340px !important;
     }

     .problem-grid {
         grid-template-columns: 1fr !important;
         gap: 10px !important;
     }

     .problem-tile {
         flex-direction: row !important;
         align-items: center !important;
     }

     .hero-badge {
         font-size: 0.88rem !important;
         padding: 9px 18px !important;
     }

     .mobile-nav-item {
         font-size: 0.55rem !important;
         min-width: 44px !important;
         padding: 6px 8px !important;
     }

     .mobile-nav-item i {
         font-size: 1.15rem !important;
     }

     .doctor-card {
         max-width: 100% !important;
     }
 }

 /* =========================================================
   SAFE AREA SUPPORT (iPhone notch / home bar)
   ========================================================= */
 @supports (padding-bottom: env(safe-area-inset-bottom)) {
     .mobile-bottom-nav {
         padding-bottom: env(safe-area-inset-bottom);
         height: calc(68px + env(safe-area-inset-bottom));
     }

     @media (max-width: 991px) {
         body {
             padding-bottom: calc(68px + env(safe-area-inset-bottom));
         }
     }
 }

 /* =========================================================
   PREMIUM SCROLL REVEAL ANIMATIONS
   ========================================================= */
 :root {
     --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
     --reveal-duration: 0.95s;
     --reveal-stagger: 0.09s;
 }

 .reveal,
 .reveal-up,
 .reveal-left,
 .reveal-right,
 .reveal-scale,
 .reveal-fade,
 .reveal-child {
     opacity: 0;
     transition:
         opacity var(--reveal-duration) var(--reveal-ease),
         transform var(--reveal-duration) var(--reveal-ease),
         filter var(--reveal-duration) var(--reveal-ease);
 }

 .reveal,
 .reveal-up {
     transform: translate3d(0, 42px, 0);
     filter: blur(6px);
     transition-delay: calc(var(--reveal-i, 0) * var(--reveal-stagger));
 }

 .reveal-left {
     transform: translate3d(-48px, 0, 0);
     filter: blur(4px);
 }

 .reveal-right {
     transform: translate3d(48px, 0, 0);
     filter: blur(4px);
 }

 .reveal-scale {
     transform: translate3d(0, 28px, 0) scale(0.94);
     filter: blur(5px);
 }

 .reveal-fade {
     transform: none;
     filter: blur(8px);
 }

 .reveal-child {
     transform: translate3d(0, 36px, 0) scale(0.97);
     filter: blur(4px);
     transition-delay: calc(var(--reveal-i, 0) * var(--reveal-stagger));
 }

 .reveal.active,
 .reveal-up.active,
 .reveal-left.active,
 .reveal-right.active,
 .reveal-scale.active,
 .reveal-fade.active,
 .reveal-child.active,
 .reveal-stagger.active .reveal-child {
     opacity: 1;
     transform: none;
     filter: none;
 }

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-fade.active {
    will-change: auto;
}

 .reveal-delay-1 { transition-delay: 0.12s; }
 .reveal-delay-2 { transition-delay: 0.24s; }
 .reveal-delay-3 { transition-delay: 0.36s; }
 .reveal-delay-4 { transition-delay: 0.48s; }

 .delay-1 { transition-delay: 0.1s; }
 .delay-2 { transition-delay: 0.2s; }
 .delay-3 { transition-delay: 0.3s; }
 .delay-4 { transition-delay: 0.4s; }

 @media (prefers-reduced-motion: reduce) {
     .reveal,
     .reveal-up,
     .reveal-left,
     .reveal-right,
     .reveal-scale,
     .reveal-fade,
     .reveal-child {
         opacity: 1 !important;
         transform: none !important;
         filter: none !important;
         transition: none !important;
     }
 }

 /* =========================================================
   SUCCESS OVERLAY & FORM UI/UX
   ========================================================= */
 .success-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(var(--primary-rgb), 0.98);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 .success-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .success-content {
     text-align: center;
     color: white;
     transform: translateY(30px);
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
     padding: 20px;
 }

 .success-overlay.active .success-content {
     transform: translateY(0);
 }

 .success-icon-wrap {
     width: 100px;
     height: 100px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 30px;
     color: var(--primary);
     font-size: 3.5rem;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

  /* Separated WhatsApp Layout */
  .success-whatsapp-container {
      margin: 25px auto;
      max-width: 320px;
      position: relative;
      z-index: 10;
  }

  /* Big Floating WhatsApp Icon */
  .success-whatsapp-big-icon {
      width: 90px;
      height: 90px;
      background-color: #25D366;
      color: white !important;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.8rem; /* Large icon size */
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      text-decoration: none !important;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: whatsappIconFloat 3s ease-in-out infinite, whatsappIconRipple 2s infinite;
  }

  .success-whatsapp-big-icon i {
      line-height: 1;
      display: block;
  }

  .success-whatsapp-big-icon:hover {
      background-color: #128C7E;
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 15px 40px rgba(18, 140, 126, 0.6);
  }

  /* Button Text Separated */
  .success-whatsapp-btn-separated {
      background-color: #25D366 !important;
      color: white !important;
      border: 2px solid rgba(255, 255, 255, 0.2);
      padding: 12px 35px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 1.15rem;
      text-decoration: none !important;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      animation: whatsappPulseBtn 2.2s infinite;
  }

  .success-whatsapp-btn-separated:hover {
      background-color: #128C7E !important;
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
      color: white !important;
      border-color: rgba(255, 255, 255, 0.4);
  }

  .success-whatsapp-btn-separated:active {
      transform: scale(0.98) translateY(1px);
  }

  /* Floating Animation for WhatsApp Icon */
  @keyframes whatsappIconFloat {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-10px);
      }
  }

  /* Ripple Animation for WhatsApp Icon */
  @keyframes whatsappIconRipple {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 10px 30px rgba(37, 211, 102, 0.4);
      }
      70% {
          box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.4);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.4);
      }
  }

  /* WhatsApp Pulse Animation for Button */
  @keyframes whatsappPulseBtn {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 24px rgba(37, 211, 102, 0.3);
      }
      70% {
          box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.3);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.3);
      }
  }

  /* Guided Bouncing Arrow Animation */
  .whatsapp-guide-arrow {
      color: white;
  }

  .bounce-arrow {
      display: inline-block;
      font-size: 1.5rem;
      animation: arrowUpDown 1.6s infinite ease-in-out;
  }

  @keyframes arrowUpDown {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-8px);
      }
  }

 /* Spinner for button */
 .spinner-border-sm {
     width: 1.2rem;
     height: 1.2rem;
     border-width: 0.15em;
 }

 @media (max-width: 768px) {
     .success-icon-wrap {
         width: 80px;
         height: 80px;
         font-size: 2.5rem;
     }

     .success-content h2 {
         font-size: 1.8rem;
     }
 }

/* Offscreen rendering optimization (no visual change) */
@supports (content-visibility: auto) {
    .target-audience-section,
    .problem-section,
    .benefit-section,
    .feature-story-hub,
    .video-guidance-section,
    .expert-enrollment-section,
    .testimonial-section,
    .gallery-section,
    .registration-section,
    footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }
}

.footer-bottom-text a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom-text a:hover {
    opacity: 0.7;
    text-decoration: underline !important;
}
