        :root {
            --primary-color: #0a4d8c;
            --secondary-color: #f8f8f8;
            --accent-color: #ff6b00;
            --text-dark: #333;
            --text-light: #777;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            transition: font-family 0.3s ease;
            direction: rtl;
        }

        /* LTR Support */
        body[dir="ltr"] {
            font-family: 'Poppins', sans-serif;
            direction: ltr;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        body[dir="ltr"] .header-content {
            flex-direction: row;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.1);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--accent-color);
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        body[dir="ltr"] nav ul {
            flex-direction: row;
        }

        nav ul li {
            margin-left: 30px;
        }

        body[dir="ltr"] nav ul li {
            margin-left: 30px;
            margin-right: 0;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 400;
            font-size: 0.8em;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .quote-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.8em;
            transition: background-color 0.3s;
        }

        .quote-btn:hover {
            background-color: #e55a00;
        }

        .language-switcher {
            display: flex;
            align-items: center;
            margin-left: 20px;
            position: relative;
        }

        body[dir="ltr"] .language-switcher {
            margin-left: 20px;
            margin-right: 0;
        }

        .language-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 400;
            font-size: 0.8em;
            transition: all 0.3s;
        }

        .language-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            margin-top: 5px;
            display: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        body[dir="ltr"] .language-dropdown {
            right: auto;
            left: 0;
        }

        .language-dropdown.active {
            display: block;
        }

        .language-option {
            padding: 10px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
            font-size: 0.8em;
        }

        .language-option:hover {
            background-color: var(--secondary-color);
        }

        /* Egyptian Flag Icon */
        .flag-egypt {
            position: relative;
            display: inline-block;
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #ce1126 33.33%, white 33.33%, white 66.66%, #000 66.66%);
            border-radius: 2px;
        }

        .flag-egypt::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 8px solid #c0952d;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 77, 140, 0.8), rgba(10, 77, 140, 0.8)), url('img/aabaum.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 60px;
            margin-bottom: 20px;
            letter-spacing: 2px;
            animation: fadeInDown 1s ease;
        }

        .hero-content h2 {
            font-size: 30px;
            font-weight: 400;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .hero-btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            animation: fadeInUp 1.2s ease;
        }

        .hero-btn:hover {
            background-color: #e55a00;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 40px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        body[dir="ltr"] .about-content {
            flex-direction: row;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .mission-vision {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .mission, .vision {
            flex: 1;
            min-width: 250px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .mission h3, .vision h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 24px;
        }

        .mission p, .vision p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--accent-color);
            transform: scale(1.1) rotate(5deg);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 22px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-content h3 {
            color: var(--accent-color);
        }

        .service-content p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }

        /* Contact Map Section */
        .contact-map-section {
            padding: 80px 0;
            background-color: #f8f8f8;
        }

        .contact-map-section .section-title h2 {
            color: var(--primary-color);
        }

        .contact-map-section .section-title h2::after {
            background-color: var(--accent-color);
        }

        .map-contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        body[dir="ltr"] .map-contact-wrapper {
            grid-template-columns: 1fr 1fr;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            min-height: 450px;
        }

        .detailed-contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .contact-info-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
        }

        body[dir="ltr"] .contact-info-card {
            flex-direction: row;
            text-align: left;
        }

        body[dir="rtl"] .contact-info-card {
            flex-direction: row-reverse;
            justify-content: flex-end;
            text-align: right;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .info-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .info-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 5px;
        }

        .info-content a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: var(--primary-color);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        body[dir="ltr"] .contact-content {
            flex-direction: row;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: none;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

        body[dir="ltr"] .form-group input,
        body[dir="ltr"] .form-group textarea {
            text-align: left;
        }

        body[dir="rtl"] .form-group input,
        body[dir="rtl"] .form-group textarea {
            text-align: right;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin: 0 auto 50px auto;
        }

        .submit-btn:hover {
            background-color: #083c6f;
        }

        .form-status {
            display: none;
            margin-top: -30px;
            margin-bottom: 30px;
            padding: 14px 18px;
            border-radius: 8px;
            font-size: 0.95rem;
            line-height: 1.5;
            border: 1px solid transparent;
        }

        .form-status ul {
            margin: 8px 0 0 18px;
            padding: 0;
        }

        body[dir="rtl"] .form-status ul {
            margin-left: 0;
            margin-right: 18px;
        }

        .form-status.visible {
            display: block;
        }

        .form-status.success {
            background-color: #ebfff2;
            border-color: #9ae6b4;
            color: #276749;
        }

        .form-status.error {
            background-color: #fff5f5;
            border-color: #feb2b2;
            color: #c53030;
        }

        .form-status.info {
            background-color: #edf2ff;
            border-color: #a3bffa;
            color: #2c5282;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        body[dir="ltr"] .contact-item {
            flex-direction: row;
        }

        body[dir="rtl"] .contact-item {
            flex-direction: row-reverse;
        }

        .contact-icon {
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
            flex-shrink: 0;
        }

        body[dir="ltr"] .contact-icon {
            margin-right: 20px;
            margin-left: 0;
        }

        body[dir="rtl"] .contact-icon {
            margin-right: 0;
            margin-left: 20px;
        }

        .contact-details h3 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-details p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--accent-color);
        }

        .footer-language {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-language .language-btn {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.8em;
        }

        .footer-language .language-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: white;
        }

        .footer-language .language-dropdown {
            background-color: var(--primary-color);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-language .language-option {
            font-size: 0.8em;
            color: white;
        }

        .footer-language .language-option:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .copright{
            text-decoration: none;
            color: white;
        }
        .copright a:hover {
            color: var(--accent-color);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 50px;
            }

            .hero-content h2 {
                font-size: 24px;
            }

            .logo-text {
                font-size: 24px;
            }

            nav ul li a {
                font-size: 0.75em;
            }

            .quote-btn {
                font-size: 0.75em;
            }

            .language-btn {
                font-size: 0.75em;
            }

            .language-option {
                font-size: 0.75em;
            }

            .map-contact-wrapper {
                grid-template-columns: 1fr;
            }

            .map-container {
                min-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s;
            }

            body[dir="ltr"] nav {
                left: 0;
                right: auto;
            }

            body[dir="rtl"] nav {
                left: 0;
                right: auto;
            }

            nav.active {
                max-height: 500px;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
            }

            body[dir="ltr"] nav ul {
                flex-direction: column;
            }

            body[dir="rtl"] nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 10px 0;
            }

            body[dir="ltr"] nav ul li {
                margin-left: 0;
                margin-right: 0;
            }

            body[dir="rtl"] nav ul li {
                margin-left: 0;
                margin-right: 0;
            }

            .quote-btn {
                display: none;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-content h2 {
                font-size: 20px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .logo-img {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 20px;
            }

            .language-switcher {
                margin-left: 0;
                margin-top: 10px;
            }

            body[dir="ltr"] .language-switcher {
                margin-left: 0;
                margin-right: 0;
                margin-top: 10px;
            }

            body[dir="rtl"] .language-switcher {
                margin-left: 0;
                margin-right: 0;
                margin-top: 10px;
            }

            nav ul li a {
                font-size: 0.85em;
            }

            .language-btn {
                font-size: 0.85em;
            }

            .language-option {
                font-size: 0.85em;
            }

            .footer-language .language-btn {
                font-size: 0.85em;
            }

            .footer-language .language-option {
                font-size: 0.85em;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 30px;
            }

            .hero-content h2 {
                font-size: 18px;
            }

            .logo-container {
                gap: 8px;
            }

            .logo-img {
                width: 35px;
                height: 35px;
            }

            .logo-text {
                font-size: 18px;
            }

            .header-content {
                padding: 10px 0;
            }

            nav ul li a {
                font-size: 0.9em;
            }

            .language-btn {
                font-size: 0.9em;
            }

            .language-option {
                font-size: 0.9em;
            }

            .footer-language .language-btn {
                font-size: 0.9em;
            }

            .footer-language .language-option {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 16px;
            }

            .logo-img {
                width: 30px;
                height: 30px;
            }

            nav ul li a {
                font-size: 0.95em;
            }

            .language-btn {
                font-size: 0.95em;
            }

            .language-option {
                font-size: 0.95em;
            }

            .footer-language .language-btn {
                font-size: 0.95em;
            }

            .footer-language .language-option {
                font-size: 0.95em;
            }
        }