/* Clients Section */
.clients-section {
  padding: 35px 35px;
  text-align: center;
}

.clients-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 35px 0;
  color: #ffffff;
  line-height: 42px;
}

.clients-logos-marquee {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.clients-logos-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}

.clients-logos-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.client-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@media (max-width: 768px) {
  .client-logo {
    min-width: 140px;
  }

  .clients-section h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}

