.why-choose-us-revamp {
  position: relative;
  overflow: hidden;
}

.logo-wall-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.10;
  filter: grayscale(100%);
  overflow: hidden; /* Hide the overflow from the animation */
}

.logo-wall-background::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-wall-scroller {
  width: 100%;
  height: 100%; /* Make it twice the container height */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  animation: scroll-logos 50s linear infinite;
}

@keyframes scroll-logos {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.logo-wall-scroller img {
  width: auto;
  height: auto;
  margin: auto;
}

.why-choose-us-revamp .container {
  position: relative;
  z-index: 1;
} 