body {
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    background-color: #232323;
}


.banner {
    position: relative;
    background: url('banner.jpg') no-repeat center center/cover;
    height: 458px;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size:auto;
    padding-top: 200px;
}

.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;
}


    
h2 {
    text-align: right;
    margin: 20px 0;
    color: #ffd700;
    font-size: 30px;
    margin-bottom: 1.5em;
}



.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: right;
    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;
        padding-left: 60px;
    }


    .tabs.active {
        display: none;
    }

    .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; /* يحاذي العناصر عموديًا */
    color: #fff;
    padding: 1em 2em;
    position: fixed;
    top: 0;
    width: 100%; /* يضمن امتداد الهيدر على عرض الصفحة */
    z-index: 1000;
}
@media (min-width: 768px) {
    .logo {
        padding-right: 81px;
    }
    nav {
        padding-left: 145px;
    }
    .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 !important;    }
    
    /* إذا كانت الأيقونة تحتوي على خلفية ملونة أو تأثيرات أخرى */
    .whatsapp-icon i {
        color: #DBA629 !important; /* لتغيير لون الأيقونة إذا كانت من Font Awesome */
    }

    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border: 2px solid #ffd700;
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
    }
    
    .cta-button::before,
    .cta-button::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 0;
        background-color: #ffd700;
        transition: all 0.3s ease;
    }
    
    .cta-button::before {
        top: 0;
        left: 0;
        right: 0;
    }
    
    .cta-button::after {
        bottom: 0;
        right: 0;
        left: 0;
    }
    
    .cta-button:hover {
        color: #ffd700;
    }
    
    .cta-button:hover::before {
        width: 100%;
        right: auto;
    }
    
    .cta-button:hover::after {
        width: 100%;
        left: auto;
    }
    .faq-section {
        max-width: 1140px;
        margin: auto;
    }
    

    
    .faq {

    }
    
    .faq-item {
        border-bottom: 1px solid #ddd;
    }
    
    .question {
        display: flex;
        justify-content: space-between;
        padding: 15px 10px;
        font-weight: bold;
        cursor: pointer;
        font-size: 18px;
    }
    
    .answer {
        display: none;
        padding: 0 10px 15px;
        color: #fff;
        font-size: 16px;
    }
    
    .description {
        margin-top: 20px;
        color: #fff;
        font-size: 14px;
    }
    .works-button-container {
        text-align: center;
        margin-top: 20px;
    }
    .service-button-container {
        margin-top: 20px;
    }    
    .works-button-container .cta-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .service-button-container .cta-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
        
    .works-button-container .cta-button:hover {
        transform: scale(1.05);
    }
.container {

  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}



.benefits-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.content-column {
  flex: 1;
  max-width: 40%;

}

.content-column p {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-column h2 {
  font-size: 28px;
  margin: 10px 0 20px;
  font-weight: bold;
}

.content-column .btn {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.content-column .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  transform: scale(1.1);
  transition: transform 0.3s;
}

.content-column .btn:hover::after {
  transform: scale(1);
}

/* Services Column Styling */
.services-column {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item img {
  max-width: 50px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.service-item p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
    align-items: center;
  }

  .content-column,
  .services-column {
    max-width: 100%;
    flex: none;
  }

  .services-column {
    grid-template-columns: 1fr;
  }
}