* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #f72585;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #495057;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --border-radius: 16px;
     --hero-bg-image: url("kid2bg.jpg");
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #f8fbff;
    overflow-x: hidden;
    padding-top: 100px; /* prevents content from being hidden under fixed header */
    position: relative;
}

/* Background Animated Blobs */
body::before, body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    animation: floatBlobs 20s infinite alternate;
}

body::before {
    background: var(--primary-color);
    top: -10%;
    right: -5%;
}

body::after {
    background: var(--secondary-color);
    bottom: -10%;
    left: -10%;
    animation-delay: -10s;
}

@keyframes floatBlobs {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 50px) scale(1.1); }
    66% { transform: translate(50px, -30px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

/* Page Loader overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.2);
    animation: loaderPulse 1.5s infinite ease-in-out;
    margin-bottom: 20px;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(67, 97, 238, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(67, 97, 238, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(67, 97, 238, 0); }
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ────────────────────────────────────────
   Container & Typography
───────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

/* ────────────────────────────────────────
   Header & Logo
───────────────────────────────────────── */
header {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
   border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    display: block;
    
}

.brand-name h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-name .tagline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ────────────────────────────────────────
   Navigation
───────────────────────────────────────── */
.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: var(--transition);
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: var(--primary-color);
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* ────────────────────────────────────────
   Mobile Menu
───────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li a {
    display: block;
    padding: 16px 24px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: rgba(67, 97, 238, 0.08);
    color: var(--primary-color);
}

.mobile-menu-btn,
.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

/* ────────────────────────────────────────
   Hero & Other Sections (unchanged except minor fixes)
───────────────────────────────────────── */
.hero {
    padding: 220px 0 100px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(247, 37, 133, 0.05) 100%);
    position: relative;
    overflow: hidden;
}



/* ────────────────────────────────────────
   Programs Section (added)
───────────────────────────────────────── */
.programs {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(247, 37, 133, 0.03) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.program-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-box h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
}

.program-box h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 10px;
}

.program-box ul {
    list-style: none;
    padding: 0;
}

.program-box li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-color);
}

.program-box li::before {
    content: '\f058'; /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 1px;
}

