   :root {
            --primary-blur: blur(20px);
            --nav-bg: rgba(104, 23, 107, 0.918); /* #68176B with transparency */
        }

        body {
            margin: 0;
            padding: 0;
            /* Global Font Family Applied Here */
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Glassmorphism Navbar */
        .glass-nav {
            background: rgb(94 11 103);
            backdrop-filter: var(--primary-blur);
            -webkit-backdrop-filter: var(--primary-blur);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            height: 89px;
            display: flex;
            align-items: center;
            transition: height 0.3s ease, background 0.3s ease;
        }

        .glass-nav.scrolled {
          
            background: rgba(104, 23, 107, 0.95); /* Solid #68176B */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .logo-img {
           
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
            /* Added a subtle white glow to ensure purple/gold logos pop on dark slider */
            filter: drop-shadow(0px 2px 8px rgba(255, 255, 255, 0.7));
        }

        .glass-nav.scrolled .logo-img {
            /* Reduced glow when scrolled as background becomes lighter */
            filter: drop-shadow(0px 2px 4px rgba(255, 255, 255, 0.3));
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        /* Hero & Slider */
        .hero-section {
            position: relative;
            width: 100%;
            height: 80vh; /* Reduced height to show next section on desktop */
            display: flex;
            background-color: #0f172a;
        }

        .slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
            z-index: 2;
        } */

        .slide picture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Overlay Form (Desktop) */
        .form-wrapper {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            width: 420px;
            z-index: 10;
        }

        .form-overlay {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.75rem; /* Reduced padding */
            border-radius: 0; /* Removed border radius */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* New Programs Section Styling */
        .card-gradient-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 30%, transparent 70%);
        }

        /* Responsive Mobile Behavior */
        @media (max-width: 768px) {
            .glass-nav {
                justify-content: center;
               
            }
            .logo-right {
                display: none;
            }
            .logo-left {
                margin: 0 auto;
            }

            .hero-section {
                flex-direction: column;
                height: auto;
            }

            .slider-container {
                position: relative;
                height: 65vh;
            }

            .form-wrapper {
                position: relative;
                right: 0;
                top: 0;
                transform: none;
                width: 100%;
                z-index: 10;
                margin-top: -20px;
            }

            .form-overlay {
                border-radius: 0; /* Removed border radius */
                padding: 1.5rem 1.25rem; /* Reduced padding on mobile */
                box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
                border: none;
            }
        }

        /* Form Elements Styling */
       

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }


         /* Smooth Accordion Transitions */
        .accordion-content {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            transition: grid-template-rows 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }
        .accordion-content.is-open {
            grid-template-rows: 1fr;
            opacity: 1;
        }
        .accordion-content-inner {
            overflow: hidden;
        }

        /* Active State Classes */
        .accordion-btn.active {
            background-color: white !important;
            color: #111827 !important; /* text-gray-900 */
        }







        