.brands-section {    background: #fff;    padding: 35px 0;    overflow: hidden;}.brands-slider {    width: 100%;    overflow: hidden;    position: relative;}.brands-track {    display: flex;    align-items: center;    gap: 90px;    width: max-content;    animation: scrollBrands 35s linear infinite;}.brand-item {    flex: 0 0 auto;    display: flex;    align-items: center;    justify-content: center;    min-width: 280px;}/* Bigger colorful logos */.brand-item img {	max-width: 260px;    max-height: 140px;    width: auto;    height: auto;    object-fit: contain;    opacity: 1;          /* Full visibility */    filter: none;        /* Remove grayscale */    transition: transform .3s ease;}/* Hover Effect */.brand-item img:hover {    transform: scale(1.08);}/* Infinite Scroll */@keyframes scrollBrands {    from {        transform: translateX(0);    }    to {        transform: translateX(-50%);    }}/* Pause on hover */.brands-slider:hover .brands-track {    animation-play-state: paused;}/* Remove left & right fade */.brands-slider::before,.brands-slider::after {    display: none;}.brand-item {    min-width: 280px;}.brand-item img {    max-width: 260px;    max-height: 140px;}