/* Add custom CSS styles below */ 
/* تكبير اللوقو بشكل متوازن في الهيدر */
header .logo img,
.header-logo img,
.navbar-brand img,
a.logo img,
.logo-wrapper img {
  max-height: 78px !important;   /* غيّرها إلى 85 أو 90 إذا احتجت */
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain;
}

/* إعطاء مساحة لحاوية اللوقو حتى لا ينضغط */
header .logo,
.header-logo,
.navbar-brand,
.logo-wrapper {
  min-width: 150px;
}

/* لأن الهيدر عندك مزدحم، نقلل ضغط عناصر القائمة قليلًا */
@media (min-width: 992px) {
  nav a,
  .main-menu a,
  .header-menu a {
    padding-inline: 10px !important;
    font-size: 14px !important;
  }
}

/* موبايل: لا ترفع الحجم كثير حتى لا يخرب الهيدر */
@media (max-width: 991px) {
  header .logo img,
  .header-logo img,
  .navbar-brand img,
  a.logo img,
  .logo-wrapper img {
    max-height: 56px !important;
  }

  header .logo,
  .header-logo,
  .navbar-brand,
  .logo-wrapper {
    min-width: 110px;
  }
}