/* Swiper Testimonial Styles */
.swiper {
    padding: 2rem 0;
}
/* Dim side slides */
@media (min-width:450px){
.swiper-slide-active {
  opacity: 0.4;              /* default dim for non-active slides */
  transform: scale(0.95);    /* slightly smaller for depth */
  transition: all 0.4s ease;
}}

/* Active (center) slide */
/* .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
} */

.swiper-slide {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #DFE1E7;
    padding: 30px;
    max-width: 470px;
    box-sizing: border-box;
    height: auto !important;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-header .name {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-header .location {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.star-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.star-rating svg {
    width: 16px;
    height: 16px;
    fill: #f5c518;
}

.testimonial-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}