/* ========================================
   LOGO MARQUEE - Horizontal Scrolling
   ======================================== */

.new-logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.new-logo-marquee-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.new-logo-marquee-track li {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    height: 80px;
}

.new-logo-marquee-track li img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.new-logo-marquee-track li:hover img {
    transform: scale(1.08);
}

.new-logo-marquee-track li .brand-name {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.new-logo-marquee-track li:hover .brand-name {
    color: #333;
}

/* Pause on hover */
.new-logo-marquee-wrapper:hover .new-logo-marquee-track {
    animation-play-state: paused;
}

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

/* Responsive */
@media (max-width: 768px) {
    .new-logo-marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }
    .new-logo-marquee-track li {
        height: 60px;
    }
    .new-logo-marquee-track li img {
        height: 44px;
        max-width: 160px;
    }
}
