.logo-section {
  padding: 60px 0 0;
  background: #fff;
}

.logo-section h1 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 20px;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 40s linear infinite; /* Adjust duration for speed */
}

.carousel-track img {
  height: 90px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
