/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 05 2026 | 16:54:53 */
/* حل 1: إضافة padding للمحتوى الرئيسي */
main, .content-wrapper {
  padding-top: 140px; /* حسب ارتفاع الـ navbar */
}

/* حل 2: تأكد أن الـ navbar له z-index عالي */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
}

/* حل 3: القوائم المنسدلة يجب أن تكون فوق كل شيء */
.dropdown-menu {
  position: absolute;
  z-index: 1001;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* حل 4: المحتوى يجب أن يكون تحت الـ navbar */
.hero-section, .main-content {
  position: relative;
  z-index: 1;
  margin-top: 100px; /* حسب ارتفاع الـ header */
}