
/* Marquee container */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background:   #FAFAFA;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track */
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.company-card {
  min-width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08); */
}

.company-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.85;
  transition: all 0.3s ease;
}




/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .company-card {
    min-width: 180px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .company-card {
    min-width: 140px;
    height: 70px;
    padding: 10px;
  }
}