        /* --- 1. Variables & Reset --- */
        :root {
            --primary: #0f172a;
            /* Slate 900 - Deep Professional Navy */
            --secondary: #2563eb;
            /* Royal Blue */
            --accent: #f59e0b;
            /* Amber/Gold for CTAs */
            --text-main: #334155;
            /* Slate 700 */
            --text-light: #64748b;
            /* Slate 500 */
            --bg-light: #f8fafc;
            /* Slate 50 */
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        /* Smooth Scroll For All Pages */
        html {
            scroll-behavior: smooth;
        }

        /* Modern Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
        }

        /* Dark Mode Variables */
        .dark-mode {
            --primary: #f8fafc;
            --secondary: #60a5fa;
            --text-main: #e2e8f0;
            --text-light: #94a3b8;
            --bg-light: #0f172a;
            /* Main Dark BG */
            --white: #1e293b;
            /* Card Dark BG */
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            overflow-y: auto;
            width: 100%;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            transition: var(--transition);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Prevent Horizontal Scroll */
        section, div, .section-container, .container {
            max-width: 100%;
        }

        /* Hard stop for horizontal scroll */
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }

        /* --- 2. Top Bar --- */
        .top-bar {
            background: var(--primary);
            color: #fff;
            padding: 10px 5%;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        body.dark-mode .top-bar {
            background: #020617;
            color: #cbd5e1;
        }

        /* --- 3. Navbar (Glassmorphism) --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: visible;
        }

        body.dark-mode .navbar {
            background: linear-gradient(90deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Sticky Navbar - Dark Theme */
        .navbar.sticky {
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98)) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        body.dark-mode .logo {
            color: #60a5fa !important;
        }

        .navbar.sticky .logo {
            color: #60a5fa !important;
        }

        .logo i {
            color: var(--accent);
        }

        .navbar.sticky .logo i {
            color: #f59e0b;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-main);
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.dark-mode .nav-links a {
            color: #e2e8f0 !important;
        }

        body.dark-mode .nav-links a i {
            color: #e2e8f0 !important;
        }

        .navbar.sticky .nav-links a {
            color: #e2e8f0 !important;
        }

        .navbar.sticky .nav-links a i {
            color: #e2e8f0 !important;
        }

        .nav-links a {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
            border-radius: 10px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--secondary);
            border-bottom: 2px solid transparent;
            transform: scale(1.05);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        body.dark-mode .nav-links a:hover {
            color: #60a5fa !important;
        }

        .navbar.sticky .nav-links a:hover {
            color: #60a5fa !important;
        }

        /* Active Nav Link */
        @keyframes activeUnderlineSlide {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 100%;
                opacity: 1;
            }
        }

        @keyframes activePulseGlow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(var(--secondary-rgb, 66, 133, 244), 0.5),
                             0 0 20px rgba(var(--secondary-rgb, 66, 133, 244), 0.3);
            }
            50% {
                text-shadow: 0 0 15px rgba(var(--secondary-rgb, 66, 133, 244), 0.7),
                             0 0 30px rgba(var(--secondary-rgb, 66, 133, 244), 0.4);
            }
        }

        .nav-links a.active {
            color: var(--secondary) !important;
            border-bottom: none;
            padding-bottom: 2px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transform: scale(1.08);
            animation: activePulseGlow 2.5s ease-in-out infinite;
        }

        .nav-links a.active::after {
            width: 100%;
            opacity: 1;
            animation: activeUnderlineSlide 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            box-shadow: 0 0 15px rgba(var(--secondary-rgb, 66, 133, 244), 0.6);
        }

        body.dark-mode .nav-links a.active {
            color: #60a5fa !important;
            animation: activePulseGlowDark 2.5s ease-in-out infinite;
        }

        @keyframes activePulseGlowDark {
            0%, 100% {
                text-shadow: 0 0 10px rgba(96, 165, 250, 0.6),
                             0 0 20px rgba(96, 165, 250, 0.3);
            }
            50% {
                text-shadow: 0 0 15px rgba(96, 165, 250, 0.8),
                             0 0 30px rgba(96, 165, 250, 0.4);
            }
        }

        body.dark-mode .nav-links a.active::after {
            background: linear-gradient(90deg, #60a5fa, #3b82f6, #60a5fa);
            box-shadow: 0 0 15px rgba(96, 165, 250, 0.7);
        }

        .navbar.sticky .nav-links a.active {
            color: #60a5fa !important;
            animation: activePulseGlowDark 2.5s ease-in-out infinite;
        }

        .navbar.sticky .nav-links a.active::after {
            background: linear-gradient(90deg, #60a5fa, #3b82f6, #60a5fa);
            box-shadow: 0 0 15px rgba(96, 165, 250, 0.7);
        }

        .nav-actions {
            display: flex;
            gap: 15px;
            align-items: center;
            overflow: visible;
        }

        .btn-register {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #f59e0b 100%);
            background-size: 200% 200%;
            color: #fff;
            padding: 0.65rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4), 0 0 30px rgba(245, 158, 11, 0.2);
            transition: all 0.4s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .btn-register::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-register:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-text, .btn-icon {
            position: relative;
            z-index: 1;
        }

        .btn-icon {
            font-size: 1rem;
            transition: transform 0.4s ease;
        }

        .btn-register:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5), 0 0 40px rgba(245, 158, 11, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .btn-register:hover .btn-icon {
            transform: translateX(3px) rotate(-15deg);
        }

        .btn-register:active {
            transform: translateY(-1px) scale(1.02);
        }

        #scholarship-btn {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
            background-size: 200% 200%;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4), 0 0 30px rgba(217, 119, 6, 0.3);
        }

        #scholarship-btn:hover {
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5), 0 0 40px rgba(217, 119, 6, 0.4);
        }

        #scholarship-btn .btn-icon {
            animation: trophy-shine 2s ease-in-out infinite;
        }

        @keyframes trophy-shine {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                filter: brightness(1);
            }
            50% {
                transform: scale(1.15) rotate(-10deg);
                filter: brightness(1.3);
            }
        }

        .dark-mode #scholarship-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            background-size: 200% 200%;
        }

        .modern-inquiry-btn {
            background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #7c3aed 100%);
            background-size: 200% 200%;
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 6px 25px rgba(15, 23, 42, 0.4), 0 0 40px rgba(124, 58, 237, 0.2);
            transition: all 0.4s ease;
            position: relative;
            animation: gradientShift 3s ease infinite;
        }

        .modern-inquiry-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .modern-inquiry-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .modern-inquiry-btn i,
        .modern-inquiry-btn span {
            position: relative;
            z-index: 1;
        }

        .modern-inquiry-btn i {
            font-size: 1.2rem;
            transition: transform 0.4s ease;
        }

        .modern-inquiry-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 35px rgba(15, 23, 42, 0.5), 0 0 60px rgba(124, 58, 237, 0.3);
        }

        .modern-inquiry-btn:hover i {
            transform: rotate(15deg) scale(1.1);
        }

        .modern-inquiry-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        body.dark-mode .modern-inquiry-btn {
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f59e0b 100%);
            background-size: 200% 200%;
        }

        .dark-mode #inquiry-btn {
            background: var(--primary);
            color: var(--bg-light);
            border-color: var(--bg-light);
        }

        #scholarship {
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(37, 99, 235, 0.05));
        }

        .dark-mode #scholarship {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(96, 165, 250, 0.05));
        }

     .theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

