.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
}

.testimonial-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 1.2rem;
    font-style: italic;
}

.testimonial-role {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    color: white;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    width: 100%;
}

.testimonial-controls button {
    border: none;
    cursor: pointer;
    margin: 0 5px;
    color: black;
}
