/* Review Slider Structural & Visual Styles */
.review-slider-wrapper-6b95fae6 {
    position: relative;
    padding: 20px 0 60px;
    width: 100%;
    overflow: hidden;
}

.review-slide-6b95fae6 {
    height: auto;
    display: flex;
}

.review-card-6b95fae6 {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.review-card-6b95fae6:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.rating-quote-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating svg {
    fill: #ffc107;
    width: 20px;
    height: 20px;
}

.quote-icon {
    color: rgba(110, 193, 228, 0.2); /* Soft Primary accent color */
}

.review-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #7A7A7A;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6EC1E4; /* Match primary brand color */
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #54595F;
    margin: 0 0 4px 0;
}

.reviewer-role {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #7A7A7A;
}

/* Custom Swiper Controls with Site Palette */
.review-slider-wrapper-6b95fae6 .swiper-pagination-bullet {
    background: #54595F;
    opacity: 0.3;
}

.review-slider-wrapper-6b95fae6 .swiper-pagination-bullet-active {
    background: #6EC1E4; /* Theme Primary */
    opacity: 1;
    width: 18px;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.review-slider-wrapper-6b95fae6 .swiper-button-next,
.review-slider-wrapper-6b95fae6 .swiper-button-prev {
    color: #6EC1E4;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.review-slider-wrapper-6b95fae6 .swiper-button-next:after,
.review-slider-wrapper-6b95fae6 .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.review-slider-wrapper-6b95fae6 .swiper-button-next:hover,
.review-slider-wrapper-6b95fae6 .swiper-button-prev:hover {
    background: #6EC1E4;
    color: #ffffff;
}

@media (max-width: 767px) {
    .review-slider-wrapper-6b95fae6 .swiper-button-next,
    .review-slider-wrapper-6b95fae6 .swiper-button-prev {
        display: none; /* Hide navigation arrows on mobile for cleaner look */
    }
}
