.animated-logo-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background-color: #ffffff;
}

.animated-logo-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    overflow: hidden;
}

.animated-logo-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.animated-logo-track:hover {
    animation-play-state: paused;
}

.animated-logo-item {
    flex: 0 0 auto;
    margin: 0 40px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.animated-logo-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animated-logo-item {
        width: 120px;
        margin: 0 20px;
    }

    .animated-logo-section {
        padding: 40px 0;
    }
}