.navbar-brand img {
  width: clamp(90px, 32vw, 160px);  /* يتغير حسب عرض الشاشة */
  height: auto;
  max-height: 72px;                /* سقف أعلى عشان ما يكبر زيادة */
  object-fit: contain;
}


.full-banner-entry:after, .full-banner-entry:before {
      background: rgba(43, 45, 52, .051);}

/* لون الزر الأساسي */
.full-banner-entry a.inline-block {
  background-color: #3ea9df !important;
  color: #ffffff !important;
  border-color: #3ea9df !important;
  transition: all 0.25s ease;
}

/* عند المرور بالماوس */
.full-banner-entry a.inline-block:hover {
  background-color: #ffffff !important;
  color: #3ea9df !important;
  border-color: #3ea9df !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.s-block--features__item:hover{
 box-shadow: : 5px 10px 30px #2563eb;}


/* عنوان h2 داخل العنوان */
.s-block__title .right-side h2 {
  position: relative;
  display: inline-block;         /* عشان الخط المتحرك يطلع تحت النص فقط */
  font-size: 28px !important;    /* عدّل الحجم لو تبي */
  font-weight: 700 !important;
  line-height: 1.3;
  cursor: pointer;
}

/* الخط السفلي (مخفي بالبداية) */
.s-block__title .right-side h2::after {
  content: "";
  position: absolute;
  right: 0;                      /* RTL */
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #3ea9df;     /* الأزرق */
  transition: width 0.25s ease;
}

/* يظهر الخط عند المرور */
.s-block__title .right-side h2:hover::after,
.s-block__title .right-side:hover h2::after {
  width: 100%;
}

/* الجوال */
@media (max-width: 768px) {
  .s-block__title .right-side h2 {
    font-size: 22px !important;
  }
}


/* عنوان قسم التقييمات */
.s-reviews-header {
  position: relative;
  display: inline-block;       /* عشان الخط يطلع تحت النص فقط */
  font-size: 28px !important;  /* عدّل الحجم إذا حاب */
  font-weight: 700 !important;
  line-height: 1.3;
  cursor: pointer;
}

/* الخط السفلي (مخفي بالبداية) */
.s-reviews-header::after {
  content: "";
  position: absolute;
  right: 0;                    /* مناسب لـ RTL */
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #3ea9df;   /* الأزرق */
  transition: width 0.25s ease;
}

/* يظهر الخط عند المرور */
.s-reviews-header:hover::after {
  width: 100%;
}

/* الجوال */
@media (max-width: 768px) {
  .s-reviews-header {
    font-size: 22px !important;
  }
}


/* كل عناصر المميزات */
.s-block--features__item {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 12px;           /* اختياري لتنعيم الزوايا */
  overflow: visible !important; /* لضمان ظهور الشادو */
}

/* شادو أزرق + رفع بسيط عند المرور */
.s-block--features__item:hover {
  box-shadow: 0 10px 30px rgba(62, 169, 223, 0.45); /* ظل أزرق */
  transform: translateY(-4px);
}


.custom-text-section {
  background: #ffffff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Noto Kufi Arabic', sans-serif;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.custom-text-section .small-text {
  display: inline-block;
  color: #1e88e5;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.custom-text-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.custom-text-section p {
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.9;
  color: #555;
}

/* النص الفرعي قبل الكروت */
.cards-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #3ea9df;
  margin-bottom: 25px;
}

/* الكروت داخل خلفية بيضاء */
.method-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* كل كرت */
.method-card {
  background: #ffffff;
  padding: 30px 20px 20px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(30,136,229,0.15);
}

/* الدائرة الزرقاء بالرقم */
.circle-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3ea9df;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* عنوان الكرت */
.method-card h4 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* ريسبونسف */
@media (max-width: 992px) {
  .method-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .method-cards-wrapper {
    grid-template-columns: 1fr;
  }
}




.custom-title-wrapper {
  margin-top: 60px; /* المسافة فوق */
  margin-bottom: 20px; /* المسافة تحت */
}

.custom-title-wrapper .custom-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  position: relative;
  text-align: right; /* محاذاة داخل container */
  display: inline-block; /* لعشان الشادو يحسب عرض النص فقط */
  transition: all 0.2s ease;
}

.custom-title-wrapper .custom-title::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #3ea9df;
  transition: width 0.25s ease;
}

.custom-title-wrapper .custom-title:hover::after {
  width: 100%;
}

/* الجوال */
@media (max-width: 768px) {
  .custom-title-wrapper .custom-title {
    font-size: 22px;
  }
}

 

  /* كل عناصر الخدماتت */
.lazy__bg {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 12px;           /* اختياري لتنعيم الزوايا */
  overflow: visible !important; /* لضمان ظهور الشادو */
}

/* شادو أزرق + رفع بسيط عند المرور */
.lazy__bg:hover {
  box-shadow: 0 10px 30px rgba(62, 169, 223, 0.45); /* ظل أزرق */
  transform: translateY(-4px);
}



  /* كل عناصر اراء العملاءت */
.s-reviews-testemonial{
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 12px;           /* اختياري لتنعيم الزوايا */
  overflow: visible !important; /* لضمان ظهور الشادو */
}

/* شادو أزرق + رفع بسيط عند المرور */
.s-reviews-testemonial:hover {
  box-shadow: 0 10px 30px rgba(62, 169, 223, 0.45); /* ظل أزرق */
  transform: translateY(-4px);
}



.brand-item {
  display: flex;               /* استخدام flex للتمركز */
  justify-content: center;     /* محاذاة أفقية بالوسط */
  align-items: center;         /* محاذاة عمودية بالوسط */
  border-radius: 8px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 8px;
  padding: 12px;
  background: #fff;
  height: auto;               /* ارتفاع تلقائي حسب محتوى الشعار */
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(62, 169, 223, 0.35);
}

.brand-item img {
  display: block;             /* إزالة أي فراغ أسفل الصورة */
  object-fit: contain;        /* يحافظ على الأبعاد */
  height: auto;               /* خلي ارتفاع الصورة طبيعي */
  width: auto;                /* خلي العرض طبيعي */
  max-width: 100%;            /* لا تتجاوز الحاوية أبدًا */
}