.testimonial-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 90%;
    max-width: 90%;
    scroll-snap-align: center;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    background-color: #fff;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

.dot-indicators {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

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