/* Testimonials Enhanced Styles */

.testimonial-section-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.testimonial-card-modern {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    margin: 15px; /* Spacing for swiper */
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Quote Icon Decoration */
.testimonial-card-modern::before {
    content: '\f10d'; /* FontAwesome Quote Left */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card-modern:hover::before {
    color: rgba(59, 130, 246, 0.1);
    transform: scale(1.1);
}

/* Rating */
.testimonial-rating-modern {
    margin-bottom: 20px;
}

.testimonial-rating-modern i {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Text */
.testimonial-text-modern {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 30px;
}

/* Author Info */
.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f9ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.author-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.author-info-modern span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}
