        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

        :root {
            --primary: #0a1a3a;
            --primary-light: #1a4a8a;
            --bg-dark: #060d1a;
            --bg-card: #0f1f3a;
            --text-light: #e8edf5;
            --text-muted: #94a9c9;
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        * {
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', 'Inter', system-ui, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            min-height: 100vh;
            transition: background 0.3s, color 0.3s;
        }

        /* ===== LIGHT THEME ===== */
        body.light-theme {
            background: #ffffff;
            color: #0a1a3a;
        }

        body.light-theme .glass-card {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme #navbar {
            background: rgba(255, 255, 255, 0.92);
            border-bottom-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .nav-link {
            color: rgba(0, 0, 0, 0.6);
        }

        body.light-theme .nav-link:hover,
        body.light-theme .nav-link.active {
            background: rgba(0, 0, 0, 0.04);
            color: #000;
        }

        body.light-theme .gradient-hero {
            background: linear-gradient(145deg, #e8edf5 0%, #d0dcee 60%, #b8cae0 100%);
        }

        body.light-theme .hero-title .text-white {
            color: #0a1a3a !important;
        }

        body.light-theme .hero-title .text-transparent {
            background: linear-gradient(to left, #0a1a3a, #1a4a8a) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        body.light-theme html[dir="ltr"] .hero-title .text-transparent {
            background: linear-gradient(to right, #0a1a3a, #1a4a8a) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        body.light-theme .hero-title .hero-line2 {
            color: #0a1a3a !important;
        }

        body.light-theme .hero-title .hero-line1 {
            -webkit-text-fill-color: transparent !important;
            color: transparent !important;
        }

        body.light-theme .hero-title .text-transparent {
            -webkit-text-fill-color: transparent !important;
        }

        body.light-theme .hero-title .bg-gradient-to-l {
            background-image: linear-gradient(to left, #0a1a3a, #1a4a8a) !important;
        }

        body.light-theme html[dir="ltr"] .hero-title .bg-gradient-to-l {
            background-image: linear-gradient(to right, #0a1a3a, #1a4a8a) !important;
        }

        body.light-theme .hero-desc {
            color: #2a3a5a !important;
        }

        body.light-theme .city-badge {
            color: #1a4a8a !important;
            border-color: rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.6);
        }

        body.light-theme .section-badge {
            background: rgba(0, 0, 0, 0.04);
            color: #1a4a8a !important;
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .stat-number {
            color: #1a4a8a !important;
        }

        body.light-theme .stat-label {
            color: #4a5a7a !important;
        }

        body.light-theme .service-card {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .service-card:hover {
            border-color: rgba(0, 0, 0, 0.15);
        }



        body.light-theme .text-gray-300 {
            color: #3a3a5a !important;
        }

        body.light-theme .text-gray-400 {
            color: #5a5a7a !important;
        }

        body.light-theme .text-blue-400 {
            color: #1a4a8a !important;
        }

        body.light-theme .text-blue-300 {
            color: #1a4a8a !important;
        }

        body.light-theme .text-blue-200 {
            color: #2a4a7a !important;
        }

        body.light-theme .text-emerald-400 {
            color: #0d7a5a !important;
        }

        body.light-theme .text-amber-400 {
            color: #b8700a !important;
        }

        body.light-theme .text-violet-400 {
            color: #6a3a8a !important;
        }

        body.light-theme .bg-black\/20 {
            background: rgba(0, 0, 0, 0.03);
        }

        body.light-theme .bg-black\/30 {
            background: rgba(0, 0, 0, 0.02);
        }

        body.light-theme .bg-black\/40 {
            background: rgba(0, 0, 0, 0.03);
        }

        body.light-theme .border-white\/10 {
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .border-white\/5 {
            border-color: rgba(0, 0, 0, 0.04);
        }

        body.light-theme .bg-white\/5 {
            background: rgba(0, 0, 0, 0.03);
        }

        body.light-theme .bg-white\/10 {
            background: rgba(0, 0, 0, 0.04);
        }

        body.light-theme .bg-\[\#0a1a3a\] {
            background: #ffffff;
        }

        body.light-theme .bg-\[\#050b16\] {
            background: #e8edf5;
        }

        body.light-theme input,
        body.light-theme textarea {
            background: rgba(0, 0, 0, 0.03);
            border-color: rgba(0, 0, 0, 0.08);
            color: #1a1a2e;
        }

        body.light-theme input::placeholder,
        body.light-theme textarea::placeholder {
            color: #8a8aaa;
        }

        body.light-theme input:focus,
        body.light-theme textarea:focus {
            border-color: #1a4a8a;
            background: rgba(0, 0, 0, 0.05);
        }

        body.light-theme .lang-toggle button {
            color: rgba(0, 0, 0, 0.4);
        }

        body.light-theme .lang-toggle button.active {
            background: #1a4a8a;
            color: #fff;
        }

        body.light-theme .lang-toggle button:not(.active):hover {
            color: #000;
        }

        body.light-theme .btn-primary {
            background: #1a4a8a;
            color: #fff;
        }

        body.light-theme .btn-primary:hover {
            background: #0f2b5f;
        }

        body.light-theme .shimmer-btn {
            background: #1a4a8a !important;
            color: #fff !important;
        }

        body.light-theme .shimmer-btn:hover {
            background: #0f2b5f !important;
        }

        body.light-theme .btn-outline-light {
            border-color: rgba(0, 0, 0, 0.15);
            color: #1a1a2e;
        }

        body.light-theme .btn-outline-light:hover {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.25);
        }

        body.light-theme #mobile-menu {
            background: rgba(255, 255, 255, 0.98);
            border-top-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .mobile-link {
            color: rgba(0, 0, 0, 0.6);
        }

        body.light-theme .mobile-link:hover {
            background: rgba(0, 0, 0, 0.04);
            color: #000;
        }

        body.light-theme .modal-backdrop {
            background: rgba(0, 0, 0, 0.4);
        }

        body.light-theme #register-modal .bg-\[\#0a1a3a\] {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme #register-modal .bg-black\/30 {
            background: rgba(0, 0, 0, 0.03);
        }

        body.light-theme .step-list li::before {
            color: #1a4a8a;
        }

        body.light-theme .text-gray-500 {
            color: #5a5a7a !important;
        }

        body.light-theme .border-t-white\/10 {
            border-top-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .border-white\/20 {
            border-color: rgba(0, 0, 0, 0.08);
        }

        body.light-theme .bg-white\/5 {
            background: rgba(0, 0, 0, 0.03);
        }

        body.light-theme .text-white\/70 {
            color: rgba(0, 0, 0, 0.7) !important;
        }

        body.light-theme .text-white\/60 {
            color: rgba(0, 0, 0, 0.6) !important;
        }

        body.light-theme .text-white\/50 {
            color: rgba(0, 0, 0, 0.5) !important;
        }

        body.light-theme .text-white\/40 {
            color: rgba(0, 0, 0, 0.4) !important;
        }

        body.light-theme .text-white\/30 {
            color: rgba(0, 0, 0, 0.3) !important;
        }

        body.light-theme .text-white\/20 {
            color: rgba(0, 0, 0, 0.2) !important;
        }



        body.light-theme .text-gray-400 {
            color: #5a5a7a !important;
        }

        body.light-theme .text-gray-300 {
            color: #3a3a5a !important;
        }

        body.light-theme .text-gray-500 {
            color: #5a5a7a !important;
        }

        body.light-theme .text-gray-600 {
            color: #6a6a8a !important;
        }

        body.light-theme .text-gray-700 {
            color: #4a4a6a !important;
        }

        body.light-theme .text-gray-200 {
            color: #8a8aaa !important;
        }

        body.light-theme .border-gray-700 {
            border-color: rgba(0, 0, 0, 0.08);
        }

        body.light-theme .border-gray-600 {
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-theme .hover\:text-white:hover {
            color: #1a4a8a !important;
        }

        body.light-theme .hover\:text-gray-300:hover {
            color: #3a3a5a !important;
        }

        body.light-theme .hover\:bg-white\/10:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        body.light-theme .from-white\/10 {
            --tw-gradient-from: rgba(0, 0, 0, 0.04);
        }

        body.light-theme .to-white\/5 {
            --tw-gradient-to: rgba(0, 0, 0, 0.02);
        }

        body.light-theme .footer-links a {
            color: rgba(0, 0, 0, 0.5);
        }

        body.light-theme .footer-links a:hover {
            color: #1a4a8a;
        }

        body.light-theme .footer-social a {
            color: rgba(0, 0, 0, 0.4);
        }

        body.light-theme .footer-social a:hover {
            color: #1a4a8a;
        }

        body.light-theme .theme-toggle-btn {
            border-color: rgba(0, 0, 0, 0.08);
            color: rgba(0, 0, 0, 0.5);
        }

        body.light-theme .theme-toggle-btn:hover {
            background: rgba(0, 0, 0, 0.04);
            color: #000;
        }

        body.light-theme .footer-gradient {
            background: linear-gradient(180deg, rgba(240, 244, 250, 0.95) 0%, #e8edf5 100%);
        }

        body.light-theme .footer-divider {
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
        }

        /* ===== UTILITY ===== */
        .section-badge {
            display: inline-block;
            padding: 0.35rem 1.2rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.06);
            color: #8ab4ff;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 1rem;
        }

        .glass-card {
            background: rgba(15, 31, 58, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .hover-lift {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hover-lift:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .btn-primary {
            background: var(--primary-light);
            color: #fff;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(26, 58, 106, 0.4);
        }

        .btn-primary:hover {
            background: #2a5a8a;
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(26, 58, 106, 0.5);
        }

        .btn-primary:active {
            transform: scale(0.97);
        }

        .btn-outline-light {
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(8px);
            color: #fff;
            transition: all 0.3s;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .gradient-hero {
            background: linear-gradient(145deg, #050b16 0%, #0a1a3a 60%, #0f2b5f 100%);
            transition: background 0.3s;
        }

        .lang-toggle {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 100px;
            padding: 0.2rem;
            display: flex;
            gap: 0.1rem;
        }

        .lang-toggle button {
            padding: 0.3rem 0.9rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.3s;
            color: rgba(255, 255, 255, 0.5);
            border: none;
            background: transparent;
            cursor: pointer;
        }

        .lang-toggle button.active {
            background: var(--primary-light);
            color: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .lang-toggle button:not(.active):hover {
            color: #fff;
        }

        .stat-number {
            font-variant-numeric: tabular-nums;
        }

        /* ===== NAVBAR ===== */
        #navbar {
            background: rgba(6, 13, 26, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s, border-color 0.3s;
        }

        .nav-link {
            transition: all 0.3s;
            border-radius: 12px;
            padding: 0.5rem 1rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ===== RTL / LTR ===== */
        html[dir="ltr"] .section-title:after {
            left: 0;
            right: auto;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes shimmer {
            100% {
                transform: skewX(25deg) translateX(300%);
            }
        }

        .shimmer-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(to right, transparent 20%, rgba(255, 255, 255, 0.15) 50%, transparent 80%);
            transform: skewX(25deg);
            animation: shimmer 2.8s infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .float-anim {
            animation: float 5s ease-in-out infinite;
        }

        /* ===== MODAL ===== */
        .modal-backdrop {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 10px;
        }

        /* ===== INPUTS ===== */
        input,
        textarea,
        select {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
            transition: all 0.3s;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: var(--primary-light);
            outline: none;
            background: rgba(255, 255, 255, 0.06);
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        /* ===== MOBILE MENU ===== */
        #mobile-menu {
            background: rgba(6, 13, 26, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-link {
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s;
            border-radius: 12px;
        }

        .mobile-link:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 640px) {
            .hero-title {
                font-size: 2.5rem !important;
            }

            .glass-card {
                padding: 1.5rem !important;
            }
        }

        /* ===== SERVICE CARDS ===== */
        .service-card {
            background: rgba(15, 31, 58, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .step-list li {
            position: relative;
            padding-right: 1.8rem;
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .step-list li::before {
            content: attr(data-step);
            position: absolute;
            right: 0;
            top: 0;
            color: #4a8af4;
            font-weight: 700;
            font-size: 0.9rem;
        }

        html[dir="ltr"] .step-list li {
            padding-right: 0;
            padding-left: 1.8rem;
        }

        html[dir="ltr"] .step-list li::before {
            right: auto;
            left: 0;
        }

        /* ===== THEME TOGGLE ===== */
        .theme-toggle-btn {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: transparent;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.3rem;
        }

        .theme-toggle-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        /* ===== FOOTER ===== */
        .footer-gradient {
            background: linear-gradient(180deg, rgba(6, 13, 26, 0.95) 0%, #060d1a 100%);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-social a:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.04);
        }

        .footer-divider {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
            height: 1px;
        }

        /* LTR fix for hero */
        html[dir="ltr"] .hero-title .text-transparent {
            background: linear-gradient(to right, #fff, #8ab4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        body.light-theme html[dir="ltr"] .hero-title .text-transparent {
            background: linear-gradient(to right, #0a1a3a, #1a4a8a) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        html[dir="ltr"] .hero-title .text-white {
            color: #fff !important;
        }

        body.light-theme html[dir="ltr"] .hero-title .text-white {
            color: #0a1a3a !important;
        }

        /* ===== FIX: Make sure hero text shows in light theme ===== */
        body.light-theme .hero-title .text-transparent {
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        body.light-theme .hero-title .hero-line1 {
            -webkit-text-fill-color: transparent !important;
            color: transparent !important;
        }

        body.light-theme .hero-title .hero-line2 {
            color: #0a1a3a !important;
            -webkit-text-fill-color: #0a1a3a !important;
        }