/* ================================
   CLIENT LOGO SCROLLER
================================ */

.clients-section {
  text-align: center;
  padding: 1px 20px;
  background: #fff;
  overflow: hidden;
}

.clients-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: purple;
  margin-bottom: 20px;
}

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: scrollLeft 25s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  height: 80px;
  width: auto;
  filter: grayscale(30%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Keyframes for infinite scroll */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 992px) {
  .clients-track {
    gap: 40px;
    animation-duration: 20s;
  }
  .client-logo img {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 30px 10px;
  }
  .clients-track {
    gap: 30px;
    animation-duration: 18s;
  }
  .client-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .clients-title {
    font-size: 1.4rem;
  }
  .client-logo img {
    height: 50px;
  }
}
