.clients {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
  direction: rtl;
  overflow: hidden;
}

.clients h2 {
  font-size: 28px;
  color: #7a884e;
  margin-bottom: 30px;
}

.slider {
  overflow: hidden;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 60s linear infinite;
}

.slide {
flex: 0 0 auto;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slide img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients h2 {
    font-size: 24px;
  }}