#testimonials-section {
    padding: 100px 0;
    background-color: #fAfAfA !important;
    overflow: hidden;
}

#testimonials-section .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-swiper {
    padding: 20px 0 60px !important;
}

/* Equal height cards */
.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(182, 72, 245, 0.1);
    position: relative;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(182, 72, 245, 0.1);
}

.testimonial-card i.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: rgba(182, 72, 245, 0.1);
}

.stars {
    display: flex;
    gap: 5px;
    color: #ffcc00;
    font-size: 14px;
}

.testimonial-content p {
    color: var(--color-text-grey);
    line-height: 1.8;
    font-size: 16px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-purple);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: 500;
}

/* Swiper Pagination Styling */
.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-purple);
    opacity: 0.3;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    #testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px;
    }
}