/* Testimonial Icons CSS */

/* Style for testimonial author images */
.testimonial-author-image,
.testimonial-carousel-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 30px;
}

/* Hide the placeholder images */
.testimonial-author-image img,
.testimonial-carousel-author-image img {
    display: none;
}

/* Default user icon */
.testimonial-author-image::after,
.testimonial-carousel-author-image::after {
    content: "👤";
}

/* Specific user icons based on name */
.testimonial-author[data-name="Sarah Johnson"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Sarah Johnson"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Ama Mensah"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Ama Mensah"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Grace Owusu"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Grace Owusu"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Fatima Ibrahim"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Fatima Ibrahim"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Abena Darko"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Abena Darko"] .testimonial-carousel-author-image::after {
    content: "👩";
}

.testimonial-author[data-name="Michael Osei"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Michael Osei"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="David Asante"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="David Asante"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Daniel Mensah"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Daniel Mensah"] .testimonial-carousel-author-image::after {
    content: "👨";
}

/* Business users */
.testimonial-author[data-name="James Kwarteng"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="James Kwarteng"] .testimonial-carousel-author-image::after,
.testimonial-author[data-name="Rebecca Agyeman"] .testimonial-author-image::after,
.testimonial-carousel-author[data-name="Rebecca Agyeman"] .testimonial-carousel-author-image::after {
    content: "💼";
}

/* Colorful backgrounds for the icons */
.testimonial-author-image,
.testimonial-carousel-author-image {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(46, 139, 87, 0.2);
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

/* Hover effect */
.testimonial-author-image:hover,
.testimonial-carousel-author-image:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Additional styling for specific icons */
/* Female icons */
.testimonial-author[data-name="Sarah Johnson"] .testimonial-author-image,
.testimonial-carousel-author[data-name="Sarah Johnson"] .testimonial-carousel-author-image,
.testimonial-author[data-name="Ama Mensah"] .testimonial-author-image,
.testimonial-carousel-author[data-name="Ama Mensah"] .testimonial-carousel-author-image,
.testimonial-author[data-name="Grace Owusu"] .testimonial-author-image,
.testimonial-author[data-name="Fatima Ibrahim"] .testimonial-author-image,
.testimonial-author[data-name="Abena Darko"] .testimonial-author-image {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(232, 62, 140, 0.2);
}

/* Male icons */
.testimonial-author[data-name="Michael Osei"] .testimonial-author-image,
.testimonial-carousel-author[data-name="Michael Osei"] .testimonial-carousel-author-image,
.testimonial-author[data-name="David Asante"] .testimonial-author-image,
.testimonial-carousel-author[data-name="David Asante"] .testimonial-carousel-author-image,
.testimonial-author[data-name="Daniel Mensah"] .testimonial-author-image {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(46, 139, 87, 0.2);
}

/* Business icons */
.testimonial-author[data-name="James Kwarteng"] .testimonial-author-image,
.testimonial-author[data-name="Rebecca Agyeman"] .testimonial-author-image {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(0, 86, 179, 0.2);
}
