        :root {
            --primary-blue: #0066cc;
            --dark-blue: #004d99;
            --light-blue: #e6f0ff;
            --accent-blue: #0088ff;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --dark-gray: #333;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* RTL language support */
        html[dir="rtl"] body {
            font-family: 'Cairo', sans-serif;
            text-align: right;
        }

        html[dir="rtl"] h1,
        html[dir="rtl"] h2,
        html[dir="rtl"] h3,
        html[dir="rtl"] h4 {
            font-family: 'Cairo', sans-serif;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-blue);
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Language switcher */
        .language-switcher {
            position: relative;
            margin-left: 20px;
        }

        html[dir="rtl"] .language-switcher {
            margin-left: 0;
            margin-right: 20px;
        }

        .lang-btn {
            background: var(--light-blue);
            color: var(--dark-blue);
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-btn:hover {
            background: var(--primary-blue);
            color: white;
        }

        .lang-btn .fas {
            font-size: 1rem;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 100px;
            width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            overflow: hidden;
        }

        .logo-img {
            max-width: 100%;
            max-height: 100%;
            display: block;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        html[dir="rtl"] .nav-links {
            padding-right: 0;
        }

        .nav-links li {
            margin-left: 30px;
        }

        html[dir="rtl"] .nav-links li {
            margin-left: 0;
            margin-right: 30px;
        }

        .nav-links a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: var(--transition);
        }

        html[dir="rtl"] .nav-links a:after {
            left: auto;
            right: 0;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark-blue);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
            z-index: 2;
            text-align: center;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary-blue);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #555;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-blue);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 10px;
            border: 2px solid var(--primary-blue);
        }

        .cta-button:hover {
            background: var(--dark-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
        }

        .cta-button.outline {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .cta-button.outline:hover {
            background: var(--primary-blue);
            color: var(--white);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
            position: relative;
            border-top: 4px solid var(--primary-blue);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .service-card p {
            color: #555;
            margin-bottom: 25px;
        }

        /* Video Reels Section */
        .video-reels {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }
        
        .reels-wrapper {
            overflow: hidden;
            -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
            mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #666;
        }

        .reels-container {
            display: flex;
            width: max-content;
            flex-wrap: nowrap;
            gap: 30px; /* Use gap for spacing between items */
        }
        
        [data-animated="true"] .reels-container {
            animation: scroll-ltr 40s linear infinite;
        }

        html[dir="rtl"] [data-animated="true"] .reels-container {
            animation-name: scroll-rtl;
        }

        [data-animated="true"]:hover .reels-container {
            animation-play-state: paused;
        }

        @keyframes scroll-ltr {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @keyframes scroll-rtl {
            from { transform: translateX(0); }
            to { transform: translateX(50%); }
        }
        
        .reel-item {
            width: 250px;
            height: 350px;
            margin: 0; /* Margins are now handled by gap */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            flex-shrink: 0;
            cursor: pointer;
            border: 2px solid var(--light-blue);
        }

        .reel-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
        }

        .reel-thumbnail {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .reel-thumbnail video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .reel-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .reel-item:hover .reel-thumbnail img {
            transform: scale(1.1);
        }

        .reel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .reel-item:hover .reel-overlay {
            transform: translateY(0);
        }

        .reel-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .reel-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 102, 204, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .reel-item:hover .play-icon {
            opacity: 1;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .about-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .image-placeholder {
           height: 220px;
           width: 100%;
           background: var(--light-blue);
           border-radius: 8px;
           overflow: hidden;
           border: 1px solid var(--primary-blue);
           display: flex;
           align-items: stretch;
           justify-content: stretch;
           padding: 0;
        }

        .placeholder-content {
           width: 100%;
           height: 100%;
           display: flex;
           align-items: stretch;
           justify-content: stretch;
           background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
           padding: 0;
        }
        .placeholder-content img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           object-position: center;
           display: block;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border-top: 3px solid var(--primary-blue);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 600;
        }

        /* Equipment Section */
        .equipment {
            padding: 100px 0;
            background: var(--white);
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .equipment-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
        }

        .equipment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
            background: var(--white);
        }

        .equipment-icon {
            font-size: 3.5rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }

        .equipment-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .equipment-card p {
            color: #555;
            margin-bottom: 25px;
        }

        /* Contact Us Section */
        .contact-us {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        html[dir="rtl"] .form-group input,
        html[dir="rtl"] .form-group textarea {
            font-family: 'Cairo', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
        }

        .submit-btn:hover {
            background: var(--dark-blue);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            padding: 70px 0 30px;
            color: var(--white);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-blue);
        }

        html[dir="rtl"] .footer-column h4:after {
            left: auto;
            right: 0;
        }

        .footer-column p {
            color: #ddd;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        html[dir="rtl"] .social-links {
            padding-right: 0;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-blue);
            color: var(--white);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        html[dir="rtl"] .footer-links {
            padding-right: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        html[dir="rtl"] .footer-links a .fas {
            margin-right: 0;
            margin-left: 10px;
        }

        .footer-links a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }

        html[dir="rtl"] .footer-links a:hover {
            transform: translateX(-5px);
        }

        .footer-links a .fas {
            margin-right: 10px;
            color: var(--accent-blue);
            font-size: 0.8rem;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-image-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            html[dir="rtl"] .nav-links {
                left: auto;
                right: -100%;
            }

            .nav-links.active {
                left: 0;
            }

            html[dir="rtl"] .nav-links.active {
                left: auto;
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title h2 {
                font-size: 2.3rem;
            }

            .reel-item {
                width: 220px;
                height: 320px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .about-image-grid {
                grid-template-columns: 1fr;
            }

            .language-switcher {
                margin-left: 10px;
                order: -1;
            }

            html[dir="rtl"] .language-switcher {
                margin-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }

            .reel-item {
                width: 200px;
                height: 300px;
            }
            
            .reels-container {
                gap: 20px;
            }

            .cta-button {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .contact-form {
                padding: 20px;
            }
        }