.perfume-scroller {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #ffffff; /* or your preferred background */
    padding: 50px 0; /* Increased padding for images */
  }
  
  .scroller-inner {
    display: inline-block;
    animation: scroll 40s linear infinite;
  }
  
  .perfume-brand {
    display: inline-block;
    margin: 0 40px;
    height: 40px; /* Set a fixed height for consistency */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle;
  }
  
  /* Pause animation on hover */
  .perfume-scroller:hover .scroller-inner {
    animation-play-state: paused;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  img{
    width: 100%;
    height: auto;
  }