.customers-section {
    text-align: center;
    padding: 50px 10%;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.customers-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.customers-slider {
    overflow-x: auto; /* Enables horizontal scrolling */
    scroll-behavior: smooth;
    white-space: nowrap;
    display: flex;
    width: 80%;
}


.customer-container {
    display: flex;
    gap: 20px;
}

.customer {
    flex: 0 0 auto;
}

.customer img {
    width: 120px;
    height: auto;
}

/* Arrow Buttons */
.arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
