.ftu-section {
    padding: 80px 20px;
    background: #f8f5ef;
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
}

.ftu-container {
    max-width: 1280px;
    margin: 0 auto;
}

.ftu-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ftu-subtitle {
    color: #0e8d65;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ftu-title {
    font-size: 48px;
    line-height: 1.2;
    color: #183b56;
    margin: 0;
    font-weight: 700;
}

.ftu-slider-wrap {

    position: relative;
}

.ftu-slider {
    padding:30px 0px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.ftu-slider::-webkit-scrollbar {
    display: none;
}

.ftu-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #fff;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    position: relative;
}

.ftu-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #0e8d65;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}

.ftu-card:hover::before {
    transform: scaleX(1);
}

.ftu-card:hover {
    transform: translateY(-8px);
}

.ftu-stars {
    color: #f5b301;
    font-size: 20px;
    margin-bottom: 20px;
}

.ftu-review {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 30px;
}

.ftu-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ftu-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0e8d65;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ftu-name {
    font-size: 18px;
    font-weight: 700;
    color: #183b56;
}

.ftu-role {
    font-size: 14px;
    color: #777;
}

.ftu-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.ftu-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* responsive */
@media (max-width: 1024px) {
    .ftu-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 767px) {
    .ftu-card {
        flex: 0 0 100%;
    }

    .ftu-title {
        font-size: 34px;
    }

    .ftu-review {
        font-size: 16px;
    }
}