/* ────────────────────────────────────────
   Responsive Design
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .vm-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-name h1 {
        font-size: 1.5rem;
    }
    
    .brand-name .tagline {
        font-size: 0.8rem;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .hero {
        padding: 160px 0 60px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

.hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .hero-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
            animation: heroFloat 6s ease-in-out infinite;
        }
        
        @keyframes heroFloat {
            0% { transform: perspective(1000px) rotateY(-10deg) translateY(0px); }
            50% { transform: perspective(1000px) rotateY(-10deg) translateY(-20px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
            100% { transform: perspective(1000px) rotateY(-10deg) translateY(0px); }
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            animation-play-state: paused;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: btnPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
        }
        
        @keyframes btnPulse {
            to { box-shadow: 0 0 0 20px rgba(67, 97, 238, 0); }
        }

        .whatsapp-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            z-index: -1;
            transition: opacity 0.5s ease;
            opacity: 0;
            border-radius: 50px;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.02);
            animation: none;
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.5);
        }

        .whatsapp-btn:hover::before {
            opacity: 1;
        }
        
        /* Impact Section */
        .impact {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-color);
        }
        
        .impact-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .stat-box {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            transition: var(--transition);
            border: 1px solid rgba(67, 97, 238, 0.1);
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .stat-number{
            color: green !important;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color:transparent;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-text {
            font-size: 1.2rem;
            color: var(--dark-color);
            font-weight: 600;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(247, 37, 133, 0.03) 100%);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .highlight {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .about-image {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: var(--border-radius);
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.8rem;
            text-align: center;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('kid1bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.9;
        }
        
        .about-image > div {
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 10px;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(67, 97, 238, 0.1);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 5rem;
            color: var(--accent-color);
            opacity: 0.3;
            position: absolute;
            top: -30px;
            left: -10px;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        /* Vision & Mission */
        .vision-mission {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(247, 37, 133, 0.03) 100%);
        }
        
        .vm-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .vm-box {
            background: white;
            padding: 50px 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(67, 97, 238, 0.1);
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
        }
        
        .vm-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
        }
        
        .vm-box i {
            color: var(--secondary-color);
            background: rgba(247, 37, 133, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Core Values */
        .values {
            padding: 100px 0;
        }
        
        .values-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            background: white;
            padding: 35px 25px;
            border-radius: var(--border-radius);
            border-left: 6px solid var(--secondary-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .value-item:hover {
            transform: translateY(-10px);
        }
        
        .value-item h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.3rem;
        }
        
        .value-item i {
            color: var(--secondary-color);
            background: rgba(247, 37, 133, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(247, 37, 133, 0.03) 100%);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            background-color: white;
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(67, 97, 238, 0.03);
        }
        
        .faq-question.active {
            background-color: rgba(67, 97, 238, 0.05);
            color: var(--primary-color);
        }
        
        .faq-icon {
            transition: var(--transition);
            color: var(--primary-color);
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
            color: var(--secondary-color);
        }
        
        .faq-answer {
            background-color: white;
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.open {
            padding: 0 30px 30px;
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background: black;
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: white;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--accent-color);
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Scroll Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content, .about-content, .vm-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text h2 {
                font-size: 2.8rem;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
        }
        
        @media (max-width: 768px) {
            /* Hide desktop navigation on mobile */
            .desktop-menu {
                display: none;
            }
            
            @media (max-width: 768px) {

    /* Turn hero into a background section */
    .hero {
        background:
            linear-gradient(
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.55)
            ),
            var(--hero-bg-image);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 160px 0 80px;
    }

    /* Hide standalone image on mobile */
    .hero-image {
        display: none;
    }

    /* Ensure text stays readable */
    .hero-text {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
    }

    .hero-text h2,
    .hero-text p {
        color: white;
    }

    .hero-text p {
        opacity: 0.95;
    }

    .whatsapp-btn {
        margin: 0 auto;
    }
}

            .mobile-menu-btn {
                display: block;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                color: white;
                border: none;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                font-size: 1.3rem;
                cursor: pointer;
                box-shadow: var(--shadow);
                transition: var(--transition);
            }
            
            .mobile-menu-btn:hover {
                transform: scale(1.05);
            }
            
            .hero-text h2 {
                font-size: 2.3rem;
            }
            
            .hero {
                padding: 130px 0 60px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .impact-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-box {
                width: 100%;
                max-width: 100%;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .vm-box, .value-item {
                padding: 30px 25px;
            }
        }

        .glass {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


/* ================================
   GLOBAL GLASS OVERRIDE (FINAL)
   ================================ */

.program-box,
.testimonial-card,
.stat-box,
.vm-box,
.value-item,
.faq-item {
    background: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.program-box *,
.testimonial-card *,
.stat-box *,
.vm-box *,
.value-item *,
.faq-item * {
    color: var(--dark-color);
}

.program-box h3,
.vm-box h3,
.value-item h4 {
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.program-box:hover,
.testimonial-card:hover,
.stat-box:hover,
.vm-box:hover,
.value-item:hover,
.faq-item:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* ================================
   SKY-BLUE FILL HOVER EFFECT
   ================================ */

.program-box,
.testimonial-card,
.stat-box,
.vm-box,
.value-item,
.faq-item {
    position: relative;
    overflow: hidden;
}

/* Hover overlay */
.program-box::before,
.testimonial-card::before,
.stat-box::before,
.vm-box::before,
.value-item::before,
.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(76, 201, 240, 0.85),
        rgba(67, 97, 238, 0.85)
    );
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s ease, opacity 0.45s ease;
    z-index: 0;
}

/* Fill animation */
.program-box:hover::before,
.testimonial-card:hover::before,
.stat-box:hover::before,
.vm-box:hover::before,
.value-item:hover::before,
.faq-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Keep content above overlay */
.program-box > *,
.testimonial-card > *,
.stat-box > *,
.vm-box > *,
.value-item > *,
.faq-item > * {
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}


.program-box:hover *,
.testimonial-card:hover *,
.stat-box:hover *,
.vm-box:hover *,
.value-item:hover * {
    color: #ffffff !important;
}


.value-item i,
.vm-box i {
    transition: background 0.35s ease, color 0.35s ease;
}

.value-item:hover i,
.vm-box:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


.program-box:hover,
.testimonial-card:hover,
.stat-box:hover,
.vm-box:hover,
.value-item:hover,
.faq-item:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.28);
}

.faq-item:hover .faq-question {
    color: #1a1a1a;
}

.faq-item.active {
    border-left: 4px solid #4cc9f0;
}

.faq-item.active .faq-question {
    font-weight: 600;
}

/* ================================
   WHY CHOOSE US (WRITE-UP ONLY)
   ================================ */

.why-choose-us {
    padding: 70px 0 40px;
}

.why-choose-us .section-title h2 {
    text-align: left; /* matches About section tone */
}

.why-text {
    max-width: 900px;
}

.why-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
}

/* ================================
   WHY CHOOSE US – TEXT + IMAGE
   ================================ */

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

.why-text {
    max-width: 900px;
}

.why-image img {
    width: 200px;
    height:200px;
}

.why-image {
    flex-shrink: 0;
}


/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
    }

    .why-choose-us .section-title h2 {
        text-align: center;
    }

    .why-text p {
        text-align: center; /* Makes the spacing uniform on small screens without rivers of whitespace */
        margin-bottom: 20px;
    }

    .why-image {
        display: none;
    }
}





/* ================================
   ABOUT THE FOUNDER
   ================================ */

.about-founder {
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.founder-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 18px;
}

/* Founder image */
.founder-image {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    background: #eaeaea; /* visible even before real image */
}

/* Responsive */
@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        margin: 30px auto 0;
        max-width: 320px;
    }
}

/* ================================
   ABOUT FOUNDER – DESKTOP & MOBILE
   ================================ */

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* text | image */
    gap: 50px;
    align-items: center;
}

.founder-text {
    order: 1;
}

.founder-image {
    order: 2;
}

.founder-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founder-image {
        order: -1; /* image first */
        margin: 0 auto;
        display: block;
    }
    
    .founder-text {
        order: 2; /* text second */
    }
}

/* Typewriter base */
.typewriter {
    opacity: 0;
    white-space: normal;
}

/* Improve text contrast everywhere the typewriter runs on dark background */
.typewriter strong,
.typewriter p {
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}