.customer-gallery {
    text-align: center;
    padding: 80px;
}

.customer-gallery h2 {
    text-align: center;
    margin-bottom: 10px;
    /* Add some space below the h2 */
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    color: #333;
}

.customer-gallery h2::after {
    content: "";
    display: block;
    width: 200px;
    /* Adjust the width as needed */
    height: 5px;
    /* Adjust the height as needed */
    background-color: rgb(9, 82, 155);
    /* Match the span color */
    margin: 20px auto 0;
    /* Center the line and add top/bottom margins */
    border-radius: 50%;
}

.marquee {
    margin-top: 50px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.image-container {
    display: flex;
    animation: marquee 7s linear infinite;
}

.image-container img {
    width: 252px;
    height: 150px;
    margin: 0 30px;
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee:hover .image-container {
    animation-play-state: paused;
}