/* Swiper */
.client-slider {
    padding-bottom: 60px;
    position: relative;
}

/* Slide */
.swiper-slide {
    height: auto;
}

/* Client Card */
.client-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 12px;
    text-align: center;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo-box {
    width: 70px;
    height: 70px;
    background: #d8f3df;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.logo-box img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

/* Client Name */
.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #0b2341;
    margin: 0;
    line-height: 1.4;
}



/* Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007DA4;
}

@media(max-width:768px) {

    .client-card {
        height: 170px;
    }

    .client-name {
        font-size: 16px;
    }

    .logo-box {
        width: 60px;
        height: 60px;
    }

    .logo-box img {
        max-width: 40px;
        max-height: 40px;
    }


}