/* Testimonial Initial-Based Avatars */

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #BF1A1A, #FF6C0C);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonial-avatar::before {
    content: attr(data-initials);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Different gradient colors for variety */
.testimonial-avatar:nth-of-type(1) {
    background: linear-gradient(135deg, #BF1A1A, #FF6C0C);
}

.testimonial-avatar:nth-of-type(2) {
    background: linear-gradient(135deg, #FF6C0C, #BF1A1A);
}

.testimonial-avatar:nth-of-type(3) {
    background: linear-gradient(135deg, #060771, #BF1A1A);
}

/* Hover effect */
.testimonial-item:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(191, 26, 26, 0.3);
}

.testimonial-avatar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}