/*.review-slider-container {*/
/*    width: 100%;*/
/*    max-width: 600px;*/
/*    margin: 0 auto;*/
/*}*/

.review-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.reviewer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 100%;
    margin: 0;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 8px 0 0;
}

.reviewer-position {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.reviewer-position:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Swiper Pagination */
.review-slider-container .swiper-pagination {
    position: relative;
    /*margin-top: 30px;*/
}

.review-slider-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.review-slider-container .swiper-pagination-bullet-active {
    background: #1a202c;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .review-card {
        padding: 40px 24px;
        gap: 16px;
    }

    .review-text {
        font-size: 16px;
    }

    .reviewer-image {
        width: 60px;
        height: 60px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .reviewer-position {
        font-size: 13px;
    }
}