        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #2563eb;       /* Modern Blue */
            --primary-dark: #1e40af;
            --primary-light: #dbeafe;
            --secondary: #f59e0b;     /* Warm Yellow/Orange */
            --secondary-dark: #d97706;
            --accent: #10b981;        /* Green accent */
            --danger: #ef4444;        /* Red */
            --bg-light: #f3f4f6;      /* Light Gray */
            --bg-lighter: #f9fafb;   /* Even lighter Gray */
            --text-main: #1f2937;     /* Dark Gray */
            --text-light: #6b7280;    /* Medium Gray */
            --text-lighter: #9ca3af;  /* Lighter Gray */
            --white: #ffffff;
            --radius: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Quicksand','Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            /* cursor: url('../img/Cursor/Cursor2.png'), auto; */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Fredoka','Inter', 'Poppins', sans-serif;
            line-height: 1.2;
            color: var(--text-main);
            font-weight: 700;
        }

        a { text-decoration: none; transition: 0.3s ease; }
        ul { list-style: none; }

        /* --- UTILITY CLASSES (Tailwind-ish) --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: var(--white);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }

        .btn-white {
            background-color: var(--white);
            color: var(--primary);
            border: 2px solid var(--white);
            box-shadow: var(--shadow-md);
        }
        .btn-white:hover {
            background-color: var(--bg-light);
            border-color: var(--bg-light);
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .text-primary { color: var(--primary); }
        .mt-4 { margin-top: 1rem; }
        .mt-5 { margin-top: 1.25rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-8 { margin-bottom: 2rem; }

        .section-overline {
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .link-arrow {
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .link-arrow:hover {
            color: var(--primary) !important;
            transform: translateX(5px);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--text-main) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-subtitle {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 3rem auto;
            font-size: 1.05rem;
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #ffffffee;
            backdrop-filter: blur(17px);
            z-index: 1000;
            padding: 0.48rem 0;
            border-bottom: 1px solid #e5e7eb52;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }

        .logo {
            font-family: 'Fredoka','Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 60px;
            width: 60px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .logo span { 
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--text-main);
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:hover { 
            color: var(--primary);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-button {color: var(--bg-light) !important;}

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-main);
        }

        /* --- SCROLLED NAVBAR (CAPSULE EFFECT - DESKTOP) --- */
        .navbar.scrolled {
            top: 10px;
            background-color: transparent;
            backdrop-filter: none;
            box-shadow: none;
            border-bottom: none;
            padding: 0;
        }

        .navbar.scrolled .nav-container {
            background-color: var(--white);
            border-radius: 1000px;
            padding: 0.5rem 1.5rem;
            box-shadow: var(--shadow-xl);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            padding: 180px 0 120px 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(30, 64, 175, 0.85) 100%), 
                        url('../img/background/BG\ imgs/14.jpg') no-repeat;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.3;
            animation: slideInDown 0.8s ease-out;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- FEATURES/CARDS --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: -50px; /* Overlap effect */
            position: relative;
            z-index: 10;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .icon-box {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }

        .feature-card h3 { 
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }
        .feature-card p { 
            color: var(--text-light); 
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 { 
            font-size: 2.5rem; 
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--text-main) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .about-content p { 
            color: var(--text-light); 
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            font-weight: 500;
            color: var(--text-main);
            transition: all 0.3s ease;
        }

        .check-list li:hover {
            transform: translateX(8px);
        }

        .check-list i { 
            color: var(--secondary); 
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* --- PROGRAMS --- */
        .bg-light { background-color: var(--bg-lighter); }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: var(--white);
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .program-card:hover { 
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
            transform: translateY(-8px);
        }

        .program-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card:hover .program-img {
            transform: scale(1.08);
        }

        .program-content { 
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .program-tag {
            background: linear-gradient(135deg, var(--primary-light) 0%, #bfdbfe 100%);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }
        .program-content h3 { 
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }
        .program-content p { 
            color: var(--text-light); 
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 8rem 0;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section > * {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* --- PAGE HEADER (for sub-pages) --- */
        .page-header {
            padding: 140px 0 80px 0;
            background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.75rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--text-main) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- MISSION & VISION --- */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .mission-card, .vision-card {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 2px solid var(--bg-light);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mission-card::before, .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .mission-card:hover::before, .vision-card:hover::before {
            opacity: 1;
        }

        .mission-card h3, .vision-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .mission-card p, .vision-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* --- TEAM SECTION --- */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-member-card {
            text-align: center;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .team-member-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--secondary);
        }

        .team-member-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            object-position: top;
            transition: transform 0.3s ease;
        }

        .team-member-card:hover img {
            transform: scale(1.05);
        }

        .team-member-info { 
            padding: 2rem;
        }
        .team-member-info h4 { 
            font-size: 1.2rem; 
            margin-bottom: 0.25rem;
        }
        .team-member-info span {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* --- FOOTER --- */
        footer {
            background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
            color: #d1d5db;
            padding: 4rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .logo-footer {
            height: 50px;
            width: 50px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .footer-brand {
            font-family: 'Fredoka','Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--white) 0%, #e5e7eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .footer-brand span { 
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-col h4 { 
            color: var(--white); 
            margin-bottom: 1.5rem; 
            font-size: 1.1rem;
        }
        .footer-col ul li { margin-bottom: 0.75rem; }
        .footer-col ul li a {
            color: var(--primary-light);
            font-weight: 400;
            transition: all 0.3s ease;
        }
        .footer-col ul li a:hover { 
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .social-links a:hover { 
            background: var(--secondary);
            transform: translateY(-3px);
        }
        .social-links a i { 
            font-size: 1.2rem;
            color: var(--white);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        .contact-item i {
            color: var(--secondary);
            margin-top: 4px;
            font-size: 1.1rem;
        }

        .contact-item a {
            color: var(--primary-light);
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .about-grid { grid-template-columns: 1fr; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 1rem;
                box-shadow: var(--shadow-md);
            }
            .nav-links.active { display: flex; }
            .menu-toggle { display: block; }

            /* --- SCROLLED NAVBAR (MOBILE FALLBACK) --- */
            .navbar.scrolled {
                top: 0;
                padding: 0.48rem 0;
                background-color: #ffffff94;
                backdrop-filter: blur(17px);
                border-bottom: 1px solid #e5e7eb52;
                box-shadow: var(--shadow-md);
            }
            .navbar.scrolled .nav-container {
                background-color: unset;
                border-radius: unset;
                padding: unset;
                box-shadow: unset;
            }
            .features-grid { margin-top: 2rem; }
            .hero { padding-top: 140px; }
            .page-header {
                padding: 120px 0 60px 0;
            }
            .page-header h1 {
                font-size: 2.25rem;
            }
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                transform: scale(1); /* Reset scale on mobile */
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .cta-section {
                padding: 4rem 0;
            }
            .cta-section h2 {
                font-size: 1.8rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
        }

        /* --- CONTACT PAGE --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .form-group { margin-bottom: 1.5rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-light) 0%, #bfdbfe 100%);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-top: 2rem;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- GALLERY & LIGHTBOX --- */
        .gallery-grid {
            column-count: 3;
            column-gap: 1.5rem;
        }

        @media (max-width: 900px) {
            .gallery-grid { column-count: 2; }
        }
        @media (max-width: 600px) {
            .gallery-grid { column-count: 1; }
        }

        .gallery-item {
            height: auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            margin-bottom: 1.5rem;
            break-inside: avoid;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            box-shadow: var(--shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img { transform: scale(1.08); }

        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        .lightbox.active { display: flex; }
        .lightbox img { max-width: 90%; max-height: 90%; border-radius: var(--radius-lg); }
        .lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 3rem; cursor: pointer; transition: all 0.3s ease; }
        .lightbox-close:hover { color: var(--secondary); transform: scale(1.2); }

        /* --- CALENDAR --- */
        .calendar-wrapper {
            background: var(--white);
            border: 2px solid var(--bg-light);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            overflow-x: auto; /* For responsiveness on small screens */
        }

        .event-calendar {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .event-calendar th, .event-calendar td {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--bg-light);
        }

        .event-calendar thead {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
        }

        .event-calendar th {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-main);
            font-weight: 700;
        }

        .event-calendar tbody tr:hover {
            background-color: rgba(37, 99, 235, 0.05);
        }

        .event-calendar td:first-child {
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }

        /* --- PRICING/FEES SECTION --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
            z-index: 5;
        }

        .pricing-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem 0;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
            background: none;
            -webkit-text-fill-color: unset;
        }

        .pricing-card .features-list {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
            flex-grow: 1;
        }

        .pricing-card .features-list li i { color: var(--secondary); }

        /* --- INFINITE CAROUSEL --- */
        .infinite-carousel-container {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: var(--white);
            overflow: hidden;
            padding: 20px 0;
        }

        .infinite-carousel-track {
            display: flex;
            width: fit-content;
            animation: scroll 40s linear infinite;
        }

        .infinite-carousel-container:hover .infinite-carousel-track {
            animation-play-state: paused;
        }

        .carousel-content {
            display: flex;
            white-space: nowrap;
            align-items: center;
        }

        .carousel-content span {
            padding: 0 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .carousel-content img {
            height: 45px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- CUSTOM CURSOR DOT --- */
        .cursor-dot {
            width: 10px;
            height: 10px;
            background-color: var(--secondary);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.2s ease, background-color 0.2s ease;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
        }

        .cursor-dot.active {
            transform: translate(-50%, -50%) scale(3);
            background-color: rgba(245, 158, 11, 0.5);
        }

        @media (max-width: 768px) {
            .cursor-dot {
                display: none;
            }
        }

        /* --- PRELOADER --- */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }

        .loader-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .loader-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            animation: pulse 1.5s infinite ease-in-out;
            filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
        }

        .loader-progress {
            font-family: 'Fredoka', 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.8; }
        }

        /* --- SCROLL TO TOP BUTTON --- */
        #scrollToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: var(--shadow-lg);
        }
        #scrollToTopBtn.visible { 
            opacity: 1; 
            visibility: visible;
        }
        #scrollToTopBtn:hover { 
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        /* --- UTILITY --- */
        .hidden { display: none; }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
