/* Testimonial carousel styles */
.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-image.active {
    opacity: 1;
}

/* Animation keyframes */
@keyframes commentRollOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes commentRollIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress indicators */
.prg-image {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.prg-image-active {
    opacity: 1;
}

/* Rating stars */
.rating-block {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rating-block .iconify {
    color: #FFD700;
}
