

/* Section Styling */
.customers-section {
    margin-top: 40px;
}

.customers-section h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 5px;
}

.logolsiderappnavhldr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
}

img.navButtonsicns {
    max-width: 22px;
    filter: invert(1);
}



.customers-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: grab;
}

/* Slider Styling */
.logo-slider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
    padding: 10px 0;
    user-select: none;
}

.logo-slider img {
    height: 70px;
    max-width: 120px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    draggable: false;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.nav-btn {
    background-color: #8cc63f;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.nav-btn:hover {
    background-color: #7bb12e;
    transform: scale(1.1);
    transition: 0.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
    }

    .logo-slider {
        gap: 20px;
    }

    .logo-slider img {
        height: 50px;
        max-width: 90px;
    }
}