body {
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    direction: l;
    text-align: right;
    background-color: #232323;
}


.banner {
    position: relative;
    background: url('banner.jpg') no-repeat center center/cover;
    height: 458px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: contain;
    background-repeat: repeat-x;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.banner h1 {
    font-size: 2.5em;
    z-index: 1;
    position: relative;
}

.banner .highlight {
    color: #ffd700;
}

section {
    padding: 2em;
    text-align: right;
    color: #fff;
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
}

#steps {
    padding: 2em;
    color: #fff;
    margin: 0 auto;
}

h2 {
    color: #ffd700;
    margin-bottom: 1.5em;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step-header h3 {
    margin: 0;
    font-size: 1.3em;
}



.step-header .toggle-icon {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.step-content {
    display: none;
    font-size: 1.1em;
    color: #ddd;
}

.step-content.show {
    display: block;
}

.step-header.open .toggle-icon {
    transform: rotate(45deg);
}
    
h2 {
    text-align: left;
    margin: 20px 0;
    color: #ffd700;
    font-size: 30px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
}

.service {
    border: 1px solid #ddd;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service i {
    color: #ffd700;
    margin-bottom: 1em;
}

.service h3 {
    margin-top: 0;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.form {
    margin: 0 auto;
    text-align: right;
    padding-bottom: 10px;
}

.form label {
    display: block;
    margin-bottom: 0.5em;
}
.form input, .form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: #fff;
    outline: none;
    text-align: left;
    font-size: 18px;
}

.form input:focus, .form textarea:focus {
    border-bottom: 2px solid #ffd700;
}

.form textarea {
    height: 156px;
    resize: vertical;
}

.form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.7em 1.5em;
    cursor: pointer;
    display: block;
    margin: 2em auto;
    width: fit-content;
    text-align: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1.2em;
}

.form button:hover {
    background: #ffd700;
}

@media (max-width: 768px) {
    .swiper-container {
        height: 200px;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    section {
        padding: 1.5em;
    }
}
@media (max-width: 768px) {
    header nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }


    .tabs.active {
        display: block;
    }

    .form div {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}


@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    z-index: 1000;

}

@media (min-width: 768px) {
    header {
        padding-left: 115px;
        padding-right: 115px;
    }

    .menu-toggle {
        display: none;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffd700;
}

nav {
    display: flex;
    gap: 1.5em;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mobile-menu a {
    padding: 0.5em 1em;
    border-bottom: 1px solid #444;
    color: #fff;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}
.form-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* يسمح بالتغيير في النسخ الصغيرة */
}

.form-left,
.form-right {
    width: 48%;
}

@media (max-width: 767px) {
    .form-left {
        width: 100%;
    }

    .form-right {
        width: 100%;
        order: 1; /* يجعل الرسالة تحت البيانات الأخرى في الموبايل */
    }
}
p {
    text-align: justify;
    font-size: 18px;
}

#responseMessage {
    display: none;
    color: #ffd700;
    margin-top: 1em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5em;
    z-index: 1000;
}
footer {
    background-color: #ffd700;
    color: #333;
    padding: 20px;
    }

    .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }

    .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    }



    footer h3 {
    margin-bottom: 10px;
    }

    footer a {
    color: #fff;
    text-decoration: none;
    }

    footer a:hover {
    text-decoration: underline;
    }

    .footer-section a {
        margin: 0 10px; /* إضافة مسافة بين الأيقونات */
        font-size: 24px; /* تغيير حجم الأيقونات */
        color: #333; /* تغيير اللون حسب الحاجة */
        transition: color 0.3s ease; /* تأثير عند المرور على الأيقونة */
    }
    
    .footer-section a:hover {
        color: #ffd700; /* تغيير اللون عند المرور على الأيقونة */
    }
    
    .footer-section .social-icons {
        display: flex;
        justify-content: center; /* محاذاة الأيقونات إلى المنتصف */
        align-items: center; /* محاذاة الأيقونات عمودياً */
    }
    .footer-section .logo {
        text-align: center; /* لمحاذاة النص في الوسط */
    }
    
    .footer-section p {
        text-align: center; /* لمحاذاة النص في الوسط */
        margin-top: 10px;   /* إضافة مسافة بين الكلمة "VU" والنص */
        font-size: 16px;    /* تحديد حجم النص */
        color: #333;        /* اختيار لون النص */
    }
        /* التصميم الافتراضي للفوتر */
    .footer-container {
        display: flex; /* ترتيب الأعمدة بجانب بعضها */
        justify-content: space-between; /* توزيع الأعمدة بالتساوي */
        flex-wrap: wrap; /* السماح بالتفاف الأعمدة إذا لزم الأمر */
        gap: 20px; /* مسافة بين الأعمدة */
        padding-right: 115px;
        padding-left: 115px;
    }

    /* تعديل الفوتر لشاشات الموبايل */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column; /* ترتيب الأعمدة عمودياً */
            align-items: center; /* محاذاة العناصر في الوسط */
            padding-right: 0px;
            padding-left: 0px;
        }

        .footer-section {
            margin-bottom: 20px; /* إضافة مسافة بين كل قسم */
            text-align: center; /* محاذاة النصوص في الوسط */
        }
    }
    
    
    /* تنسيق زر واتساب */
    .whatsapp-icon {
        position: fixed;
        left: 20px; /* مسافة أصغر لتناسب الشاشات الصغيرة */
        bottom: 10px; /* مسافة أصغر لتناسب الشاشات الصغيرة */
        z-index: 1000; /* ضمان ظهور الزر فوق المحتوى */
        font-size: 50px; /* تغيير حجم الأيقونة */
        color: #DBA629; /* تغيير اللون إلى الأبيض */
    }
    
    /* إذا كانت الأيقونة تحتوي على خلفية ملونة أو تأثيرات أخرى */
    .whatsapp-icon i {
        color: #DBA629; /* لتغيير لون الأيقونة إذا كانت من Font Awesome */
    }