
    :root {
        --primary: #2563eb;
        --secondary: #0f172a;
        --accent: #38bdf8;
        --bg-light: #f8fafc;
        --text-dark: #0f172a;
        --text-light: #f8fafc;
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.4);
        --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="dark"] {
        --primary: #3b82f6;
        --secondary: #f8fafc;
        --accent: #38bdf8;
        --bg-light: #0f172a;
        --text-dark: #f8fafc;
        --text-light: #0f172a;
        --glass-bg: rgba(15, 23, 42, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
        --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
        overflow-x: hidden;
        transition: background-color 0.3s;
    }
    .logo-img {
    height: 50px;
    width: 50px;
    border-radius: 4px;
    object-fit: contain;
    border-radius: 50%;
}

    .custom-cursor {
        width: 20px;
        height: 20px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-dot {
        width: 4px;
        height: 4px;
        background-color: var(--accent);
        border-radius: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
    }

    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        transition: opacity 0.5s ease;
    }

    .loader-spinner {
        width: 50px;
        height: 50px;
        border: 5px solid var(--bg-light);
        border-top: 5px solid var(--primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        width: 0%;
        z-index: 9999;
    }

    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        box-shadow: var(--card-shadow);
    }

    .gradient-text {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .btn-ripple {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: none;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-dark);
        border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        transition: var(--transition);
        padding: 20px 0;
    }

    header.sticky {
        padding: 10px 0;
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: var(--card-shadow);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        font-size: 24px;
        font-weight: 800;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-links {
        display: flex;
        gap: 24px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        position: relative;
        padding: 8px 0;
        transition: var(--transition);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }

    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }

    .theme-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 20px;
        color: var(--text-dark);
        padding: 8px;
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: none;
        cursor: pointer;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-dark);
    }

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 120px 20px 60px;
        background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(56,189,248,0.05));
        overflow: hidden;
     
    }

    .hero-bg-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 1;
    }

    .blob {
        position: absolute;
        background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(56,189,248,0.15));
        border-radius: 50%;
        filter: blur(60px);
    
        animation: floatBlob 12s infinite alternate;
    }

    .blob1 { width: 400px; height: 400px; top: -100px; right: -100px; }
    .blob2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation-delay: 2s; }

    @keyframes floatBlob {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(50px, 50px) scale(1.1); }
    }

    .hero-content {
        max-width: 900px;
        text-align: center;
        position: relative;
        z-index: 2;
        /* background-color: red; */
        padding: 0px 20px;
    }

    .hero h1 {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 24px;
        color: var(--text-dark);
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 40px;
        color: var(--text-dark);
        opacity: 0.9;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        animation: bounce 2s infinite;
        color: var(--primary);
        text-decoration: none;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
        40% { transform: translateX(-50%) translateY(-10px); }
        60% { transform: translateX(-50%) translateY(-5px); }
    }

    section {
        padding: 100px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 16px;
        opacity: 0.7;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .about-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 30px;
        text-align: center;
    }

    .about-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 60px;
        text-align: center;
    }

    .stat-item h2 {
        font-size: 48px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .course-card {
        padding: 30px;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .course-icon {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .course-card h3 {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .course-card p {
        margin-bottom: 20px;
        flex-grow: 1;
        opacity: 0.8;
        font-size: 15px;
        line-height: 1.6;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 24px;
        text-align: center;
        transition: var(--transition);
    }

    .why-card:hover {
        transform: scale(1.05);
        background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(56,189,248,0.05));
    }

    .why-icon {
        font-size: 32px;
        color: var(--accent);
        margin-bottom: 16px;
    }

    .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 40px 0;
    }

    .slider-track {
        display: flex;
        width: calc(250px * 16);
        animation: scroll 30s linear infinite;
    }

    .slider-track:hover {
        animation-play-state: paused;
    }

    .slide {
        width: 250px;
        height: 180px;
        padding: 10px;
        perspective: 1000px;
    }

    .slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: var(--transition);
        box-shadow: var(--card-shadow);
        background: #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #64748b;
    }

    .slide:hover .slide-img {
        transform: scale(1.1);
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 8)); }
    }

    .testimonial-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
        height: 320px;
    }

    .testimonial-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 100%;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .test-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 16px;
        background: #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .rating {
        color: #fbbf24;
        margin-bottom: 12px;
    }

    .stories-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .story-card {
        padding: 24px;
        text-align: center;
        position: relative;
    }

    .badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .routine-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .routine-card {
        padding: 24px;
    }

    .routine-card h3 {
        border-bottom: 2px solid var(--primary);
        padding-bottom: 8px;
        margin-bottom: 16px;
    }

    .routine-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-header {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        padding: 0 20px;
        opacity: 0;
    }

    .faq-item.active .faq-content {
        padding: 20px;
        opacity: 1;
    }

    .faq-icon {
        transition: transform 0.3s;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        position: relative;
        box-shadow: var(--card-shadow);
        background: #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #64748b;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 10001;
        display: none;
        justify-content: center;
        align-items: center;
    }

    .lightbox-content {
        max-width: 80%, max-height: 80%;
        border-radius: 8px;
    }

    .lightbox-close {
        position: absolute;
        top: 30px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        width: 4px;
        height: 100%;
        background: var(--primary);
        transform: translateX(-50%);
        top: 0;
    }

    .timeline-item {
        padding: 20px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }

    .timeline-item:nth-child(odd) { left: 0; text-align: right; }
    .timeline-item:nth-child(even) { left: 50%; text-align: left; }

    .timeline-dot {
        width: 20px;
        height: 20px;
        background: var(--accent);
        position: absolute;
        right: -10px;
        top: 30px;
        border-radius: 50%;
        z-index: 1;
        border: 4px solid var(--bg-light);
    }

    .timeline-item:nth-child(even) .timeline-dot { left: -10px; }

    .enquiry-container {
        max-width: 700px;
        margin: 0 auto;
        padding: 40px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-group.full-width { grid-column: span 2; }

    .form-control {
        padding: 12px 16px;
        border-radius: 8px;
        border: 1px solid var(--glass-border);
        background: rgba(255,255,255,0.5);
        color: var(--text-dark);
        outline: none;
        transition: var(--transition);
    }

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .info-item {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .info-icon {
        font-size: 24px;
        color: var(--primary);
        width: 40px;
    }

    .map-container {
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        margin-bottom: 20px;
        background: #cbd5e1;
    }

    .fab-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 998;
    }

    .fab {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: var(--transition);
        cursor: pointer;
        border: none;
    }

    .fab:hover { transform: scale(1.1); }
    .fab-wa { background-color: #25d366; animation: pulse 2s infinite; }
    .fab-call { background-color: #3b82f6; }
    .fab-top { background-color: var(--secondary); color: var(--text-light); display: none; }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
        70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    footer {
        background-color: var(--secondary);
        background-color: #0f172a;
        color: #94a3b8;
        padding: 80px 20px 20px;
        position: relative;
    }

    .footer-waves {
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 50px;
        overflow: hidden;
        line-height: 0;
    }

    .footer-waves svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 50px;
    }

    .footer-waves .shape-fill { fill: var(--secondary); }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 40px;
    }

    .footer-col h3 {
        color: white;
        margin-bottom: 24px;
        font-size: 20px;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-col ul a {
        color: #94a3b8;
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-col ul a:hover { color: var(--accent); padding-left: 5px; }

    .newsletter-form {
        display: flex;
        gap: 10px;
        margin-top: 16px;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    @media (max-width: 1024px) {
        .courses-grid, .stories-grid, .routine-grid { grid-template-columns: repeat(2, 1fr); }
        .why-grid, .gallery-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .custom-cursor, .custom-cursor-dot { display: none !important; }
        .hamburger { display: block; }
        .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: var(--bg-light);
            flex-direction: column;
            padding: 40px;
            transition: var(--transition);
            align-items: flex-start;
        }
        .nav-links.active { left: 0; }
        .hero h1 { font-size: 38px; }
        .about-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
        .form-group.full-width { grid-column: span 1; }
        .courses-grid, .why-grid, .stories-grid, .routine-grid, .gallery-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
        .timeline::before { left: 20px; }
        .timeline-item { width: 100%; padding-left: 40px; padding-right: 0; text-align: left !important; }
        .timeline-item:nth-child(even) { left: 0; }
        .timeline-dot { left: 10px !important; }
        .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }

    @media print {
        header, footer, .fab-container, .btn-ripple { display: none !important; }
        body { background: white; color: black; }
        section { page-break-inside: avoid; padding: 20px 0; }
    }
/* =========================================================== */
/* =========================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
    background: var(--bg-light); /* Blends perfectly across light/dark modes */
    background: linear-gradient(to bottom, 
    rgb(0, 5, 8,.01), 
    rgb(23, 27, 30), rgb(4, 6, 9,.1));
    overflow: hidden;
}

/* Low-opacity background image layer */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./image/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04; /* Adjust this value if you want it more subtle or prominent */
    pointer-events: none; /* Crucial: Allows clicks to pass through directly to your buttons */
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2; /* Forces your typography and clickable CTA buttons to stay on top */
}

select  option{
    background-color: rgb(12, 12, 22);
    color: white;
}



@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2); }
    70% { transform: scale(1.02); box-shadow: 0 0 15px 5px rgba(245, 158, 11, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}