  /* Clients Testimonials start */
  .testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 24px;
    color: #000;
}

.testimonials-section h3 {
    font-size: 36px;
    margin: 10px 0 30px;
    color: #1b6baa;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 20px;
    margin: 0;
    color: #333;
}

.testimonial-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.dots {
    margin-top: 20px;
}

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

.dots span.active {
    background-color: #333;
}

@media (max-width: 768px) {
    .testimonial-cards {
        display: block;
        max-width: 100%;
    }

    .testimonial-card {
        margin: 0 auto 20px;
        max-width: 90%;
    }

    .dots {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dots span {
        width: 12px;
        height: 12px;
    }
}


/* Clients Testimonials End */