﻿.clients-section {
    padding: 0px 0;
    background: #fcfcfc;
    overflow: hidden;
}

.section-title-line-center {
    position: relative;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 40px;
}

    .section-title-line-center::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background-color: var(--primary-yellow);
        border-radius: 5px;
    }

.client-item-swiper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .client-item-swiper:hover {
        transform: translateY(-5px);
    }

    .client-item-swiper i {
        font-size: 3.5rem;
        color: #4a4a4a;
        margin-bottom: 15px;
        display: block;
    }

    .client-item-swiper span {
        font-size: 0.9rem;
        color: #333;
        font-weight: 600;
    }

.swiper-button-next,
.swiper-button-prev {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    color: #333 !important;
    transition: all 0.3s;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        border-color: #ccc;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem !important;
        font-weight: bold;
    }

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-yellow) !important;
}

.swiper-wrapper {
    padding-bottom: 40px;
}
