/* Brand Marquee Scrolling Animation */
.brand-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-marquee {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
    width: max-content;
}

.brand-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-marquee-item {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-marquee-item img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-marquee-item:hover img {
    transform: scale(1.1);
}
