/* Logo placeholder styles */
.client-logo {
    background-color: #f8f9fa;
    border-radius: 8px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-logo .logo-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.3;
}

/* Client carousel styles */
.clients-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.clients-carousel .owl-prev,
.clients-carousel .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary) !important;
    border-radius: 50%;
    color: white !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.clients-carousel .owl-prev:hover,
.clients-carousel .owl-next:hover {
    opacity: 1;
}

.clients-carousel .owl-prev {
    left: -20px;
}

.clients-carousel .owl-next {
    right: -20px;
}

.clients-carousel .owl-dots {
    margin-top: 20px;
}

.clients-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.clients-carousel .owl-dot.active span {
    background-color: var(--primary);
    width: 20px;
}
