.elementor-1708 .elementor-element.elementor-element-fbfe1a6{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-bd35c67 *//* إعدادات الشريط العلوي الأساسية */
.saas-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 0.3s ease;
}

.saas-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
}

/* =========================================
   تنسيق الشعار (صورة)
   ========================================= */
.saas-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 45px; /* تم تعديل الحجم إلى 30 كما طلبت */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

/* =========================================
   تنسيق الروابط والقوائم المنسدلة (Dropdown)
   ========================================= */
.saas-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.saas-nav > ul > li {
  position: relative; 
  padding: 10px 0;
}

.saas-nav a {
  text-decoration: none;
  color: rgba(31, 41, 55, 0.9) !important;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.saas-nav a:hover {
  color: #2563eb !important;
}

.arrow {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 10px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu li {
  width: 100%;
  padding: 0;
}

.dropdown-menu a {
  padding: 12px 20px;
  font-size: 15px;
  color: rgba(17, 24, 39, 0.9) !important;
  font-weight: 400;
}

.dropdown-menu a:hover {
  background-color: #f9fafb;
  color: #2563eb !important;
}

/* =========================================
   حاوية الأزرار وتنسيقها
   ========================================= */
.saas-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.saas-login-btn {
  text-decoration: none;
  color: rgba(31, 41, 55, 0.9) !important;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.saas-login-btn:hover {
  color: #000000 !important;
}

.saas-signup-btn {
  text-decoration: none;
  background-color: #2563eb !important;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.saas-signup-btn:hover {
  background-color: #1d4ed8 !important;
}

.saas-signup-btn:active {
  transform: scale(0.98);
}

/* =========================================
   إعدادات التجاوب مع الهواتف المحمولة (Mobile)
   ========================================= */
@media (max-width: 768px) {
  .saas-container {
    padding: 12px 15px;
  }
  
  .saas-nav {
    display: none; 
  }

  /* تم تعديل الحجم للهواتف ليكون متناسقاً مع الحجم الجديد */
  .logo-img {
    max-height: 24px;
  }

  .saas-actions {
    gap: 10px;
  }

  .saas-login-btn {
    font-size: 15px;
  }

  .saas-signup-btn {
    font-size: 15px;
    padding: 8px 16px;
  }
}/* End custom CSS */