/* Testimonials Section Styles - Modern ve Sade Tasarım */
.testimonials-section {
    position: relative;
    padding: 80px 0;
    background-color: #fafbff;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(79, 70, 229, 0.03) 0%, transparent 45%);
    z-index: -1;
}

/* Badge */
.bg-soft-primary {
    background-color: rgba(79, 70, 229, 0.1);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.text-primary {
    color: #4f46e5 !important;
}

/* Testimonial Cards */
.testimonial-container {
    padding: 1.5rem 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.avatar-wrapper {
    flex-shrink: 0;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-info h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1e293b;
}

.role {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

/* Rating Stars */
.rating {
    color: #f59e0b;
    font-size: 0.85rem;
}

.rating i {
    margin-right: 2px;
}

/* Testimonial Text */
.testimonial-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(79, 70, 229, 0.1);
    margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 22px;
        margin-bottom: 1rem;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
    }
    
    .user-info h5 {
        font-size: 0.95rem;
    }
    
    .role {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}