 
/* ✅ Align Name + Stars Inline */
.name-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.name-rating h6 {
    white-space: nowrap;
    margin-bottom: 0;
}

/* ✅ Solid Star Icon */
.rating {
    display: flex;
    gap: 4px;
}

.rating .star {
    width: 18px;
    height: 18px;
    background: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png') no-repeat center;
    background-size: contain;
}

/* ✅ White stars on Orange Cards */
.testimonialSwiper .swiper-slide:nth-child(odd) .rating .star {
    filter: brightness(0) invert(1);
}

/* ✅ Black stars on Peach Cards */
.testimonialSwiper .swiper-slide:nth-child(even) .rating .star {
    filter: brightness(0);
}

/* ✅ Cards */
.testimonialSwiper .testimonial-card {
    border-radius: 12px;
    min-height: 260px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ✅ Background Colors */
.testimonialSwiper .swiper-slide:nth-child(odd) {
    background: #F38221;
    color: #fff;
}

.testimonialSwiper .swiper-slide:nth-child(even) {
    background: #F9EFEE;
    color: #000;
}

/* ✅ Left Positioned Pagination */
.testimonialSwiper {
    padding-bottom: 50px;
}
.testimonialSwiper .swiper-pagination {
    text-align: left !important;
    padding-left: 15px;
    bottom: -2px !important;
}
.testimonialSwiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #d6d6d6 !important;
    opacity: 1;
}
.testimonialSwiper .swiper-pagination-bullet-active {
    background: #F38221 !important;
}

/* ✅ Quote Icon */
.quote-icon {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* ✅ Mobile */
@media (max-width: 768px) {
    .testimonialSwiper {
        padding-bottom: 60px;
    }
    .testimonialSwiper .swiper-pagination {
        padding-left: 10px;
        bottom: -20px !important;
    }
}