.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    padding: 10px 0;
    position: relative;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll 19s linear infinite;
    width: max-content;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.item img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.item span {
    font-size: 16px;
    font-weight: bold;
}

@keyframes scroll {
    from {
        transform: translateX(100%); 
    }
    to {
        transform: translateX(-100%); 
    }
}