.testimonial {
    background: #f3f5f6;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonial-rating i {
    color: #f6b508;
    margin-right: 6px;
}

.testimonial-page {
    padding: 80px 20px;
    background: #f9fbfc;
}

.testimonial-page .testimonial-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.testimonial-page .testimonial-heading h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.testimonial-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
    gap: 24px;
}

.testimonial-page .testimonial-card {
    flex: 0 0 auto;
    min-height: auto;
    padding: 28px;
}

.testimonial-page .testimonial-card .testimonial-user {
    margin-bottom: 24px;
}

.testimonial-page .testimonial-user .user-info h4 {
    margin-bottom: 6px;
}

.testimonial-page .testimonial-user .user-info span {
    display: block;
}

.testimonial-page .testimonial-text {
    min-height: 120px;
}

.testimonial-page .testimonial-actions {
    margin-top: 30px;
    text-align: center;
}

.testimonial-page .testimonial-actions .btn {
    min-width: 180px;
}
}

.testimonial-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.2;
}

.testimonial-heading p {
    font-size: 18px;
    color: #7a7f85;
    line-height: 1.7;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    min-height: 280px;
}

.quote-icon {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 70px;
    line-height: 1;
    color: #dde3e7;
    font-family: Georgia, serif;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-right: 60px;
}

.testimonial-user img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.2;
}

.user-info span {
    display: block;
    font-size: 14px;
    color: #8a9096;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555b61;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #222;
    color: #fff;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media (max-width: 991px) {
    .testimonial {
        padding: 70px 15px;
    }

    .testimonial-heading h2 {
        font-size: 34px;
    }

    .testimonial-heading p {
        font-size: 16px;
    }

    .testimonial-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-height: 260px;
        padding: 24px;
    }

    .user-info h4 {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .testimonial {
        padding: 60px 12px;
    }

    .testimonial-heading {
        margin-bottom: 35px;
    }

    .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonial-slider-wrapper {
        padding: 0 35px;
    }

    .testimonial-track {
        gap: 15px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 22px 20px;
        border-radius: 16px;
    }

    .testimonial-user {
        gap: 12px;
        margin-bottom: 22px;
        padding-right: 40px;
    }

    .testimonial-user img {
        width: 46px;
        height: 46px;
    }

    .user-info h4 {
        font-size: 18px;
    }

    .user-info span {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .quote-icon {
        font-size: 54px;
        top: 16px;
        right: 16px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .prev {
        left: -2px;
    }

    .next {
        right: -2px;
    }
}
