.reviews-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-section .swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-section .swiper-wrapper {
    align-items: stretch;
}

.reviews-section .swiper-slide {
    justify-content: center;
}

.reviews-section .swiper-button-prev,
.reviews-section .swiper-button-next {
    color: #111;
}
@media screen and (max-width: 992px) {
    .reviews-section {
        padding: 38px 0;
    }

    .reviews-section .swiper-container {
        padding: 10px 44px;
    }
}
@media screen and (max-width: 576px) {
    .reviews-section .swiper-container {
        padding: 8px 34px;
    }

    .reviews-section .swiper-slide {
        min-height: 180px;
    }
}
.reviews-section .testimonial-card {
    background-color: #f9f9f9;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 20px;
}
.reviews-section .testimonial-card:hover {
    background: linear-gradient(310deg,
            rgba(222, 179, 41, 1),
            rgba(54, 136, 70, 1));
}
.reviews-section .testimonial-card:hover .user-name,
.reviews-section .testimonial-card:hover .user-role,
.reviews-section .testimonial-card:hover .testimonial-text {
    color: #fff;
}
.reviews-section .testimonial-card:hover .star.filled {
    color: #e2d106;
}
.reviews-section .testimonial-card::before {
    position: absolute;
    right: -20px;
    top: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    pointer-events: none;
}
.reviews-section .star-rating .star {
    font-size: 1.25rem;
    margin-right: 2px;
}
.reviews-section .star-rating .star.filled {
    color: #e2d106;
}
.reviews-section .star-rating .star.empty {
    color: #e0e0e0;
}
.reviews-section .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    transition: color 0.3s ease;
    margin-bottom: 40px;
}
.reviews-section .user-name {
    color: #ef0000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.reviews-section .user-role {
    color: #757575;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.reviews-section .avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f70202;
    flex-shrink: 0;
    background: #fff;
    transition: border-color 0.4s ease;
}
.reviews-section .avatar-wrapper img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.reviews-section .testimonial-card:hover .avatar-wrapper {
    border-color: #ffffff;
}
.reviews-section .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.reviews-section .quote-icon {
    position: absolute;
    top: 100px;
    right: 20px;
    filter: brightness(54%);
    transition: filter 0.3s ease;
}

.reviews-section .quote-icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

.reviews-section .testimonial-card:hover .quote-icon {
    filter: brightness(0) invert(1);
}

.title h2 {
    margin: 0;
    color: #FF3131;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}