/* Hover effect to make it feel interactive */
.theme-toggle:hover {
    transform: scale(1.15) rotate(20deg);
    background: rgba(99, 102, 241, 0.1);
}

/* Standard state: Show Sun, Hide Moon */
.theme-toggle .sun-icon {
    color: #f59e0b;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.theme-toggle .moon-icon {
    color: #6366f1;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

/* Dark Mode State: Hide Sun, Show Moon with Animation */
body.dark-mode .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
    pointer-events: none;
}

body.dark-mode .theme-toggle .moon-icon {
    opacity: 1;
    animation: moonRise 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode: Show Sun */
body:not(.dark-mode) .theme-toggle .sun-icon {
    opacity: 1;
    animation: sunRise 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.dark-mode) .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
    pointer-events: none;
}

/* Modern Animations */
@keyframes sunRise {
    from { 
        transform: rotate(-90deg) scale(0);
        opacity: 0;
        text-shadow: 0 0 0 rgba(245, 158, 11, 0);
    }
    to { 
        transform: rotate(0) scale(1);
        opacity: 1;
        text-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    }
}

@keyframes moonRise {
    from { 
        transform: rotate(90deg) scale(0);
        opacity: 0;
        text-shadow: 0 0 0 rgba(99, 102, 241, 0);
    }
    to { 
        transform: rotate(0) scale(1);
        opacity: 1;
        text-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
    }
}
    to { 
        transform: rotate(0) scale(1);
        opacity: 1;
        text-shadow: 0 0 10px rgba(129, 140, 248, 0.5);
    }
}

        /* --- News Ticker Section --- */
        .news-ticker-container {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1f2937;
            padding: 10px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            border-bottom: 4px solid #b45309;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            width: 100%;
            max-width: 100%;
            min-height: 45px;
            max-height: 55px;
            justify-content: center;
        }

        body.dark-mode .news-ticker-container {
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
            border-bottom: 3px solid rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .ticker-wrapper {
            color: #ffffff;
        }

        body.dark-mode .ticker-content {
            color: #ffffff;
        }

        body.dark-mode .ticker-item {
            color: #ffffff;
        }

        body.dark-mode .ticker-item i {
            color: #ffffff;
        }

        .ticker-label {
            display: none;
        }

        .ticker-label i {
            font-size: 1rem;
            animation: pulse 2s infinite;
            display: inline-block;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .ticker-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
            padding: 0 30px;
            max-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            color: #1f2937;
            width: 100%;
        }

        .ticker-content {
            display: flex;
            gap: 50px;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
            will-change: transform;
            align-items: center;
            height: 100%;
            color: #1f2937;
        }

        .ticker-item {
            font-size: 0.88rem;
            font-weight: 700;
            padding: 0 20px;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            overflow: visible;
            color: #1f2937;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
            letter-spacing: 0.3px;
        }

        .ticker-item i {
            font-size: 1rem;
            color: #1f2937;
            background: rgba(255, 255, 255, 0.4);
            padding: 6px;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            min-width: 28px;
            min-height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            line-height: 1;
        }

        .ticker-item::after {
            content: '●';
            position: absolute;
            right: -25px;
            opacity: 0.5;
        }

        .ticker-item:last-child::after {
            display: none;
        }

        /* Vibrant Colors for Individual Ticker Items */
        .ticker-item:nth-child(1) i {
            background: rgba(59, 130, 246, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e40af;
        }

        .ticker-item:nth-child(1) {
            color: #1f2937;
        }

        .ticker-item:nth-child(2) i {
            background: rgba(236, 72, 153, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #be185d;
        }

        .ticker-item:nth-child(2) {
            color: #1f2937;
        }

        .ticker-item:nth-child(3) i {
            background: rgba(139, 92, 246, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #6d28d9;
        }

        .ticker-item:nth-child(3) {
            color: #1f2937;
        }

        .ticker-item:nth-child(4) i {
            background: rgba(34, 197, 94, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #15803d;
        }

        .ticker-item:nth-child(4) {
            color: #1f2937;
        }

        .ticker-item:nth-child(5) i {
            background: rgba(249, 115, 22, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #c2410c;
        }

        .ticker-item:nth-child(5) {
            color: #1f2937;
        }

        .ticker-item:nth-child(6) i {
            background: rgba(244, 63, 94, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #be123c;
        }

        .ticker-item:nth-child(6) {
            color: #1f2937;
        }

        .ticker-item:nth-child(7) i {
            background: rgba(20, 184, 166, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #0d9488;
        }

        .ticker-item:nth-child(7) {
            color: #1f2937;
        }

        /* Duplicate content for seamless loop */
        .ticker-content::after {
            content: attr(data-content);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-wrapper:hover .ticker-content {
            animation-play-state: paused;
        }

        /* Responsive News Ticker */
        @media (max-width: 768px) {
            .ticker-label {
                font-size: 0.7rem;
                padding: 5px 12px;
            }

            .ticker-item {
                font-size: 0.8rem;
            }

            .news-ticker-container {
                padding: 6px 0;
            }
        }

        /* --- 4. Hero Section --- */
        .hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 60px 20px;
            margin-bottom: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            opacity: 0.9;
        }

        .hero-btn {
            background: var(--accent);
            color: #0f172a;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
            background: #fbbf24;
        }

        /* --- 5. General Section Styles --- */
        .section-container {
            padding: 80px 5%;
            margin-bottom: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        /* Spacing between sections */
        section + section {
            margin-top: 0;
        }

        /* Specific section spacing adjustments */
        .hero {
            margin-bottom: 0;
        }

        .slider-wrapper {
            margin-bottom: 0;
        }

        .stats-section {
            margin-top: 0;
            margin-bottom: 0;
        }

        .faq-section {
            margin-top: 0;
            margin-bottom: 0;
        }

        /* Footer spacing */
        footer {
            margin-top: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-main);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* Responsive Section Spacing */
        @media (max-width: 768px) {
            .section-container {
                padding: 50px 5%;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        .dark-mode .section-title {
            color: #fff;
        }

        /* --- 6. Forms (Scholarship & Inquiry) --- */
        .form-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.1);
            max-width: 800px;
            margin: 30px auto;
            padding: 50px;
            border-top: 5px solid var(--secondary);
            display: none;
            animation: fadeIn 0.5s ease;
            position: relative;
        }

        body.dark-mode .form-section {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(96, 165, 250, 0.2);
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(50%, -50%);
            pointer-events: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        .form-header-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 15px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .form-header h3 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        body.dark-mode .form-header h3 {
            color: #60a5fa;
        }

        .form-header p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
            position: relative;
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-main);
            font-size: 0.9rem;
        }

        .form-label i {
            color: var(--secondary);
            font-size: 0.95rem;
        }

        body.dark-mode .form-label i {
            color: #60a5fa;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            color: var(--text-main);
        }

        body.dark-mode .form-control {
            background: rgba(15, 23, 42, 0.8);
            border-color: #334155;
            color: #e2e8f0;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
            background: white;
            transform: translateY(-2px);
        }

        body.dark-mode .form-control:focus {
            background: #1e293b;
            border-color: #60a5fa;
            box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            margin-top: 10px;
            position: relative;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-btn span,
        .submit-btn i {
            position: relative;
            z-index: 1;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn i {
            transition: transform 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            animation: slideIn 0.5s ease;
        }

        .success-message i {
            font-size: 3rem;
            margin-bottom: 10px;
            display: block;
        }

        .success-message p {
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- 7. Features Grid --- */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: transparent;
        }

        .feature-icon {
            display: flex;
            /* Flexbox enable karein */
            align-items: center;
            /* Vertical centering */
            justify-content: center;
            /* Horizontal centering */
            font-size: 1.8rem;
            /* 3rem thoda bada tha, 1.8-2rem behtar lagega */
            color: #2563eb;
            /* Aapka blue color */
            background: rgba(37, 99, 235, 0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            /* Center aligned with bottom spacing */
            transition: 0.3s;
        }

        /* Hover effect for better UX */
        .feature-icon:hover {
            background: #2563eb;
            color: white;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* --- Founder Section --- */
        .founder-section {
            display: flex;
            align-items: center;
            gap: 40px;
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .founder-image {
            flex: 0 0 300px;
        }

       .founder-photo {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            background-color: var(--bg-light);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: block;
        }

        .founder-content {
            flex: 1;
        }

        .founder-content h3 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .founder-content p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: var(--text-main);
        }

        /* --- 8. Courses --- */
        .courses {
            background: var(--bg-light);
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .course-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .course-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .course-content {
            padding: 25px;
        }

        .course-tag {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }

        .course-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .course-link {
            color: var(--secondary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .course-link:hover {
            text-decoration: underline;
        }

        /* --- 9. Stats --- */
        .stats {
            background: var(--secondary);
            color: white;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- 10. Footer --- */
        footer {
            background: linear-gradient(180deg, #0f172a, #1e293b);
            color: #94a3b8;
            padding: 50px 5% 30px;
            text-align: center;
            border-top: 1px solid #1e293b;
            margin-top: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .footer-logo {
            font-size: 1.8rem;
            color: white;
            font-weight: bold;
            margin-bottom: 20px;
            display: block;
        }

        .footer-links {
            margin: 25px 0;
        }

        .footer-links a {
            color: #cbd5e1;
            margin: 0 15px;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        /* --- Mobile --- */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .navbar {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .top-bar {
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }

            .feature-grid,
            .course-grid,
            .stats {
                grid-template-columns: 1fr;
            }

            .founder-section {
                flex-direction: column;
                padding: 20px;
            }

            .founder-image {
                flex: 0 0 auto;
                width: 100%;
            }

            .founder-photo {
                height: 250px;
            }

            .form-section {
                padding: 25px;
                max-width: 95%;
                margin: 20px auto;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-header h3 {
                font-size: 1.5rem;
            }

            .form-header-icon {
                font-size: 2.5rem;
            }

            .submit-btn {
                font-size: 0.95rem;
                padding: 14px 20px;
            }

            .modern-inquiry-btn {
                font-size: 0.95rem;
                padding: 14px 30px;
            }
            }
        }

        /* --- SLIDER CSS START --- */
        .slider-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: #000;
        }

        .slides-container {
            display: flex;
            transition: transform 0.8s ease-in-out;
            width: 100%;
        }

        .individual-slide {
            min-width: 100%;
            height: 450px;
            position: relative;
        }

        .individual-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            width: 80%;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .individual-slide {
                height: 250px;
            }

            .slide-content h2 {
                font-size: 1.5rem;
            }
        }
   #backToTop {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Higher priority to stay on top */
    background-color: #6366f1;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* --- Top Performers Section --- */
.performers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.performer-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.performer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.performer-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.performer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.performer-card:hover .performer-image img {
    transform: scale(1.1);
}

.performer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.performer-card:hover .performer-overlay {
    opacity: 1;
}

.performer-overlay i {
    font-size: 4rem;
    color: var(--accent);
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

body.dark-mode .performer-card {
    background: #1e293b;
}

@media (max-width: 768px) {
    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 5%;
    }
    
    .performer-image {
        height: 250px;
    }
    
    .performer-overlay i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .performers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Advertisement Section --- */
.advertisement-section {
    width: 100%;
    max-width: 100%;
    padding: 60px 5%;
    background: var(--bg-light);
}

.ad-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ad-banner {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
}

.ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ad-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Optional: If you want to add clickable links */
.ad-banner a {
    display: block;
    position: relative;
}

.ad-banner a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.ad-banner a:hover::after {
    opacity: 1;
}

body.dark-mode .advertisement-section {
    background: #0f172a;
}

@media (max-width: 768px) {
    .advertisement-section {
        padding: 40px 3%;
    }
    
    .ad-container {
        gap: 20px;
    }
}

/* --- Promotional Banner Slider Section --- */
.banner-slider-section {
    width: 100%;
    max-width: 100%;
    padding: 60px 5%;
    background: var(--bg-light);
    overflow: hidden;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.banner-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.banner-slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-nav:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

body.dark-mode .banner-slider-section {
    background: #0f172a;
}

body.dark-mode .banner-nav {
    background: rgba(30, 41, 59, 0.9);
    color: #f8fafc;
}

body.dark-mode .banner-nav:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .banner-slider-section {
        padding: 40px 3%;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-dots {
        bottom: 10px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    .banner-dot.active {
        width: 20px;
    }
}