li {
	list-style-type: disc;
}

.satisfied-customers {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0px !important;
}

.satisfied-customers::before,
.satisfied-customers::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.satisfied-customers::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.satisfied-customers::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

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

.customer-logo {
    flex-shrink: 0;
}

.customer-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.customer-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

/* Mobile: slightly faster scroll, longer cycle + pause before reset */
@media only screen and (max-width: 768px) {
    .slider-track {
        animation: scroll-mobile 30s linear infinite;
    }
}

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