.testi-web-carousel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.testi-web-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testi-web-carousel-slide {
    min-width: 33.333%;
    padding: 50px;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testi-web-testimonial {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-top: 20px;
}

.testi-web-author {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

.testi-web-controls {
    position: absolute;
    top: 50%;
    width: 98%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testi-web-control-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testi-web-carousel-slide {
        min-width: 50%;
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .testi-web-carousel-slide {
        min-width: 100%;
        padding: 10px;
    }
    .testi-web-carousel-slide img {
        width: 40px;
        height: 40px;
    }
}