
        /********************************************************** CSS Code ****************************************************/
        :root {
            --primary-color: #2a5d84;
            --secondary-color: #e74c3c;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: #f8f9fa;
        }


/************************************************************ Navbar ************************************************************/
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            justify-content: center;
            align-items: center;
        }

        .navbar .nav-link {
            font-weight: bold;
        }

        /* في الموبايل نخلي الروابط بالوسط */
        @media (max-width: 991.98px) {
            .navbar-nav {
                text-align: center;   /* النص بالوسط */
                margin: 0 auto;       /* يخليها تتمركز */
            }

            .navbar-nav .nav-item {
                width: 70%;  
                margin-right: 83px;
            }

            .navbar-nav .nav-link {
                display: inline-block; /* يخلي الرابط نفسه بالوسط */
                padding: 0.8rem 0;     /* مساحة فوق وتحت */
            }
        }
/********************************************************** Navbar *************************************************************/


        .hero-section {
            background: linear-gradient(45deg, #f8f9fa 50%, var(--primary-color) 150%);
            padding: 100px 0;
        }

        .gallery-img {
            border-radius: 12px;
            transition: transform 0.3s;
            height: 250px;
            object-fit: cover;
        }

        .gallery-img:hover {
            transform: scale(1.03);
        }

        footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0;
        }

        .contact-info li {
            margin-bottom: 10px;
        }

        .gallery-section .card {
            border: none;
            transition: transform 0.3s;
            overflow: hidden;
        }

        .gallery-section .card-img-top {
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-section .card:hover {
            transform: translateY(-10px);
        }

        .gallery-section .card:hover .card-img-top {
            transform: scale(1.05);
        }

        .newsletter-form input {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .social-links .btn {
            transition: all 0.3s;
        }

        .social-links .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-instagram {
            background: #cc255c;
            border-color: #cc255c;
        }

        .btn-black {
            background: #000;
            border-color: #000;
        }

        .owl-nav button {
            display: none !important;
            /* إخفاء الأزرار الافتراضية */
        }

        /* الأزرار المخصصة خارج الـ container */
        .custom-owl-prev,
        .custom-owl-next {
            background: rgba(42, 93, 132, 0.9) !important;
            color: white !important;
            width: 55px;
            height: 55px;
            border-radius: 50% !important;
            border: none !important;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
            z-index: 1000;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(42, 93, 132, 0.2);
        }

        .custom-owl-prev:hover,
        .custom-owl-next:hover {
            background: var(--primary-color) !important;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(42, 93, 132, 0.4);
        }

        .custom-owl-prev {
            left: -30px;
        }

        .custom-owl-next {
            right: -30px;
        }

        .custom-owl-prev i,
        .custom-owl-next i {
            font-size: 18px;
        }

        /* الـ container الخاص بالسلايدر */
        .gallery-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .owl-nav button span {
            font-size: 20px;
            line-height: 50px;
        }

        /* أنماط السلايدر المحسنة */
        .gallery-carousel {
            position: relative;
            padding: 0;
        }

        .gallery-carousel .owl-stage-outer {
            overflow: visible;
        }

        /* أنماط النقاط */
        .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .owl-dots .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            display: block;
            transition: all 0.3s ease;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        /* تحسين بطاقات المشاريع */
        .gallery-carousel .card {
            border: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            border-radius: 15px;
        }

        .gallery-carousel .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .gallery-carousel .card-img-top {
            transition: transform 0.3s ease;
        }

        .gallery-carousel .card:hover .card-img-top {
            transform: scale(1.05);
        }

        /* تحسين الاستجابة للشاشات الصغيرة */
        @media (max-width: 768px) {
            .gallery-slider-container {
                padding: 0 50px;
            }

            .custom-owl-prev {
                left: -20px;
                width: 45px;
                height: 45px;
            }

            .custom-owl-next {
                right: -20px;
                width: 45px;
                height: 45px;
            }

            .custom-owl-prev i,
            .custom-owl-next i {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .gallery-slider-container {
                padding: 0 40px;
            }

            .custom-owl-prev {
                left: -15px;
                width: 40px;
                height: 40px;
            }

            .custom-owl-next {
                right: -15px;
                width: 40px;
                height: 40px;
            }

            .custom-owl-prev i,
            .custom-owl-next i {
                font-size: 14px;
            }
        }

        .project-card {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* أنماط البطاقة الثابتة */
        .project-card {
            width: 300px;
            /* عرض ثابت */
            height: 400px;
            /* ارتفاع ثابت */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 15px auto;
            /* توسيط البطاقة */
            display: flex;
            flex-direction: column;
        }

        .project-card img {
            width: 100%;
            height: 70%;
            /* 70% من ارتفاع البطاقة */
            object-fit: cover;
            object-position: center;
            flex-shrink: 0;
        }

        .project-info {
            height: 30%;
            /* 30% المتبقية */
            padding: 1rem;
            background: #2a5d84;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /*********************** تعديلات السلايدر للتكيف مع الأبعاد الثابتة ***************************************************/
        /* تعديلات السلايدر للتكيف مع الأبعاد الثابتة */

        /* حاوي السلايدر الرئيسي */
        .clients-carousel {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* تعديل عرض المرحلة للحصول على توسيط أفضل */
        .clients-carousel .owl-stage-outer {
            overflow: hidden;
        }

        .clients-carousel .owl-stage {
            display: flex;
            align-items: center;
            /* لا تستخدم justify-content: center هنا لأنه يكسر الانتقالات */
        }

        /* توسيط العناصر داخل كل عنصر */
        .clients-carousel .owl-item {
            display: flex;
            justify-content: center;
            align-items: center;
            /* تأكد من أن العنصر يحتفظ بالمرونة */
            flex: 0 0 auto;
        }

        /* تنسيق عناصر العملاء */
        .clients-carousel .client-item {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 10px;
            min-height: 120px; /* ارتفاع ثابت */
            width: 100%;
        }

        /* تنسيق الصور */
        .clients-carousel .client-item img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease, opacity 0.3s ease;
            filter: grayscale(20%);
        }

        /* تأثيرات التفاعل */
        .clients-carousel .client-item img:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 1;
        }

        /* تخصيص النقاط */
        .clients-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
            padding: 0;
        }

        .clients-carousel .owl-dot {
            display: inline-block;
            margin: 0 8px;
            cursor: pointer;
        }

        .clients-carousel .owl-dot span {
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .clients-carousel .owl-dot.active span,
        .clients-carousel .owl-dot:hover span {
            background: #007bff;
            border-color: rgba(0, 123, 255, 0.3);
            transform: scale(1.2);
        }

        /* تعديلات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .clients-carousel .client-item {
                min-height: 100px;
                padding: 10px 5px;
            }
            
            .clients-carousel .client-item img {
                max-height: 60px;
            }
        }

        /* تعديلات للشاشات الكبيرة */
        @media (min-width: 1200px) {
            .clients-carousel .client-item {
                min-height: 140px;
                padding: 20px 15px;
            }
            
            .clients-carousel .client-item img {
                max-height: 90px;
            }
        }

        /* إضافة تأثير التحميل */
        .clients-carousel.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .clients-carousel.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 30px;
            margin: -15px 0 0 -15px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #007bff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }





        @media (max-width: 768px) {
            .project-card {
                width: 300px;
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .project-card {
                width: 280px;
                height: 330px;
            }
        }

        /* Fixed hero image centering */
        .hero-img {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 0 auto;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hero-img {
                margin-top: 2rem;
                padding: 0 15px;
                /* Prevents edge touching */
            }

            .hero-img img {
                width: calc(100% - 30px);
                /* Ensures margins */
            }
        }

        .payment-methods {
            direction: rtl;
        }

        /* تصميم جديد مبدع لطرق الدفع */
        .payment-methods-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .payment-method-item {
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
        }

        .payment-method-item:hover {
            transform: translateY(-5px);
        }

        .payment-icon-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .payment-icon-circle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary-color), #28a745, #17a2b8, #6f42c1);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .payment-method-item:hover .payment-icon-circle::before {
            opacity: 1;
        }

        /* ألوان مخصصة لكل طريقة دفع */
        .cash-payment:hover .payment-icon-circle::before {
            background: linear-gradient(45deg, #28a745, #20c997, #17a2b8);
        }

        .mada-payment:hover .payment-icon-circle::before {
            background: linear-gradient(45deg, #6f42c1, #e83e8c, #fd7e14);
        }

        .tabby-payment:hover .payment-icon-circle::before {
            background: linear-gradient(45deg, #20c997, #17a2b8, #6610f2);
        }

        .tamara-payment:hover .payment-icon-circle::before {
            background: linear-gradient(45deg, #e83e8c, #fd7e14, #ffc107);
        }

        .bank-payment:hover .payment-icon-circle::before {
            background: linear-gradient(45deg, var(--primary-color), #17a2b8, #6f42c1);
        }

        .payment-method-item:hover .payment-icon-circle {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        .payment-icon-circle i {
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .payment-method-item:hover .payment-icon-circle i {
            transform: scale(1.1);
        }

        .payment-img {
            max-width: 45px;
            max-height: 45px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .payment-method-item:hover .payment-img {
            transform: scale(1.1);
        }

        .payment-title {
            color: #333;
            font-weight: 600;
            margin: 0;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .payment-method-item:hover .payment-title {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* تصميم خاص للشاشات الصغيرة */
        @media (max-width: 767px) {
            .payment-methods-container .row {
                justify-content: center;
            }

            .payment-methods-container .row>div {
                flex: 0 0 auto;
                width: auto;
                margin: 0 8px;
            }

            .payment-icon-circle {
                width: 50px;
                height: 50px;
                margin: 0 auto 8px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            .payment-icon-circle i {
                font-size: 20px;
            }

            .payment-img {
                max-width: 30px;
                max-height: 30px;
            }

            .payment-title {
                display: none;
                /* إخفاء أسماء طرق الدفع في الشاشات الصغيرة */
            }

            .payment-method-item {
                padding: 5px;
                margin-bottom: 0;
            }
        }

        /* شريط الأمان */
        .security-strip {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            padding: 15px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .security-content {
            flex-wrap: wrap;
            gap: 10px;
        }

        .security-text {
            color: #666;
            font-weight: 500;
            font-size: 14px;
        }

        .security-strip i {
            font-size: 16px;
        }

        /* أنماط الفوتر الاحترافي */
        .contact-info-section {
            position: relative;
            overflow: hidden;
        }

        /* خلفية هندسية للفوتر */
        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
        }

        .pattern-circles::before,
        .pattern-circles::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .pattern-circles::before {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .pattern-circles::after {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

        .pattern-dots {
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            width: 100%;
            height: 100%;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* تنسيق العناوين */
        .footer-headers {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 2rem;
        }

        .footer-section {
            height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            border-radius: 2px;
        }

        /* تنسيق اللوجو */
        .footer-logo {
            width: 140px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin: 0;
            max-width: 250px;
        }

        /* تنسيق معلومات الاتصال */
        .contact-list {
            margin: 0;
            padding: 0;
        }


        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffd700, #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .contact-icon i {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .contact-text span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* تصميم أزرار التواصل الاجتماعي الجديد */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .social-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.2rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: #ffffff;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .social-icon i {
            font-size: 1.5rem;
        }

        .social-btn span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ألوان مخصصة لكل منصة */
        .whatsapp-btn:hover .social-icon {
            background: #25D366;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
        }

        .instagram-btn:hover .social-icon {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
            box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
        }

        .snapchat-btn:hover .social-icon {
            background: #FFFC00;
            box-shadow: 0 0 20px rgba(255, 252, 0, 0.5);
        }

        .snapchat-btn:hover .social-icon i {
            color: #000000;
        }

        .twitter-btn:hover .social-icon {
            background: #000000;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .facebook-btn:hover .social-icon {
            background: #1877F2;
            box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tiktok-btn:hover .social-icon {
            background: linear-gradient(45deg, #ff0050, #00f2ea);
            box-shadow: 0 0 20px rgba(255, 0, 80, 0.5);
        }

        .maps-btn:hover .social-icon {
            background: #4285F4;
            box-shadow: 0 0 20px rgba(66, 133, 244, 0.5);
        }

        /* تصميم المعلومات القانونية */
        .legal-grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .legal-item,
        .legal-link {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .legal-item:hover,
        .legal-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }

        .legal-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .legal-icon i {
            font-size: 1.1rem;
            color: #ffffff;
        }

        .legal-text {
            flex: 1;
        }

        .legal-text strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ffffff;
        }

        .legal-text span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        /* تصميم الفوتر السفلي */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 3rem;
            padding-top: 2rem;
        }

        .footer-link {
            color: #ffd700;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #ff6b35;
            text-decoration: underline;
        }

        /* تحسينات الاستجابة */
        @media (max-width: 992px) {
            .footer-headers {
                text-align: center;
            }

            .footer-title::after {
                left: 50%;
            }

            .footer-section {
                height: auto;
                margin-bottom: 1rem;
            }

            .social-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.8rem;
            }

            .social-btn {
                padding: 1rem 0.8rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 0.5rem;
            }

            .social-icon i {
                font-size: 1.2rem;
            }

            .social-btn span {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                margin-top: 2rem;
            }

            .contact-item,
            .legal-item,
            .legal-link {
                padding: 0.8rem;
            }

            .contact-icon,
            .legal-icon {
                width: 40px;
                height: 40px;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .social-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin: 0 auto;
            }

            .legal-grid {
                gap: 1rem;
            }

            .pattern-circles::before {
                width: 200px;
                height: 200px;
                top: -100px;
                right: -100px;
            }

            .pattern-circles::after {
                width: 150px;
                height: 150px;
                bottom: -75px;
                left: -75px;
            }
        }

        .payment-card {
            background: white;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            max-width: 150px;
        }

        .payment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .payment-card .icon-wrapper {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            display: inline-block;
            max-width: 70px;
        }

        .payment-icon {
            font-size: 1.8rem;
            /* حجم أيقونات Font Awesome */
        }

        .payment-img {
            max-width: 50px;
            /* حجم الصور */
            height: auto;
        }

        /* أنماط الفوتر الاحترافي */
        .contact-info-section {
            position: relative;
            overflow: hidden;
        }

        /* خلفية هندسية للفوتر */
        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
        }

        .pattern-circles::before,
        .pattern-circles::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .pattern-circles::before {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation: rotate 20s linear infinite;
        }

        .pattern-circles::after {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation: rotate 15s linear infinite reverse;
        }

        .pattern-dots {
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            width: 100%;
            height: 100%;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* تنسيق العناوين */
        .footer-headers {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 2rem;
        }

        .footer-section {
            height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(45deg, #ffd700, #ff6b35);
            border-radius: 2px;
        }

        /* تنسيق اللوجو */
        .footer-logo {
            width: 140px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin: 0;
            max-width: 250px;
        }

        /* تنسيق معلومات الاتصال */
        .contact-list {
            margin: 0;
            padding: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffd700, #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .contact-icon i {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .contact-text span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* تصميم أزرار التواصل الاجتماعي الجديد */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .social-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.2rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: #ffffff;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .social-icon i {
            font-size: 1.5rem;
        }

        .social-btn span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ألوان مخصصة لكل منصة */
        .whatsapp-btn:hover .social-icon {
            background: #25D366;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
        }

        .instagram-btn:hover .social-icon {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
            box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
        }

        .snapchat-btn:hover .social-icon {
            background: #FFFC00;
            box-shadow: 0 0 20px rgba(255, 252, 0, 0.5);
        }

        .snapchat-btn:hover .social-icon i {
            color: #000000;
        }

        .twitter-btn:hover .social-icon {
            background: #000000;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .facebook-btn:hover .social-icon {
            background: #1877F2;
            box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tiktok-btn:hover .social-icon {
            background: linear-gradient(45deg, #ff0050, #00f2ea);
            box-shadow: 0 0 20px rgba(255, 0, 80, 0.5);
        }

        .maps-btn:hover .social-icon {
            background: #4285F4;
            box-shadow: 0 0 20px rgba(66, 133, 244, 0.5);
        }

        /* تصميم المعلومات القانونية */
        .legal-grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .legal-item,
        .legal-link {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .legal-item:hover,
        .legal-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }

        .legal-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .legal-icon i {
            font-size: 1.1rem;
            color: #ffffff;
        }

        .legal-text {
            flex: 1;
        }

        .legal-text strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ffffff;
        }

        .legal-text span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
        }

        /* تصميم الفوتر السفلي */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 3rem;
            padding-top: 2rem;
        }

        .footer-link {
            color: #ffd700;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #ff6b35;
            text-decoration: underline;
        }

        /* تحسينات الاستجابة */
        @media (max-width: 992px) {
            .footer-headers {
                text-align: center;
            }

            .footer-title::after {
                left: 50%;
            }

            .footer-section {
                height: auto;
                margin-bottom: 1rem;
            }

            .social-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.8rem;
            }

            .social-btn {
                padding: 1rem 0.8rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 0.5rem;
            }

            .social-icon i {
                font-size: 1.2rem;
            }

            .social-btn span {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                margin-top: 2rem;
            }

            .contact-item,
            .legal-item,
            .legal-link {
                padding: 0.8rem;
            }

            .contact-icon,
            .legal-icon {
                width: 40px;
                height: 40px;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .social-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin: 0 auto;
            }

            .legal-grid {
                gap: 1rem;
            }

            .pattern-circles::before {
                width: 200px;
                height: 200px;
                top: -100px;
                right: -100px;
            }

            .pattern-circles::after {
                width: 150px;
                height: 150px;
                bottom: -75px;
                left: -75px;
            }
        }

        /* أنماط قسم لماذا تختارنا */
        .feature-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-card .icon-wrapper {
            transition: transform 0.3s ease;
        }

        .feature-card:hover .icon-wrapper {
            transform: scale(1.1);
        }

        /* حركة الأرقام المتحركة */
        .counter {
            font-weight: bold;
            font-size: 2rem;
        }

        .counter-item {
            transition: all 0.3s ease;
        }

        .counter-item:hover {
            transform: scale(1.05);
        }

        /* تحسين الاستجابة */
        @media (max-width: 768px) {
            .feature-card {
                margin-bottom: 1rem;
            }

            .about-content {
                margin-top: 2rem;
            }
        }

        /* تحسينات إضافية للسلايدر */
        .gallery-wrapper {
            position: relative;
            overflow: hidden;
        }

        .gallery-carousel .owl-item {
            opacity: 0.7;
            transform: scale(0.95);
            transition: all 0.3s ease;
        }

        .gallery-carousel .owl-item.center,
        .gallery-carousel .owl-item.active {
            opacity: 1;
            transform: scale(1);
        }

        /* تأثير التحميل */
        .gallery-carousel.loading {
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-carousel.loading::before {
            content: 'جاري التحميل...';
            font-size: 18px;
            color: var(--primary-color);
        }

        /* تحسين النقاط للشاشات الصغيرة */
        @media (max-width: 576px) {
            .owl-dots {
                margin-top: 20px;
            }

            .owl-dots .owl-dot span {
                width: 10px;
                height: 10px;
            }
        }

        /* تأثير الـ overlay للصور */
        .card-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .card-overlay {
            background: rgba(42, 93, 132, 0.8);
            opacity: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .gallery-carousel .card:hover .card-overlay {
            opacity: 1;
        }

        .overlay-content {
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-carousel .card:hover .overlay-content {
            transform: translateY(0);
        }

        /* تحسين بطاقة المشروع */
        .gallery-item .card {
            border-radius: 15px;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
        }

        .gallery-item .card-img-wrapper {
            height: 70%;
        }

        .gallery-item .card-body {
            height: 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Image Modal Styles */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .image-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .modal-navigation {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .modal-nav {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
            backdrop-filter: blur(10px);
        }

        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .modal-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .modal-image-container {
            position: relative;
            max-width: 100%;
            max-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .modal-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 24px;
        }

        .modal-caption {
            margin-top: 20px;
            text-align: center;
            color: white;
            max-width: 500px;
        }

        .modal-title {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .modal-description {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* تحسين العدسة المكبرة */
        .card-overlay {
            background: rgba(42, 93, 132, 0.85);
            opacity: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
            cursor: pointer;
        }

        .gallery-carousel .card:hover .card-overlay {
            opacity: 1;
        }

        .overlay-content i {
            transition: transform 0.3s ease;
        }

        .gallery-carousel .card:hover .overlay-content i {
            transform: scale(1.1);
        }

        /* تحسينات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .modal-content {
                max-width: 95vw;
                max-height: 95vh;
            }

            .modal-close {
                top: -40px;
                width: 35px;
                height: 35px;
            }

            .modal-nav {
                width: 40px;
                height: 40px;
            }

            .modal-navigation {
                padding: 0 10px;
            }

            .modal-image-container {
                max-height: 60vh;
            }
        }

        @media (max-width: 576px) {
            .modal-close {
                top: 10px;
                right: 10px;
            }

            .modal-navigation {
                display: none;
            }

            .modal-caption {
                margin-top: 15px;
                padding: 0 20px;
            }
        }

        /* تحسينات الفوتر - أحجام أصغر وتصميم محسّن */

        /* تنسيق اللوجو المحسّن */
        .brand-container {
            gap: 1rem;
        }

        .footer-logo {
            width: 110px !important;
            height: auto;
            filter:
                drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) contrast(1.2) brightness(1.1) !important;
            transition: transform 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 8px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-logo:hover {
            transform: scale(1.05) !important;
            filter:
                drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) contrast(1.3) brightness(1.2) !important;
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.95) !important;
            font-size: 0.85rem !important;
            font-weight: 500;
            line-height: 1.3;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            margin: 0 !important;
        }

        /* تنسيق العناوين المحدّث */
        .footer-headers {
            padding-bottom: 1.5rem !important;
            margin-bottom: 1.5rem;
        }

        .footer-section {
            height: 80px !important;
        }

        .footer-title {
            font-size: 1.3rem !important;
        }

        .footer-title::after {
            bottom: -8px !important;
            width: 40px !important;
            height: 2px !important;
        }

        /* ضبط موضع الخط للعنوان الأخير */
        .legal-title::after {
            left: auto !important;
            right: 0 !important;
            transform: none !important;
        }

        /* تحسينات الكروت - أحجام أصغر */
        .contact-item {
            margin-bottom: 1rem !important;
            padding: 0.8rem !important;
            border-radius: 10px !important;
        }

        .contact-icon {
            width: 40px !important;
            height: 40px !important;
            margin-left: 0.8rem !important;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3) !important;
        }

        .contact-icon i {
            font-size: 1rem !important;
        }

        .contact-text strong {
            font-size: 0.9rem !important;
            margin-bottom: 0.3rem !important;
        }

        .contact-text span {
            font-size: 0.8rem !important;
            line-height: 1.3;
        }

        /* تحسين الأزرار الاجتماعية - أحجام أصغر */
        .social-btn {
            padding: 1rem 0.8rem !important;
            border-radius: 12px !important;
        }

        .social-icon {
            width: 40px !important;
            height: 40px !important;
            margin-bottom: 0.6rem !important;
        }

        .social-icon i {
            font-size: 1.3rem !important;
        }

        .social-btn span {
            font-size: 0.8rem !important;
        }

        /* تحسين المعلومات القانونية - أحجام أصغر */
        .legal-item,
        .legal-link {
            padding: 0.8rem !important;
            border-radius: 10px !important;
            margin-bottom: 1rem !important;
        }

        .legal-icon {
            width: 40px !important;
            height: 40px !important;
            margin-left: 0.8rem !important;
            box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3) !important;
        }

        .legal-icon i {
            font-size: 1rem !important;
        }

        .legal-text strong {
            font-size: 0.9rem !important;
            margin-bottom: 0.2rem !important;
        }

        .legal-text span {
            font-size: 0.8rem !important;
        }

        .legal-grid {
            gap: 1rem !important;
        }

        /* تحسينات الاستجابة للهاتف المحمول */
        @media (max-width: 992px) {
            .footer-headers {
                text-align: center;
            }

            .footer-title::after {
                left: 50% !important;
                right: auto !important;
                transform: translateX(-50%) !important;
            }

            .footer-section {
                height: auto !important;
                margin-bottom: 2rem;
            }

            .social-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.8rem;
            }
        }

        @media (max-width: 768px) {

            /* كل عنوان فوق قسمه مباشرة */
            .footer-headers {
                display: none !important;
            }

            .footer-content .col-lg-4 {
                margin-bottom: 3rem;
                position: relative;
            }

            .footer-content .col-lg-4[data-title="معلومات الاتصال"]::before {
                content: "📱 معلومات الاتصال";
            }

            .footer-content .col-lg-4[data-title="تابعنا على"]::before {
                content: "🌐 تابعنا على";
            }

            .footer-content .col-lg-4[data-title="معلومات قانونية"]::before {
                content: "📋 معلومات قانونية";
            }

            .footer-content .col-lg-4::before {
                display: block;
                font-size: 1.3rem;
                font-weight: 600;
                color: #ffffff;
                text-align: center;
                margin-bottom: 1.5rem;
                padding-bottom: 0.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                position: relative;
            }

            .footer-content .col-lg-4::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 2px;
                background: linear-gradient(45deg, #ffd700, #ff6b35);
                border-radius: 2px;
                top: 3rem;
            }

            .brand-container {
                justify-content: center !important;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* أنماط قسم الخدمات الهندسية المتقدم */
        .engineering-services {
            position: relative;
            overflow: hidden;
        }

        /* خلفية هندسية للقسم */
        .engineering-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            pointer-events: none;
        }

        .engineering-circles::before,
        .engineering-circles::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 3px solid var(--primary-color);
        }

        .engineering-circles::before {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -200px;
            animation: rotate 30s linear infinite;
        }

        .engineering-circles::after {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -150px;
            animation: rotate 25s linear infinite reverse;
        }

        .engineering-grid {
            background-image:
                linear-gradient(var(--primary-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
            background-size: 50px 50px;
            width: 100%;
            height: 100%;
            transform: rotate(15deg);
        }

        /* بطاقات الخدمات الهندسية */
        .engineering-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(42, 93, 132, 0.1);
        }

        .engineering-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .engineering-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), #17a2b8, #28a745);
            transition: height 0.3s ease;
        }

        .engineering-card:hover::before {
            height: 8px;
        }

        /* البطاقة المميزة */
        .featured-card {
            border: 2px solid var(--primary-color);
            transform: scale(1.02);
        }

        .featured-card::before {
            background: linear-gradient(45deg, #ffd700, #ff6b35, var(--primary-color));
            height: 6px;
        }

        .featured-card:hover::before {
            height: 10px;
        }

        /* رأس البطاقة */
        .card-header {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(42, 93, 132, 0.3);
            transition: all 0.3s ease;
        }

        .engineering-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(42, 93, 132, 0.4);
        }

        .service-icon i {
            font-size: 2rem;
            color: #ffffff;
        }

        .card-header h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            font-size: 1.3rem;
            line-height: 1.4;
        }

        /* محتوى البطاقة */
        .card-content {
            padding: 2rem;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        /* قائمة المميزات */
        .features-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem;
            background: rgba(42, 93, 132, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(42, 93, 132, 0.1);
            transform: translateX(5px);
        }

        .feature-item i {
            color: #28a745;
            font-size: 1.1rem;
        }

        .feature-item span {
            color: #555;
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* شبكة الأنظمة */
        .systems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .system-item1 {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            border: 1px solid rgba(42, 93, 132, 0.1);
            transition: all 0.3s ease;
        }

        .system-item1:hover {
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 93, 132, 0.3);
        }
        .system-item:hover {
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 93, 132, 0.3);
        }

        .system-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(42, 93, 132, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .system-item:hover .system-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
         .system-item:hover .system-content h6{
            color:white;
         }
         .system-item:hover .system-content p{
            color:white;
         }


        .system-item span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* أنواع الصيانة */
        .maintenance-types {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .maintenance-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 12px;
            border: 1px solid rgba(42, 93, 132, 0.1);
            transition: all 0.3s ease;
        }

        .maintenance-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .maintenance-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .maintenance-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .maintenance-text {
            flex: 1;
        }

        .maintenance-text strong {
            display: block;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .maintenance-text span {
            color: #666;
            font-size: 0.9rem;
        }

        /* إحصائيات القسم */
        .engineering-stats {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 3rem 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(42, 93, 132, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-item {
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 25px rgba(42, 93, 132, 0.3);
        }

        .stat-icon i {
            color: white;
            font-size: 1.8rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #666;
            font-weight: 600;
            margin: 0;
            font-size: 1rem;
        }

        /* تحسينات الاستجابة */
        @media (max-width: 768px) {
            .systems-grid {
                grid-template-columns: 1fr;
            }

            .engineering-card {
                margin-bottom: 2rem;
            }

            .card-header,
            .card-content {
                padding: 1.5rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
            }

            .service-icon i {
                font-size: 1.5rem;
            }

            .card-header h4 {
                font-size: 1.1rem;
            }

            .engineering-stats {
                padding: 2rem 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .featured-card {
                transform: none;
            }

            .system-item,
            .maintenance-item {
                padding: 0.8rem;
            }

            .stat-icon {
                width: 50px;
                height: 50px;
            }

            .stat-icon i {
                font-size: 1.3rem;
            }
        }



        /* ========== Footer Styles - تنسيق الفوتر الجديد ========== */

        /* الأساسيات */
        .contact-info-section {
            background: linear-gradient(135deg, #2a5d84 0%, #1a4b7a 50%, #0f3a5f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
        }

        .pattern-circles::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .pattern-dots::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 20px 20px;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* العلامة التجارية */
        .brand-container {
            margin-bottom: 2rem;
        }

        .footer-logo {
            height: 60px;
            width: auto;
            margin-left: 15px;
        }

        .brand-tagline {
            font-size: 14px;
            color: #b8d4f0;
            line-height: 1.4;
            font-weight: 300;
        }

        /* عناوين الأقسام */
        .footer-section-title {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .footer-section-title i {
            color: #4fc3f7;
        }

        /* معلومات الاتصال */
        .contact-list {
            padding: 0;
            margin: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-left: 4px solid #4fc3f7;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(-5px);
        }

        .contact-icon {
            min-width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4fc3f7, #29b6f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 16px;
            color: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            color: #4fc3f7;
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-text span {
            color: #e3f2fd;
            font-size: 14px;
            line-height: 1.5;
        }

        /* المعلومات القانونية */
        .legal-grid {
            display: grid;
            gap: 20px;
        }

        .legal-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-right: 4px solid #66bb6a;
            transition: all 0.3s ease;
        }

        .legal-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }

        .legal-icon {
            min-width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #66bb6a, #4caf50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .legal-icon i {
            font-size: 16px;
            color: white;
        }

        .legal-text {
            flex: 1;
        }

        .legal-text strong {
            display: block;
            color: #81c784;
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .legal-text span {
            color: #e8f5e8;
            font-size: 14px;
            line-height: 1.5;
        }

        /* شريط التواصل الاجتماعي الأفقي */
        .social-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 2rem !important;
            margin-top: 2rem;
        }

        .social-title {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .social-links-horizontal {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }

        .social-icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .social-icon-circle:hover::before {
            transform: translateX(100%);
        }

        .social-icon-circle:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-icon-circle i {
            font-size: 20px;
            z-index: 1;
            position: relative;
        }

        /* ألوان الشبكات الاجتماعية */
        .whatsapp-circle {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .instagram-circle {
            background: linear-gradient(135deg, #e4405f, #8a3ab9, #bc2a8d);
        }

        .snapchat-circle {
            background: linear-gradient(135deg, #fffc00, #fff700);
            color: #000 !important;
        }

        .twitter-circle {
            background: linear-gradient(135deg, #000000, #1a1a1a);
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .twitter-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .twitter-circle:hover {
            background: linear-gradient(135deg, #1a1a1a, #333333);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px) scale(1.1);
        }

        .twitter-circle:hover::before {
            transform: translateX(100%);
        }

        .facebook-circle {
            background: linear-gradient(135deg, #4267b2, #365899);
        }

        .tiktok-circle {
            background: linear-gradient(135deg, #ff0050, #000000);
        }

        .maps-circle {
            background: linear-gradient(135deg, #34a853, #4285f4);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 1.5rem !important;
            margin-top: 2rem !important;
            color: #b8d4f0;
        }

        .footer-link {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #81d4fa;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .footer-content {
                text-align: center;
            }

            .contact-item,
            .legal-item {
                justify-content: center;
                text-align: center;
            }

            .contact-icon,
            .legal-icon {
                margin: 0 auto 10px auto;
            }

            .contact-text,
            .legal-text {
                text-align: center;
            }

            .social-links-horizontal {
                gap: 10px;
            }

            .social-icon-circle {
                width: 45px;
                height: 45px;
            }

            .social-icon-circle i {
                font-size: 18px;
            }
        }

        @media (max-width: 767.98px) {
            .footer-section-title {
                font-size: 1.1rem;
                text-align: center;
            }

            .brand-container {
                justify-content: center !important;
                text-align: center;
            }

            .brand-tagline {
                text-align: center;
            }

            .contact-item,
            .legal-item {
                flex-direction: row;
                text-align: right;
                padding: 15px;
                align-items: center;
            }

            .contact-icon,
            .legal-icon {
                margin: 0 15px 0 0;
                min-width: 35px;
                height: 35px;
                flex-shrink: 0;
            }

            .contact-icon i,
            .legal-icon i {
                font-size: 14px;
            }

            .contact-text,
            .legal-text {
                text-align: right;
                flex: 1;
            }

            .contact-text strong,
            .legal-text strong {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .contact-text span,
            .legal-text span {
                font-size: 12px;
                line-height: 1.4;
            }

            .social-links-horizontal {
                gap: 8px;
                padding: 0 10px;
            }

            .social-icon-circle {
                width: 40px;
                height: 40px;
            }

            .social-icon-circle i {
                font-size: 16px;
            }
        }

        /* تحسينات إضافية للشاشات الصغيرة جداً */
        @media (max-width: 480px) {

            .contact-item,
            .legal-item {
                padding: 12px 10px;
                margin-bottom: 15px;
            }

            .contact-icon,
            .legal-icon {
                min-width: 30px;
                height: 30px;
                margin: 0 12px 0 0;
            }

            .contact-icon i,
            .legal-icon i {
                font-size: 12px;
            }

            .contact-text strong,
            .legal-text strong {
                font-size: 13px;
                margin-bottom: 2px;
            }

            .contact-text span,
            .legal-text span {
                font-size: 11px;
                line-height: 1.3;
            }

            .footer-section-title {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .footer-section-title i {
                font-size: 14px;
            }
        }

        /* تحسينات إضافية للسيكشن الجديد */
        .highlight-text {
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .services-highlight {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .service-point {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .service-point i {
            width: 20px;
        }

        .systems-showcase {
            background: rgba(42, 93, 132, 0.05);
            border-radius: 10px;
            padding: 1rem;
        }

        .systems-badges .badge {
            font-size: 0.8rem;
            padding: 0.5rem 0.8rem;
            font-weight: 500;
        }

        .brands-partnership {
            border-top: 1px solid #e9ecef;
            padding-top: 1rem;
        }

        .brand-name {
            color: var(--primary-color);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .system-card {
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .system-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .benefit-item i {
            font-size: 1.5rem;
        }

        .commitment-section .alert {
            background: linear-gradient(135deg, rgba(42, 93, 132, 0.1), rgba(23, 162, 184, 0.1));
        }

        .systems-overview h5 {
            position: relative;
            padding-bottom: 0.5rem;
        }

        .systems-overview h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-color), #17a2b8);
            border-radius: 2px;
        }

        /* تحسينات الاستجابة للسيكشن الجديد */
        @media (max-width: 768px) {
            .services-highlight {
                padding: 1rem;
            }
            
            .systems-showcase {
                padding: 0.8rem;
            }
            
            .system-card {
                margin-bottom: 0.5rem;
            }
            
            .systems-badges .badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.6rem;
            }
        }

        /* تنسيقات قسم "لماذا تختار ألفا الحديثة" المحدث */
        .why-choose-us {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* بطاقات الخدمات المتكاملة */
        .integrated-services {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            margin-bottom: 2rem;
        }

        .service-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(42, 93, 132, 0.15);
            border-color: var(--primary-color);
        }

        .service-card .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(42, 93, 132, 0.3);
        }

        .service-card .service-icon i {
            font-size: 1.5rem;
            color: #ffffff;
        }

        .service-card h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .service-card p {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
            flex-grow: 1;
        }

        /* أنظمة التكييف المتخصصة */
        .systems-specialized {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            margin-bottom: 2rem;
        }

        .system-item {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .system-item1 {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            align-content: center;
            flex-wrap: wrap;
            text-align: center;

        }

        .system-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(42, 93, 132, 0.12);
            border-color: var(--primary-color);
        }

        .system-item .system-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
        }

        .system-item .system-icon i {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .system-content h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .system-content p {
            color: #6c757d;
            font-size: 0.85rem;
            margin: 0;
        }

        /* مميزات الأنظمة */
        .system-benefits {
            background: linear-gradient(135deg, rgba(42, 93, 132, 0.05), rgba(23, 162, 184, 0.05));
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .benefit-item {
            text-align: center;
            padding: 1rem;
        }

        .benefit-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
            display: block;
        }

        .benefit-item h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin: 0;
            font-size: 0.95rem;
        }

        /* الاعتمادات والالتزام */
        .certifications-commitment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .cert-card, .commitment-card {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            overflow: hidden;
        }

        .cert-card .card-header, .commitment-card .card-header {
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            color: #ffffff;
            padding: 1.5rem;
            border: none;
        }

        .cert-card .card-header h5, .commitment-card .card-header h5 {
            margin: 0;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cert-card .card-body, .commitment-card .card-body {
            padding: 1.5rem;
        }

        .cert-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cert-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .cert-list li:last-child {
            border-bottom: none;
        }

        .cert-list li i {
            color: #28a745;
            margin-left: 0.5rem;
            font-size: 0.8rem;
        }

        .commitment-point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .commitment-point:last-child {
            margin-bottom: 0;
        }

        .commitment-point i {
            color: var(--primary-color);
            margin-top: 2px;
            margin-left: 0.5rem;
            flex-shrink: 0;
        }

        /* استجابة للشاشات المختلفة */
        @media (max-width: 991px) {
            .certifications-commitment {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .integrated-services,
            .systems-specialized {
                padding: 2rem;
            }
        }

        @media (max-width: 767px) {
            .integrated-services,
            .systems-specialized {
                padding: 1.5rem;
            }
            
            .system-benefits {
                padding: 1.5rem;
            }
            
            .system-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .system-item1 {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .system-item .system-icon {
                margin: 0 auto 1rem auto;
            }
            .system-item1 .system-icon {
                margin: 0 auto 1rem auto;
            }
            
            .cert-card .card-header,
            .commitment-card .card-header {
                padding: 1.2rem;
            }
            
            .cert-card .card-body,
            .commitment-card .card-body {
                padding: 1.2rem;
            }
        }

        @media (max-width: 575px) {
            .service-card {
                margin-bottom: 1rem;
            }
            
            .benefit-item i {
                font-size: 1.5rem;
            }
            
            .system-item .system-icon {
                width: 40px;
                height: 40px;
            }
            
            .system-item .system-icon i {
                font-size: 1rem;
            }
        }

        /* بطاقات المزايا الرئيسية */
        .advantage-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), #17a2b8);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(42, 93, 132, 0.15);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: all 0.3s ease;
            position: relative;
        }

        .advantage-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            border-radius: 50%;
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .advantage-card:hover .advantage-icon::after {
            transform: translateX(100%);
        }

        .advantage-icon i {
            font-size: 2rem;
            color: #ffffff;
            z-index: 1;
            position: relative;
        }

        .advantage-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .advantage-desc {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .advantage-number {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 1rem;
            border-left: 4px solid var(--primary-color);
        }

        .advantage-number .counter {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .advantage-number small {
            color: #6c757d;
            font-weight: 500;
        }

        /* قسم الخدمات المتكاملة */
        .services-showcase {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .service-item:hover {
            background: rgba(42, 93, 132, 0.05);
            transform: translateX(10px);
        }

        .service-item i {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .service-item strong {
            display: block;
            color: var(--primary-color);
            margin-bottom: 0.3rem;
        }

        /* أنظمة التكييف المحدثة */
        .systems-overview .system-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .systems-overview .system-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(42, 93, 132, 0.15);
            border-color: var(--primary-color);
        }

        .system-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            flex-shrink: 0;
        }

        .system-icon i {
            color: #ffffff;
            font-size: 1.2rem;
        }

        .system-content h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .system-content p {
            color: #6c757d;
            font-size: 0.85rem;
            margin: 0;
        }

        /* مميزات الأنظمة */
        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1rem 0.5rem;
        }

        .benefit-item i {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .benefit-item small {
            font-weight: 500;
            color: #495057;
        }

        /* شهادات الاعتماد */
        .certification-card,
        .commitment-card {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(42, 93, 132, 0.1);
            overflow: hidden;
        }

        .certification-card .card-header,
        .commitment-card .card-header {
            background: linear-gradient(135deg, var(--primary-color), #17a2b8);
            color: #ffffff;
            padding: 1.5rem;
            border: none;
        }

        .certification-card .card-body,
        .commitment-card .card-body {
            padding: 1.5rem;
        }

        .certifications-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .certifications-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
        }

        .certifications-list li:last-child {
            border-bottom: none;
        }

        .point-item {
            display: flex;
            align-items: center;
        }

        .point-item i {
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* استجابة للشاشات المختلفة */
        @media (max-width: 1199px) {
            .advantage-card {
                padding: 1.5rem 1rem;
            }
            
            .advantage-icon {
                width: 70px;
                height: 70px;
            }
            
            .advantage-icon i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 991px) {
            .services-showcase {
                margin-top: 2rem;
                padding: 2rem;
            }
            
            .systems-overview .system-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .system-icon {
                margin: 0 auto 1rem auto;
            }
        }

        @media (max-width: 767px) {
            .advantage-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .advantage-icon {
                width: 60px;
                height: 60px;
            }
            
            .advantage-icon i {
                font-size: 1.5rem;
            }
            
            .services-showcase {
                padding: 1.5rem;
            }
            
            .service-item {
                flex-direction: column;
                text-align: center;
                padding: 1rem 0.5rem;
            }
            
            .service-item i {
                margin: 0 auto 0.5rem auto;
            }
            
            .systems-overview .system-card {
                padding: 1rem;
            }
            
            .certification-card .card-header,
            .commitment-card .card-header {
                padding: 1rem;
            }
            
            .certification-card .card-body,
            .commitment-card .card-body {
                padding: 1rem;
            }
        }

        @media (max-width: 575px) {
            .advantage-number .counter {
                font-size: 1.5rem;
            }
            
            .benefit-item i {
                font-size: 1.5rem;
            }
            
            .system-icon {
                width: 40px;
                height: 40px;
            }
            
            .system-icon i {
                font-size: 1rem;
            }
        }