/* SECTION */
.clients-section {
  padding: 0px 20px 40px 20px;
  background: linear-gradient(180deg,#f8f9fb,#fff);
  text-align: center;
  overflow: hidden;
}

/* HEADER */
.clients-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}
.clients-head span {
  color: #FF7800;
}
.clients-head p {
  color: #777;
  margin-bottom: 40px;
}

/* SLIDER */
.clients-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK AUTO MOVE */
.clients-track {
  display: flex;
  gap: 30px;
  animation: scrollClients 25s linear infinite;
}

/* CARD */
.client-card {
  min-width: 180px;
  height: 120px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* LOGO */
.client-card img {
  max-width: 180px;
    max-height: 120px;
  object-fit: cover;
  border-radius:10px;
}

/* HOVER EFFECT */
.client-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(255,120,0,0.15);
}
.client-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* AUTO SCROLL */
@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .client-card {
    min-width: 140px;
    height: 100px;
  }
  
  .clients-head h2 {
    font-size: 20px;
  }
}