/* =====================================
   FADE SLIDER – LARGE + GREEN GLOW
   ===================================== */

.fade-slider-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* السلايدر */
.fade-slider {
  position: relative;
  width: 92%; /* ⬅️ أعرض */
  max-width: 1200px; /* تحكم احترافي */
  height: 520px; /* ⬅️ أعلى */
  overflow: hidden;
  border-radius: 28px;
}

/* الصور */
.fade-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;

  /* الحواف */
  border-radius: 28px;

  /* الإضاءة الخضراء */
  box-shadow: 0 0 0 2px #b7e4c7, 0 0 25px rgba(45, 106, 79, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.15);

  animation: fadeShow 32s infinite;
}

/* =========================
   DELAYS (16 صورة)
   ========================= */
.s1 {
  animation-delay: 0s;
}
.s2 {
  animation-delay: 2s;
}
.s3 {
  animation-delay: 4s;
}
.s4 {
  animation-delay: 6s;
}
.s5 {
  animation-delay: 8s;
}
.s6 {
  animation-delay: 10s;
}
.s7 {
  animation-delay: 12s;
}
.s8 {
  animation-delay: 14s;
}
.s9 {
  animation-delay: 16s;
}
.s10 {
  animation-delay: 18s;
}
.s11 {
  animation-delay: 20s;
}
.s12 {
  animation-delay: 22s;
}
.s13 {
  animation-delay: 24s;
}
.s14 {
  animation-delay: 26s;
}
.s15 {
  animation-delay: 28s;
}
.s16 {
  animation-delay: 30s;
}

/* =========================
   DOTS
   ========================= */
.fade-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  max-width: 90%;
}

.fade-dots span {
  width: 26px;
  height: 4px;
  background: #d8f3dc;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.fade-dots span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: #2d6a4f;
  animation: dotFill 32s infinite;
}

/* نفس الـ delays السابقة للشرطات (تبقى كما هي عندك) */

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeShow {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  28% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dotFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .fade-slider {
    width: 95%;
    height: 380px; /* كبير على الهاتف */
    border-radius: 22px;
  }

  .fade-slide {
    border-radius: 22px;
    box-shadow: 0 0 0 2px #b7e4c7, 0 0 18px rgba(45, 106, 79, 0.35),
      0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .fade-dots span {
    width: 18px;
    height: 3px;
  }
}
/* ================================
   FACEBOOK VIDEO FIX
   ================================ */

.fb-video {
  aspect-ratio: 9 / 16; /* لأن الريلز عمودي */
  max-width: 420px; /* شكل أنيق */
}

.fb-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}
