.wrapper-card {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
max-width:1560px;
margin:auto;
}
 
.wrapper-card .track {
  display: flex;
  animation: scroll 45s linear infinite;
}
 
.logos-card {
  flex: 0 0 auto;
  width: 11rem;        /* consistent card width */
/*   height: 6rem;        /* fixed height for all cards */ */
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
/* border:2px solid green; */
}

.logos-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps aspect ratio, no stretching */
/*   border:2px solid red; */
}

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