.brand-carousel-activation {
    display: flex;
    overflow: hidden;
}

.brand-carousel-track {
    display: flex;
    animation: scroll-rtl 30s linear infinite;
    min-width: 100%;
}

.brand-carousel-track:hover {
    animation-play-state: paused;
}

.single-brand {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.single-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.single-brand:hover img {
    transform: scale(1.15);
    animation: brandPulse 1.5s infinite;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes brandPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.single-brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
}

.single-brand:hover::after {
    opacity: 1;
}