.logo-container {
    width: 90%;
    max-width: 1200px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border-radius: 16px;
    height: 130px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    cursor: grab;
    scroll-behavior: smooth;
}

.logo-track {
    display: flex;
    gap: 3rem;
    /* padding: 20px; */
    animation: scroll 30s linear infinite;
}

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

.client-logo {
    display: inline-flex;
    min-width: 120px;
    height: 80px;
    align-items: center;
    justify-content: center;
    /* background: rgb(240, 233, 233); */
    /* border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease, background 0.3s ease;
}

.client-logo img {
    max-height: 50px;
    max-width: 100%;
}

.client-logo:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

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

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

/* Disable scrollbar */
.logo-container::-webkit-scrollbar {
    display: none;
}

.logo-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.logo-container.active {
    user-select: none;
}

.client-logo,
.logo-item img {
    user-select: none;
    pointer-events: none;
    /* So clicking the image doesn't block the drag */
}