.testimonial-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
    margin-top: 82vh;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0 10px;
    /* Adaugă margini pentru a preveni tăierea */
}

.testimonial-card {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    background-color: #ff4848ad;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    overflow: hidden;
}

.testimonial-card:hover {
    background-color: #ff484871;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.user-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #FF4848;
    font-size: 32px;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
    color: white;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-desc {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: #FF4848;
    transition: background-color 0.3s;
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    @media (max-width: 768px) {
        .testimonial-container {
            position: relative;
            max-width: 1200px;
            width: 100%;
            overflow: hidden;
            padding: 0 50px;
            margin-top: 55vh;
        }
    }
}