/* Testimonials Section Styles */
.testimonials-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Star Rating Styles */
.star-rating {
    gap: 0.25rem;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    color: #fbbf24;
}

/* Avatar Circle Styles */
.avatar-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-circle.blue-teal {
    background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
}

.avatar-circle.green-teal {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.avatar-circle.purple-blue {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
}

/* Practice Link Styles */
.practice-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.practice-link:hover {
    color: #4f46e5;
    text-decoration: none;
}

.practice-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: linear-gradient(90deg, #6366f1, #14b8a6);
    transition: width 0.3s ease-in-out;
}

.practice-link:hover::after {
    width: 100%;
}
