/* ==========================================
   TESTIMONIALS SECTION STYLES
========================================== */
.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.1);
}

/* Star Rating */
.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.stars i {
    margin: 0 2px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1e3a8a;
}

.author-info span {
    font-size: 0.9rem;
    color: #888;
}

/* Testimonial Pagination */
.testimonial-pagination {
    margin-top: 30px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(30, 58, 138, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }
}