.testimonial-slider {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.testimonial-slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}


.testimonial-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.testimonial-text {
   text-align: center;
    font-style: italic;
    font-size: 16px;
    color: #555;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.5;
    margin-top: 10px;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #bbb;
}

.slick-dots li.slick-active button:before {
    color: #333;
}

.slick-prev, .slick-next {
    z-index: 10;
    width: 35px;
    height: 35px;
    background-color: #eee;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-prev:before, .slick-next:before {
    color: #333;
    font-size: 20px;
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        gap: 8px;
    }
}
