/* Client Carousel Styles */
.client-carousel-container {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.client-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.client-carousel-title {
    text-align: center;
    margin-bottom: 40px;
}

.client-carousel-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.client-carousel-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.client-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.client-carousel-track {
    display: flex;
    will-change: transform;
}

.client-carousel-item {
    min-width: 160px;
    padding: 0 20px;
    text-align: center;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.client-carousel-item img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-carousel-item:hover img {
    transform: scale(1.1);
}

.client-carousel-nav {
    display: none; /* Dots not needed for ticker */
}

.client-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-carousel-arrow:hover {
    opacity: 1;
}

.client-carousel-arrow.prev {
    left: 0;
}

.client-carousel-arrow.next {
    right: 0;
}

.client-carousel-arrow i {
    color: #4c1864;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-carousel-item {
        min-width: 120px;
        padding: 0 15px;
    }
    
    .client-carousel-item img {
        max-height: 40px;
    }
    
    .client-carousel-arrow {
        width: 30px;
        height: 30px;
    }
}