:root {
            --primary: #0A0F1E;
            --accent-1: #00F5FF;
            --accent-2: #7B2FFF;
            --accent-3: #FF3CAC;
            --gold: #FFD700;
            --surface: #0D1B2A;
            --surface-glass: rgba(13, 27, 42, 0.6);
            --text-light: #E8F4F8;
            --text-muted: #A0B2C6;
            --gradient-hero: linear-gradient(135deg, #0A0F1E 0%, #1a0533 50%, #0A0F1E 100%);
            --font-ar: 'Cairo', sans-serif;
            --font-en: 'Syne', sans-serif;
            --font-current: var(--font-ar);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        html[dir="ltr"] {
            --font-current: var(--font-en);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-current);
            background-color: var(--primary);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        /* Abstract Background Orbs */
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: -1;
            opacity: 0.4;
            animation: float 25s infinite alternate ease-in-out;
        }
        .orb-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(123, 47, 255, 0.3); }
        .orb-2 { top: 40%; right: -20%; width: 60vw; height: 60vw; background: rgba(0, 245, 255, 0.2); animation-delay: -5s; }
        .orb-3 { bottom: -10%; left: 20%; width: 40vw; height: 40vw; background: rgba(255, 60, 172, 0.2); animation-delay: -10s; }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(5%, 10%) scale(1.1); }
            100% { transform: translate(-5%, -5%) scale(0.9); }
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 120px 0;
        }

        .text-center { text-align: center; }
        .text-accent { color: var(--accent-1); }
        .text-gold { color: var(--gold); }
        
        .gradient-text {
            background: linear-gradient(to right, var(--accent-1), var(--accent-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 4rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-family: inherit;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent-2), var(--accent-1));
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
            z-index: -1;
            transition: opacity 0.4s ease;
            opacity: 0;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.5);
        }
        
        .btn-primary:hover::before {
            opacity: 1;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 0;
            z-index: 100;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 1rem 0;
            background: rgba(10, 15, 30, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            object-fit: contain;
            border-radius: 6px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-1);
            transition: var(--transition);
            box-shadow: 0 0 10px var(--accent-1);
        }

        .nav-link:hover {
            color: var(--accent-1);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .lang-toggle {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .lang-toggle:hover {
            background: rgba(0, 245, 255, 0.1);
            border-color: var(--accent-1);
            color: var(--accent-1);
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--accent-1);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            background: rgba(0, 245, 255, 0.05);
            border: 1px solid rgba(0, 245, 255, 0.3);
            border-radius: 50px;
            color: var(--accent-1);
            font-weight: 700;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            letter-spacing: 2px;
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        .hero-spline {
            width: 100%;
            height: 650px;
            position: relative;
        }
        
        .hero-spline spline-viewer {
            width: 100%;
            height: 100%;
            pointer-events: none; /* Allows interacting with underlying elements */
        }
        
        /* Fallback background if Spline fails/loading */
        .hero-spline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            animation: pulse 4s infinite alternate ease-in-out;
            z-index: -1;
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
            100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            gap: 12px;
            opacity: 0.7;
            animation: bounce 2s infinite;
            z-index: 10;
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid var(--text-muted);
            border-radius: 13px;
            position: relative;
        }

        .scroll-indicator .wheel {
            width: 4px;
            height: 8px;
            background: var(--text-muted);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 1.5s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-10px) translateX(-50%); }
            60% { transform: translateY(-5px) translateX(-50%); }
        }

        @keyframes scroll {
            0% { top: 6px; opacity: 1; }
            100% { top: 20px; opacity: 0; }
        }

        /* Stats Section */
        .stats-section {
            background: rgba(13, 27, 42, 0.8);
            backdrop-filter: blur(20px);
            position: relative;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 0;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 0;
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
        }

        html[dir="ltr"] .stat-item:not(:last-child)::after {
            right: auto;
            left: 100%;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
        }

        .stat-number span {
            color: var(--accent-1);
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Section */
        .services-section {
            position: relative;
            z-index: 10;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: var(--surface-glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        html[dir="rtl"] .service-card::before {
            transform-origin: right;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 255, 0.15);
            border-color: rgba(0, 245, 255, 0.3);
            background: rgba(13, 27, 42, 0.9);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 245, 255, 0.05);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-1);
            font-size: 2rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 245, 255, 0.1);
        }

        .service-card:hover .service-icon {
            background: var(--accent-1);
            color: var(--primary);
            box-shadow: 0 0 25px var(--accent-1);
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
        }

        .service-desc {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(180deg, var(--primary) 0%, var(--surface) 100%);
            position: relative;
            z-index: 10;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            border-radius: 24px;
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: contain;
        }

        .about-shape {
            position: absolute;
            top: -25px;
            right: -25px;
            width: 100%;
            height: 100%;
            border: 2px dashed var(--accent-2);
            border-radius: 24px;
            z-index: 1;
            animation: rotateShape 20s linear infinite;
        }

        @keyframes rotateShape {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(2deg); }
        }

        html[dir="rtl"] .about-shape {
            right: auto;
            left: -25px;
            animation: rotateShapeRTL 20s linear infinite;
        }

        @keyframes rotateShapeRTL {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-2deg); }
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .about-content p {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.8;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .mv-card {
            background: rgba(255,255,255,0.02);
            padding: 2rem;
            border-radius: 20px;
            border-left: 3px solid var(--accent-3);
            transition: var(--transition);
        }

        html[dir="rtl"] .mv-card {
            border-left: none;
            border-right: 3px solid var(--accent-3);
        }

        .mv-card:hover {
            background: rgba(255,255,255,0.05);
            transform: translateY(-5px);
        }

        .mv-card h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .mv-card p {
            font-size: 1rem;
            margin: 0;
            color: var(--text-light);
        }

        /* Partners Section */
        .partners-section {
            position: relative;
            z-index: 10;
            background: var(--surface);
        }

        .partners-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 4rem;
        }

        .partner-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 24px;
            padding: 3.5rem 3rem;
            text-align: center;
            min-width: 320px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .partner-card::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.05), transparent);
            transform: skewX(-25deg);
            transition: 0.8s;
        }

        .partner-card:hover::after {
            left: 150%;
        }

        .partner-card:hover {
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.05);
        }

        .partner-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            border: 1px dashed rgba(255, 215, 0, 0.3);
            transition: var(--transition);
        }

        .partner-card:hover .partner-icon {
            background: rgba(255, 215, 0, 0.15);
            transform: scale(1.1);
        }

        .partner-icon svg {
            width: 45px;
            height: 45px;
        }

        .partner-name {
            font-size: 1.75rem;
            color: #fff;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .partner-role {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(0deg, var(--primary) 0%, var(--surface) 100%);
            position: relative;
            z-index: 10;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            background: var(--surface-glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 32px;
            padding: 5rem;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: rgba(0, 245, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-1);
            flex-shrink: 0;
            transition: var(--transition);
            border: 1px solid rgba(0, 245, 255, 0.1);
        }

        .contact-item:hover .contact-icon {
            background: var(--accent-1);
            color: var(--primary);
            box-shadow: 0 0 20px var(--accent-1);
            transform: scale(1.1);
        }

        .contact-text h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
        }

        .contact-text p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }

        .form-control {
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: #fff;
            font-family: inherit;
            font-size: 1.05rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-1);
            background: rgba(0, 245, 255, 0.03);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 180px;
        }

        .btn-submit {
            align-self: flex-start;
            margin-top: 1rem;
            background: var(--accent-1);
            color: var(--primary);
            border-radius: 12px;
            padding: 1.2rem 3rem;
        }
        
        .btn-submit:hover {
            box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
            background: #fff;
        }
        .btn-submit::before { display: none; }

        /* Footer */
        .footer {
            background: #03050B;
            padding: 5rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2.5rem;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }
        
        .footer-logo img {
            height: 65px;
            object-fit: contain;
            border-radius: 8px;
        }

        .footer-tagline {
            color: var(--text-muted);
            max-width: 450px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .footer-socials {
            display: flex;
            gap: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--accent-1);
            border-color: var(--accent-1);
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 245, 255, 0.2);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.95rem;
        }

        .footer-bottom a {
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--accent-1);
        }

        /* Animations & Responsive */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay classes */
        .d-1 { transition-delay: 0.1s; }
        .d-2 { transition-delay: 0.2s; }
        .d-3 { transition-delay: 0.3s; }
        .d-4 { transition-delay: 0.4s; }

        @media (max-width: 1200px) {
            .hero-title { font-size: 3.8rem; }
            .contact-container { padding: 4rem 3rem; }
        }

        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
            .hero-content { margin: 0 auto; }
            .hero-badge { margin: 0 auto 2rem; }
            .hero-spline { grid-row: 1; height: 500px; }
            
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .stat-item:not(:last-child)::after { display: none; }
            
            .about-grid { grid-template-columns: 1fr; gap: 4rem; }
            .about-visual { max-width: 600px; margin: 0 auto; }
            
            .contact-container { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background: rgba(10, 15, 30, 0.98);
                backdrop-filter: blur(25px);
                flex-direction: column;
                justify-content: center;
                transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
                z-index: 100;
                box-shadow: -10px 0 30px rgba(0,0,0,0.5);
            }

            html[dir="rtl"] .nav-links {
                right: auto;
                left: -100%;
                box-shadow: 10px 0 30px rgba(0,0,0,0.5);
            }

            .nav-links.active {
                right: 0;
            }

            html[dir="rtl"] .nav-links.active {
                left: 0;
                right: auto;
            }

            .mobile-menu-btn { display: block; }
            
            .hero-title { font-size: 2.8rem; }
            .hero-spline { height: 400px; }
            
            .section-title { font-size: 2.2rem; }
            .section-padding { padding: 80px 0; }
            
            .services-grid { grid-template-columns: 1fr; }
            .mission-vision { grid-template-columns: 1fr; }
            .form-group { grid-template-columns: 1fr; }
            
            .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
            .contact-container { padding: 3rem 2rem; }
        }

        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .hero-title { font-size: 2.3rem; }
            .btn { padding: 1rem 2rem; width: 100%; }
        }
