.support-section{
    background-color: var(--bs-primary);
}


/* دعم الاتجاهين */
html[dir="rtl"] body,
html[dir="rtl"] .content-section {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="ltr"] body,
html[dir="ltr"] .content-section {
  direction: ltr !important;
  text-align: left !important;
}



.vndr-hero-section {
    min-height: calc(100vh);
    display: flex;
    align-items: stretch;
}

.navbar-custom{
    background: transparent;
}


.vndr-hero-image {
  flex: 1;
  background-image: url('/images/vendor.JPG');
  background-size: cover; /* تغطي الشاشة بدون فراغ */
  background-position: top center; /* تبدأ من الأعلى */
  background-repeat: no-repeat;
  min-height: 100vh; /* تملأ ارتفاع الشاشة */
  margin-top: 80px; /* تعديل حسب ارتفاع النافبار */
}

/* للجوال */
@media (max-width: 768px) {
  .vndr-hero-image {
    background-size: cover; /* تبقى ممتدة بدون فراغ */
    background-position: top center;
    min-height: 80vh; /* تقل شوي عشان الجوال */
    margin-top: 60px; /* تعديل حسب ارتفاع نافبار الجوال */
  }
}
.vndr-hero-content {
    flex: 1;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.vndr-hero-text {
    max-width: 500px;
}

.vndr-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.vndr-cta-button {
    background-color: white;
    color: #333;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vndr-cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .vndr-hero-section {
        flex-direction: column;
    }
    
    .vndr-hero-image {
        min-height: 300px;
    }
    
    .vndr-hero-title {
        font-size: 2.5rem;
    }
    
    .vndr-hero-content {
        padding: 40px 20px;
    }
}