   /* --- 1. RESET & VARIABLES --- */
        :root {
            --primary-blue-start: #002B5B;
            --primary-blue-mid: #0D47A1;
            --primary-blue-end: #1976D2;
            --accent-yellow: #FFC107;
            --accent-yellow-dark: #FFA000;
            --text-dark: #333333;
            --text-light: #F5F5F5;
            --danger-red: #D32F2F;
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hard: 0 4px 0px rgba(0, 0, 0, 0.2);
            --card-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #F0F4F8;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.5;
        }

        /* --- 2. UTILITY CLASSES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flex-col {
            display: flex;
            flex-direction: column;
        }

        .text-center {
            text-align: center;
        }

        .bold {
            font-weight: 700;
        }

        .highlight {
            color: var(--accent-yellow);
        }

        /* --- 3. ANIMATIONS --- */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes pulse-btn {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* --- 4. BUTTONS (INTERACTIVE) --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            text-transform: uppercase;
        }

        .btn:active {
            transform: translateY(4px);
            box-shadow: none !important;
        }

        /* Blue Button (Secondary) */
        .btn-blue {
            background: white;
            color: var(--primary-blue-mid);
            border-bottom: 4px solid #b0bec5;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-blue:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Yellow Button (Primary CTA) */
        .btn-yellow {
            background: linear-gradient(to bottom, #FFD54F, #FFB300);
            color: black;
            border: 2px solid #FFF8E1;
            border-bottom: 4px solid #E65100;
            /* Deep orange 3D effect */
            box-shadow: 0 10px 20px rgba(255, 160, 0, 0.4);
            animation: pulse-btn 2s infinite;
        }

        .btn-yellow:hover {
            transform: translateY(-2px) scale(1.02);
            filter: brightness(1.1);
        }

        /* WhatsApp Button (Community) */
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            font-weight: 800;
            border: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }

        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #128C7E, #25D366);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            transform: translateY(-2px);
        }

        /* --- 5. HERO SECTION --- */
        header {
            background: radial-gradient(circle at center, #1976D2 0%, #0D47A1 60%, #002B5B 100%);
            color: white;
            padding: 20px 0 60px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        }

        /* Starry Background */
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(white 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.2;
            pointer-events: none;
        }

        .hero-top-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .store-badges {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .store-badge {
            background: black;
            color: white;
            border-radius: 6px;
            padding: 5px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.7rem;
            border: 1px solid #333;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .store-badge:hover {
            transform: scale(1.05);
        }

        .mascot-hero {
            width: 120px;
            height: 150px;
            background: url('https://placehold.co/120x150/FF9800/FFFFFF?text=Guru+Mascot') no-repeat center center;
            background-size: cover;
            border-radius: 10px;
            border: 3px solid white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            animation: float 4s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        h1 {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 15px;
            text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
            font-weight: 800;
        }

        .highlight-pill {
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-blue-mid);
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
            font-size: 1.1rem;
        }

        .feature-tags {
            font-size: 0.9rem;
            margin-bottom: 25px;
            color: #E3F2FD;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .limited-offer {
            background: #FFEB3B;
            color: #000;
            font-weight: 900;
            padding: 5px 15px;
            display: inline-block;
            transform: skew(-12deg);
            border: 2px dashed #F57F17;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* --- 6. WHY SECTION (Grid & Cards) --- */
        .section-why {
            background: white;
            padding: 50px 0;
            border-radius: 30px 30px 0 0;
            margin-top: -20px;
            /* Overlap effect */
            position: relative;
            z-index: 3;
        }

        .heading-group {
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .heading-group h2 {
            font-size: 1.8rem;
            color: var(--primary-blue-mid);
            font-weight: 800;
        }

        .heading-underline {
            width: 60%;
            height: 4px;
            background: var(--accent-yellow);
            margin: 5px auto 0;
            border-radius: 2px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: start;
        }

        /* Left Side: Guru Message */
        .guru-box {
            background: #F8F9FA;
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            border: 1px solid #E0E0E0;
            box-shadow: var(--shadow-soft);
        }

        .guru-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            margin: 0 auto 15px;
            background: #ddd url('https://placehold.co/100x100/FF5722/FFFFFF?text=Guru') center/cover;
        }

        .guru-quote {
            font-style: italic;
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        /* Right Side: Course Grid */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .course-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #eee;
            align-self: start;
        }

        .course-card:hover {
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .course-header {
            display: flex;
            flex-direction: column;
        }
        
        .course-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
        }
        
        .course-card.active .course-content {
            max-height: 600px;
            overflow-y: auto;
        }
        
        .course-topics {
            padding: 15px;
        }
        
        .course-topics ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .course-topics li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 0.85rem;
            color: #555;
            line-height: 1.4;
        }
        
        .course-topics li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 1rem;
        }

        .course-thumb {
            width: 100%;
            height: 140px;
            background: #37474F;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        /* Specific colors for thumbnails */
        .th-1 {
            background: #4CAF50;
        }

        /* Kids */
        .th-2 {
            background: #2196F3;
        }

        /* Adult */
        .th-3 {
            background: #673AB7;
        }

        /* Hypno */
        .th-4 {
            background: #FF5722;
        }

        /* Tele */
        .th-5 {
            background: #FF9800;
        }

        /* Photo */
        .th-6 {
            background: #00BCD4;
        }

        /* Speed */
        .th-7 {
            background: #E91E63;
        }

        /* Heal */
        .th-8 {
            background: #9C27B0;
        }

        /* Reiki */

        .course-title {
            font-size: 0.7rem;
            padding: 8px 2px;
            text-align: center;
            font-weight: 700;
            color: #333;
            background: #FFF8E1;
            line-height: 1.2;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .course-title:after {
            content: "▼";
            position: absolute;
            right: 10px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .course-card.active .course-title:after {
            transform: rotate(180deg);
        }

        /* Benefits Strip */
        .benefits-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            margin-top: 30px;
        }

        .benefit-item {
            background: white;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
        }

        .benefit-item:hover {
            transform: translateY(-3px);
        }

        .b-icon {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--primary-blue-mid);
        }

        .b-text {
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* --- VIDEO REVIEWS SECTION --- */
        .section-reviews {
            background: linear-gradient(180deg, #E3F2FD 0%, #BBDEFB 100%);
            padding: 50px 0;
        }

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

        .review-video {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .review-video:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .review-thumbnail {
            position: relative;
            display: block;
            cursor: pointer;
            overflow: hidden;
        }

        .review-thumbnail img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }

        .review-thumbnail:hover img {
            transform: scale(1.05);
        }

        .review-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 0, 0, 0.9);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .review-thumbnail:hover .review-play-overlay {
            background: rgba(255, 0, 0, 1);
        }

        .review-play-overlay i {
            color: white;
            font-size: 1.8rem;
            margin-left: 4px;
        }

        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .review-thumbnail img {
                height: 250px;
            }
        }

        /* --- 7. MEGA OFFER --- */
        .offer-strip {
            background: var(--primary-blue-mid);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .mega-offer {
            background: url('https://placehold.co/1200x400/E1F5FE/E1F5FE') center/cover;
            padding: 50px 0;
            text-align: center;
            position: relative;
        }

        .offer-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            display: inline-block;
            padding: 40px;
            border-radius: 25px;
            border: 2px solid white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        /* Burst Badge CSS */
        .burst-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 90px;
            height: 90px;
            background: var(--danger-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 800;
            font-size: 0.9rem;
            line-height: 1.1;
            clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
            animation: pulse-btn 2s infinite;
            transform: rotate(10deg);
            z-index: 5;
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
        }

        .price-tag {
            font-size: 3rem;
            color: green;
            font-weight: 900;
            margin: 10px 0;
            text-shadow: 2px 2px 0px white;
        }

        .old-price {
            text-decoration: line-through;
            color: #888;
            font-size: 1.4rem;
            margin-right: 10px;
        }

        /* --- 8. AUDIENCE & STEPS --- */
        .section-audience {
            background: #FFFDE7;
            /* Light yellow tint */
            padding: 50px 0;
        }

        .audience-flex {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .aud-card {
            background: white;
            width: 160px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            border-bottom: 3px solid transparent;
        }

        .aud-card:hover {
            border-bottom-color: var(--accent-yellow);
        }

        .aud-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        /* Specific Icon Colors */
        .ic-1 {
            color: #1565C0;
        }

        .ic-2 {
            color: #C62828;
        }

        .ic-3 {
            color: #F9A825;
        }

        .ic-4 {
            color: #2E7D32;
        }

        .steps-section {
            background: white;
            padding: 50px 0;
        }

        .steps-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .step-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2196F3, #0D47A1);
            color: white;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
        }

        .step-arrow {
            color: #ccc;
            font-size: 2rem;
        }

        /* --- 9. FAQ --- */
        .faq-section {
            background: linear-gradient(180deg, #F0F4F8 0%, #E1F5FE 100%);
            padding: 50px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .faq-item {
            background: white;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--primary-blue-mid);
            transition: transform 0.2s;
        }

        .faq-item:hover {
            transform: translateX(5px);
        }

        .q-text {
            font-weight: 700;
            color: var(--primary-blue-mid);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .a-text {
            margin-top: 5px;
            font-size: 0.9rem;
            color: #555;
            padding-left: 24px;
        }

        .faq-visual {
            height: 300px;
            background: url('logo.png') center/cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: rotate(2deg);
        }

        /* --- 10. FOOTER --- */
        footer {
            background: black;
            color: white;
            text-align: center;
            padding: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.2);
        }

        /* --- MOBILE MEDIA QUERIES --- */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.6rem;
            }

            .hero-top-row {
                justify-content: center;
            }

            .store-badges,
            .mascot-hero {
                display: none;
            }

            /* Simplify header on mobile */

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

            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-row {
                flex-direction: column;
                gap: 20px;
            }

            .step-arrow {
                transform: rotate(90deg);
            }

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

            .faq-visual {
                display: none;
            }

            .benefits-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
          /* Open Button */
    .open-btn {
        padding: 12px 20px;
        background: #007bff;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
    }

/* Modal Overlay */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 1000;
}

/* Modal Box */
.modal-content {
background: #ffffff;
padding: 25px;
width: 90%;
max-width: 420px;
border-radius: 12px;
position: relative;
animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
position: absolute;
top: 12px;
right: 15px;
font-size: 22px;
cursor: pointer;
color: #666;
}

/* Modal Heading */
.modal-content h2 {
margin-bottom: 20px;
text-align: center;
font-weight: 600;
}

/* Text & Tel Inputs ONLY */
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"] {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 15px;
outline: none;
}

/* Input Focus */
.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content input[type="tel"]:focus {
border-color: #28a745;
}

/* Source Section */
.source-group {
margin: 18px 0;
}

.source-title {
margin-bottom: 10px;
font-weight: 600;
font-size: 15px;
}

/* Radio Button Row */
.radio-item {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 8px;
cursor: pointer;
}

/* Radio Buttons Fix */
.radio-item input[type="radio"] {
width: auto;
margin: 0;
transform: scale(1.1);
}

/* Submit Button */
.submit-btn {
width: 100%;
padding: 12px;
background: #28a745;
color: #ffffff;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
}

/* Submit Hover */
.submit-btn:hover {
background: #218838;
}


      
/* Fade Animation */
@keyframes fadeIn {
from {
transform: scale(0.9);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* Sticky Footer CTA */
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #1a237e, #0D47A1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    gap: 15px;
}

.sticky-footer-cta .sticky-label {
    color: #FFD54F;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.sticky-footer-cta .btn-sticky {
    background: linear-gradient(135deg, #FFD600, #FF6F00);
    color: #000;
    font-weight: 900;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,111,0,0.5);
    animation: pulse-btn 2s infinite;
    white-space: nowrap;
}

.sticky-footer-cta .btn-sticky:hover {
    background: linear-gradient(135deg, #FF6F00, #FFD600);
}

body {
    padding-bottom: 65px;
}

/* YouTube Video in Hero */
.hero-video {
    max-width: 560px;
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(255, 0, 0, 1);
}

.play-overlay i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}
