﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            position: relative;
            margin: 0;
            padding: 0;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.08) 1px, transparent 0),
                radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.05) 1px, transparent 0);
            background-size: 40px 40px, 60px 60px;
            background-position: 0 0, 20px 20px;
            opacity: 0.4;
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%),
                linear-gradient(45deg, transparent 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        /* Ensure content is above background texture */
        main, section {
            position: relative;
            z-index: 1;
            margin: 0;
            padding: 0;
        }

        /* Top Bar - Premium School Design */
        .top-bar {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 0 !important;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%),
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
            pointer-events: none;
            animation: shimmer 4s infinite;
        }

        .top-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255, 255, 255, 0.03) 3px, rgba(255, 255, 255, 0.03) 6px);
            pointer-events: none;
            opacity: 0.5;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .top-bar-left {
            display: flex;
            gap: 35px;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            padding: 5px 12px;
            border-radius: 8px;
            position: relative;
        }

        .top-bar-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .top-bar-item:hover::before {
            opacity: 1;
        }

        .top-bar-item:hover {
            transform: translateY(-2px);
        }

        .top-bar-item i {
            font-size: 16px;
            color: #3b82f6;
            transition: all 0.3s ease;
        }

        .top-bar-item:hover i {
            color: #93c5fd;
            transform: scale(1.1);
        }

        .top-bar-item a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            letter-spacing: 0.2px;
        }

        .top-bar-item a:hover {
            color: white;
        }

        .admission-btn {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border: none;
            color: white;
            padding: 10px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
            position: relative;
            overflow: hidden;
            font-size: 14px;
            text-transform: uppercase;
        }

        .admission-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .admission-btn:hover::before {
            left: 100%;
        }

        .admission-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        }

        .admission-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        .admission-btn i {
            font-size: 16px;
        }

        /* Header - Premium School Design */
        .header {
            /* Professional deep-navy gradient */
            background: linear-gradient(135deg, #0b1220 0%, #111827 40%, #1e3a8a 100%);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
            position: relative;
            top: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 2px solid rgba(15, 23, 42, 0.1);
            margin-bottom: 0 !important;
            line-height: 0 !important;
        }
        
        .header > * {
            line-height: normal;
        }
        
        /* Remove whitespace from script elements between header and hero */
        header + script,
        .header + script {
            display: none !important;
            margin: 0 !important;
            padding: 0 !important;
            height: 0 !important;
            line-height: 0 !important;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(15, 23, 42, 0.06) 1px, transparent 0);
            background-size: 25px 25px;
            opacity: 0.5;
            pointer-events: none;
        }

        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
            opacity: 0.8;
            pointer-events: none;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 8px 30px rgba(0, 0, 0, 0.08);
            border-bottom-color: rgba(15, 23, 42, 0.15);
        }

        /* Logo Section - Enhanced */
        .logo-section {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            padding-bottom: 0 !important;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
            z-index: 1;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            padding: 8px;
            border-radius: 12px;
            position: relative;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        }

        .logo::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .logo:hover::before {
            opacity: 1;
        }

        .logo:hover {
            transform: none;
            box-shadow: none;
        }

        .logo img {
            height: 65px;
            width: auto;
            object-fit: contain;
            transition: none;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .logo:hover img {
            transform: none;
        }

        .school-name {
            display: flex;
            flex-direction: column;
            margin-left: 10px;
        }

        .school-name-main {
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .school-name-tagline {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Social Media Icons - Enhanced */
        .social-media {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .social-icon i {
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .social-icon:hover::before {
            opacity: 1;
        }

        .social-icon:hover {
            color: white;
            transform: translateY(-3px) rotate(5deg);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
            border-color: rgba(59, 130, 246, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        /* Menu Section */
        .menu-section {
            position: relative;
            z-index: 1000;
            padding: 0 20px;
            overflow: visible;
            max-width: 1400px;
            margin: 0 auto;
        }

        nav {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 0;
            position: relative;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            gap: 0;
            max-width: 100%;
            position: relative;
            z-index: 1000;
        }

        /* Navigation Menu - Premium Design */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .nav-menu li {
            position: relative;
            white-space: nowrap;
        }

        .nav-menu > li.has-dropdown {
            z-index: 1003;
        }

        .nav-menu > li > a {
            /* Light text for dark header */
            color: #e2e8f0;
            text-decoration: none;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 0;
            position: relative;
            font-size: 15px;
            letter-spacing: 0.2px;
            background: transparent;
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu > li:last-child > a {
            border-right: none;
        }

        .nav-menu > li:last-child:hover > a,
        .nav-menu > li:last-child > a.active {
            border-right: none;
        }

        .nav-menu > li > a::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 0;
            background: transparent;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .nav-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            border-radius: 3px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu > li:hover > a::before,
        .nav-menu > li > a.active::before {
            opacity: 1;
        }

        .nav-menu > li:hover > a,
        .nav-menu > li > a.active {
            color: #f8fafc;
            background: transparent;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: none;
            transform: none;
        }

        .nav-menu > li:hover > a::after,
        .nav-menu > li > a.active::after {
            width: 70%;
        }

        /* Exclude underline from dropdown items */
        .nav-menu > li.has-dropdown:hover > a::after,
        .nav-menu > li.has-dropdown > a.active::after {
            width: auto;
            background: none;
            height: auto;
            bottom: auto;
            left: auto;
            transform: none;
        }

        /* Dropdown Arrow - Must override underline effect */
        .nav-menu > li.has-dropdown > a {
            padding-right: 24px;
        }

        .nav-menu > li.has-dropdown > a::after {
            content: '\f107' !important;
            font-family: 'Font Awesome 6 Free' !important;
            font-weight: 900 !important;
            position: static !important;
            display: inline-block !important;
            margin-left: 8px !important;
            font-size: 10px !important;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            transform: translateX(0) !important;
            width: auto !important;
            height: auto !important;
            background: transparent !important;
            border-radius: 0 !important;
            bottom: auto !important;
            left: auto !important;
            vertical-align: middle !important;
            color: #cbd5e1 !important;
        }

        .nav-menu > li.has-dropdown:hover > a::after,
        .nav-menu > li.has-dropdown > a.active::after {
            transform: rotate(180deg) !important;
            color: #3b82f6 !important;
            width: auto !important;
            height: auto !important;
            background: transparent !important;
            bottom: auto !important;
            left: auto !important;
        }

        /* Dropdown Menu - Premium */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            background: #0f172a;
            min-width: 250px;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35), 0 5px 15px rgba(0, 0, 0, 0.25);
            border-radius: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            z-index: 1004;
            border: 1px solid rgba(59, 130, 246, 0.35);
            overflow: hidden;
            pointer-events: none;
        }

        .nav-menu > li.has-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 5px;
            background: transparent;
            z-index: 1003;
        }

        .nav-menu > li:hover > .dropdown-menu,
        .nav-menu > li.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-menu:hover {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .nav-menu > li.has-dropdown:hover {
            z-index: 1005;
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 14px 25px;
            display: block;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border-left: 4px solid transparent;
            letter-spacing: 0.2px;
        }

        .dropdown-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(34, 197, 94, 0.12) 100%);
            transition: width 0.3s ease;
        }

        .dropdown-menu a:hover {
            color: #3b82f6;
            padding-left: 30px;
        }

        .dropdown-menu a:hover::before {
            width: 100%;
        }

        .dropdown-menu a:hover {
            border-left-color: #3b82f6;
        }

        .dropdown-menu a.active {
            color: #3b82f6;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.12) 100%);
            border-left-color: #3b82f6;
            font-weight: 600;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            border-radius: 8px;
            font-size: 24px;
            cursor: pointer;
            color: #e2e8f0;
            padding: 10px 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: none;
            position: relative;
            overflow: hidden;
            z-index: 1003;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .mobile-menu-toggle i {
            display: block;
            line-height: 1;
        }

        .mobile-menu-toggle::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 8px;
        }

        @media (min-width: 769px) {
            .mobile-menu-toggle:hover::before {
                opacity: 1;
            }

            .mobile-menu-toggle:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            }
        }

        /* Hide Mobile Sidebar on Desktop */
        .mobile-sidebar-menu {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-menu > li > a {
                padding: 11px 16px;
                font-size: 14px;
            }
            
            .logo img {
                height: 60px;
            }
        }

        @media (max-width: 968px) {
            .nav-menu > li > a {
                padding: 10px 14px;
                font-size: 13px;
            }
            
            .logo img {
                height: 55px;
            }

            .header-container {
                padding: 0;
                gap: 20px;
            }

            .logo-section {
                padding: 10px 10px;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            /* Hide Top Bar on Mobile */
            .top-bar {
                display: none;
            }

            /* Remove Sticky Position on Mobile */
            .header {
                position: relative;
                top: auto;
            }

            .header-container {
                padding: 0;
                gap: 15px;
            }

            .logo img {
                height: 50px;
            }

            .logo-section {
                padding: 12px 15px;
                justify-content: space-between;
                flex-wrap: nowrap;
                gap: 10px;
            }

            .admission-btn {
                display: none;
            }

            /* Mobile Header Layout - Logo Left, Toggle Right */
            .logo-wrapper {
                flex: 1;
            }

            .mobile-menu-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: rgba(59, 130, 246, 0.15);
                border: 1px solid rgba(59, 130, 246, 0.3);
                color: #e2e8f0;
                padding: 10px 14px;
                font-size: 20px;
                min-width: 48px;
                min-height: 48px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
                border-radius: 8px;
            }

            .mobile-menu-toggle:hover {
                background: rgba(59, 130, 246, 0.25);
                border-color: rgba(59, 130, 246, 0.5);
                color: #f8fafc;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            }

            .mobile-menu-toggle:active {
                transform: translateY(0);
                background: rgba(59, 130, 246, 0.2);
            }

            .mobile-menu-toggle i {
                font-size: 20px;
            }

            .social-media {
                gap: 8px;
            }

            .social-icon {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-sidebar-overlay {
                display: block;
            }

            /* Hide desktop menu on mobile */
            .nav-menu {
                display: none;
            }

            /* Show Mobile Sidebar Menu on Mobile */
            .mobile-sidebar-menu {
                display: block;
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                max-width: 85vw;
                height: 100vh;
                background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
                box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
                border-left: 3px solid rgba(59, 130, 246, 0.5);
                overflow-y: auto;
                overflow-x: hidden;
                z-index: 1002;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .mobile-sidebar-menu.active {
                right: 0;
            }

            .mobile-nav-menu {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            /* Custom Scrollbar for Mobile Sidebar */
            .mobile-sidebar-menu::-webkit-scrollbar {
                width: 6px;
            }

            .mobile-sidebar-menu::-webkit-scrollbar-track {
                background: rgba(15, 23, 42, 0.5);
            }

            .mobile-sidebar-menu::-webkit-scrollbar-thumb {
                background: rgba(59, 130, 246, 0.6);
                border-radius: 3px;
            }

            .mobile-sidebar-menu::-webkit-scrollbar-thumb:hover {
                background: rgba(59, 130, 246, 0.8);
            }

            /* Hide sidebar logo section on desktop */
            .sidebar-logo-section {
                display: none;
            }

            /* Sidebar Logo Section - Mobile Only */
            .nav-menu::before {
                content: '';
                display: block;
                background: linear-gradient(135deg, #1e40af 0%, #8b5cf6 100%);
                padding: 25px 20px;
                text-align: center;
                border-bottom: 2px solid rgba(59, 130, 246, 0.3);
                position: sticky;
                top: 0;
                z-index: 1;
            }

            .nav-menu::after {
                content: '';
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                z-index: 2;
            }

            /* Sidebar Logo Image */
            .mobile-sidebar-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px;
                background: linear-gradient(135deg, #1e40af 0%, #8b5cf6 100%);
                border-bottom: 2px solid rgba(59, 130, 246, 0.3);
                position: sticky;
                top: 0;
                z-index: 1;
            }

            .mobile-sidebar-title {
                color: white;
                font-size: 22px;
                font-weight: 700;
            }

            .sidebar-close-btn {
                position: absolute;
                top: 15px;
                right: 15px;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                font-size: 28px;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                line-height: 1;
                padding: 0;
                z-index: 1003;
            }

            .sidebar-close-btn:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: rotate(90deg);
            }

            .mobile-nav-menu > li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-nav-menu > li:last-child {
                border-bottom: none;
            }

            .mobile-nav-menu > li > a {
                padding: 16px 25px;
                border-radius: 0;
                width: 100%;
                font-size: 16px;
                border-right: none;
                color: #e2e8f0;
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 15px;
                transition: all 0.3s ease;
                font-weight: 500;
            }

            .mobile-nav-menu > li > a:hover,
            .mobile-nav-menu > li > a.active {
                background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
                color: #f8fafc;
                padding-left: 30px;
            }

            .mobile-nav-menu > li > a i {
                font-size: 20px;
                width: 28px;
                text-align: center;
                color: #3b82f6;
            }

            .mobile-nav-menu > li > a:hover i,
            .mobile-nav-menu > li > a.active i {
                color: #93c5fd;
            }

            .nav-menu > li > a::after {
                display: none;
            }

            .nav-menu > li.has-dropdown > a::after {
                content: '\f105';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                display: inline-block;
                margin-left: auto;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: static;
                transform: none;
                font-size: 12px;
                color: #64748b;
            }

            .nav-menu > li.has-dropdown.active > a::after {
                transform: rotate(90deg);
                color: #1e40af;
            }

            .nav-menu > li:hover > a,
            .nav-menu > li > a.active {
                background: transparent;
            }

            .mobile-nav-menu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                padding: 0;
                margin: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                background: rgba(15, 23, 42, 0.6);
                border-radius: 0;
                list-style: none;
            }

            .mobile-nav-menu > li.has-dropdown.active > .dropdown-menu {
                max-height: 500px;
            }

            .mobile-nav-menu .dropdown-menu a {
                padding: 14px 25px 14px 55px;
                border-left: 4px solid transparent;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                font-size: 15px;
                color: #cbd5e1;
                transition: all 0.3s ease;
                text-decoration: none;
                display: block;
            }

            .mobile-nav-menu .dropdown-menu a:hover,
            .mobile-nav-menu .dropdown-menu a.active {
                padding-left: 60px;
                border-left-color: #3b82f6;
                background: rgba(59, 130, 246, 0.15);
                color: #3b82f6;
            }

            .mobile-nav-menu > li.has-dropdown > a::after {
                content: '\f105';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                display: inline-block;
                margin-left: auto;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: static;
                transform: none;
                font-size: 12px;
                color: #cbd5e1;
            }

            .mobile-nav-menu > li.has-dropdown.active > a::after {
                transform: rotate(90deg);
                color: #3b82f6;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
    