﻿/* Container for client logos */
.client-container {
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 20px 0;
}

/* Scrolling wrapper */
.client-scroll {
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation: scroll 15s linear infinite;
}

/* Clients logo */
.client-item {
    width: 150px;
    margin: 0 20px;
}

    /* Style for client logos */
    .client-item img {
        width: 100%;
        height: auto;
        display: block;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

        /* On hover, make the logo colorful */
        .client-item img:hover {
            filter: grayscale(0%);
        }

/* Auto-scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}








/* cc */
.page-banner .carousel-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

    .page-banner .carousel-controls button {
        padding: 10px 15px;
        margin: 5px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .page-banner .carousel-controls button:hover {
            background-color: #0056b3;
        }


       