.customer-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background: #2046e3;
    padding: 40px 0;
}
.customer-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 20s linear infinite;
    width: max-content;
}
.customer-marquee img {
    max-width: 120px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hover-zoom {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.hover-zoom:hover {
    transform: scale(1.01);
    border: 1px solid red;
}

.img-fluid {
    width: 100%;
}