#customers {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#customers h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

/* السلايدر */
.customer-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  margin: auto;
}

/* مسار الشعارات */
.slide-track {
  display: flex;
  gap: 40px;
  width: calc(200px * 56); /* 28 شعار × 2 */
  animation: scrollLoop 70s linear infinite;
}

/* كل شعار */
.slide {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.slide img:hover {
  filter: none;
  transform: scale(1.05);
}

/* حركة مستمرة */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* توقف عند مرور الماوس */
.customer-slider:hover .slide-track {
  animation-play-state: paused;
}

/* للجوال */
@media (max-width: 600px) {
  .slide {
    flex: 0 0 130px;
  }

  .slide img {
    width: 80px;
  }

  .slide-track {
    gap: 20px;
  }
}
