
.client-carousel-wrapper {
    padding: 20px;
    overflow: hidden;
    position: relative;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}
.client-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap;
    width: 100%;
}
.client-logo {
    flex: 0 0 20%;
    max-width: 20%;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2;
}
.carousel-arrow.left { left: 5px; }
.carousel-arrow.right { right: 5px; }

.carousel-pagination {
    text-align: center;
    margin-top: 15px;
}
.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.carousel-dot.active {
    background: #555;
}

@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}
