.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .marquee {
    display: flex;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    flex-shrink: 0;
    animation: scroll 30s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* .marquee-blur {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 1;
    pointer-events: none;
  } */
  
  /* .marquee-blur.left {
    left: 0;
    background: linear-gradient(to right, #151516 20%, rgba(255, 255, 255, 0));
  }
  
  .marquee-blur.right {
    right: 0;
    background: linear-gradient(to left, #151516 20%, rgba(255, 255, 255, 0));
  } */
  
  .logo__container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    min-height: 60px;
    background: transparent;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    perspective: 1000;
    position: relative;
    z-index: 1;
  }
  
  .customer-logos {
    display: block;
    max-width: 100%;
    max-height: 50px;
    min-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Pause all animations if user prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .marquee-content {
      animation-play-state: paused;
    }
  }