#testimoni {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    background-image: url("/masterplans/assets/testimonibg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#testimoni .container {
    position: relative;
    margin-top: 75px;
    margin-bottom: 100px;
}

#testimoni h1 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    color: #2c4964;
}

#testimoni h2 {
    margin: 0;
    font-size: 48px;
    color: #2c4964;
}

#testimoni .row {
    margin-top: 40px;
}

.new-card {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
    cursor: grab;
}

.new-card::-webkit-scrollbar {
    display: none;
}

.new-card.grabbing {
    cursor: grabbing;
}

.dots-indicator {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

.testimoni-scrap {
    position: relative;
    z-index: 10;
}

.testimoni-scrap img {
    position: absolute;
    top: -10px;
    left: 75px;
    width: 250px;
    height: 200px;
    object-fit: cover;
    z-index: -1;
}

.card-container {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.testimonial-card {
    width: 475px;
    min-height: 400px;
    background-color: white;
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
    position: relative;
    border-radius: 20px;
    padding-bottom: 30px;
    flex-shrink: 0;
    border-bottom: 10px solid #bfbfbf;
}

.card-content {
    padding: 24px;
    flex-grow: 1;
}

.header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    border: 3px solid #ff9800;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.title {
    font-size: 14px;
    color: #ff9906;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    padding: 0px 16px;
    max-height: calc(1.6em * 10);
    overflow: hidden;
    text-overflow: ellipsis;
}

.quote-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    fill: #ff9800;
}

@media (min-width: 1024px) {

    .testimonial-text,
    .testimonial-card {
        user-select: none;
    }

    .testimonial-card {
        -webkit-user-drag: none;

    }
}

/* Mobile */
@media (max-width: 767px) {
    #testimoni .container {
        margin-top: 40px;
        margin-bottom: 60px;
        padding: 0 16px;
    }

    #testimoni h1,
    #testimoni h2 {
        font-size: 28px;
        text-align: start;
    }

    .new-card {
        gap: 12px;
        padding: 0 10px;
    }

    .testimonial-card {
        width: 350px;
        min-height: 350px;
        padding-bottom: 20px;
        border-radius: 16px;
        border-bottom: 8px solid #bfbfbf;
    }

    .testimoni-scrap {
        position: relative;
        z-index: 10;
    }

    .testimoni-scrap img {
        position: absolute;
        top: -25px;
        left: 35px;
        width: 150px;
        height: 150px;
        object-fit: cover;
        z-index: -1;
    }

    .card-content {
        padding: 16px;
    }

    .avatar {
        width: 60px;
        height: 60px;
    }

    .name {
        font-size: 16px;
    }

    .title {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 13px;
        padding: 0 10px;
    }

    .quote-icon {
        width: 24px;
        height: 24px;
        bottom: 12px;
        right: 12px;
    }

    .dots-indicator {
        display: flex;
        justify-content: center;
        margin-top: 16px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #ccc;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .dot.active {
        background-color: #717171;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    #testimoni .container {
        margin-top: 60px;
        margin-bottom: 80px;
        padding: 0 24px;
    }

    #testimoni h1,
    #testimoni h2 {
        font-size: 36px;
        text-align: start;
    }

    .new-card {
        gap: 16px;
        padding: 0 16px;
    }

    .testimonial-card {
        width: 400px;
        min-height: 380px;
        padding-bottom: 24px;
        border-radius: 18px;
        border-bottom: 9px solid #bfbfbf;
    }

    .testimoni-scrap {
        position: relative;
        z-index: 10;
    }

    .testimoni-scrap img {
        position: absolute;
        top: -50px;
        left: 35px;
        width: 225px;
        height: 225px;
        object-fit: cover;
        z-index: -1;
    }

    .card-content {
        padding: 20px;
    }

    .avatar {
        width: 70px;
        height: 70px;
    }

    .name {
        font-size: 18px;
    }

    .title {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 14px;
        padding: 0 14px;
    }

    .quote-icon {
        width: 26px;
        height: 26px;
        bottom: 14px;
        right: 14px;
    }
}