.testimonials {
    width: 1200px;
    margin: 100px auto;
    text-align: center;
}

.section-subtitle {
    color: #E58411;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-top: 20px;
    margin-bottom: 70px;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.testimonial-card {
    width: 370px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-box {
    width: 90%;
    background: white;
    border-radius: 20px;
    padding: 60px 25px 25px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.profile {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;

    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.review-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.review-box span {
    font-size: 13px;
    color: #8D8D8D;
}

.review-box p {
    margin-top: 18px;
    color: #6F6F6F;
    font-size: 14px;
    line-height: 1.7;
}

.stars {
    margin-top: 20px;
    color: #F6B76F;
    letter-spacing: 3px;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow.left {
    left: -25px;
}

.arrow.right {
    right: -25px;
}

.arrow i {
    color: #1E1E1E;
    font-size: 16px;
}