.logo-carousel-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.logo-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-carousel {
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    animation: scroll-logos var(--scroll-duration) linear infinite;
    width: 200%; /* Double the width to accommodate duplicated logos */
}

.logo-item {
    flex: 0 0 10%; /* Adjusted to account for doubled width */
    min-width: 10%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}






@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.logo-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 10px;
    background: white;
    border-radius: 6px;

}


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

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

/* Mobile Styles */
@media (max-width: 767px) {
    .logo-item {
        flex: 0 0 16.666%; /* Adjusted for mobile view */
        min-width: 16.666%;
        padding: 0 15px;
    }
} 