.testimonial-swiper {
    padding: 30px;
    overflow: hidden;
}

.swiper-slide {
    width: 90%;
    max-width: 700px;
    height: auto;
    transition: all 0.3s ease;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.testimonial-card .card-body .row {
    flex-grow: 1;
}

.swiper-slide-active .testimonial-card {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.2);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars .bi {
    color: #ffc107;
}

.testimonial-card h5,
.testimonial-card p {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

.testimonial-tag {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    font-weight: 500;
    padding: 0.5em 0.75em;
}

@media (max-width: 767px) {
    .testimonial-card h5,
    .testimonial-card p {
        font-size: 0.9rem;
    }

    .swiper-slide {
        width: 85%;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}
