/* Testimonials Slider Styles */
.nd-testimonials-slider-container {
    padding-bottom: 20px;
    text-align: center;
}

.nd-testimonials-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #172748;
    margin-bottom: 40px;
}

/* Card Structure */
.nd-testimonial-card {
    background-color: #eaf2ff;
    border-radius: 24px;
    padding: 30px;
    height: 240px;
    /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s;
}

.nd-testimonial-quote {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 20px;
    font-style: italic;
    /* Limit lines if too long? */
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Section */
.nd-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nd-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nd-testimonial-info {
    display: flex;
    flex-direction: column;
}

.nd-testimonial-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #172748;
    margin: 0 0 2px 0;
}

.nd-testimonial-role {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

/* Swiper Pagination */
.nd-testimonials-pagination {
    position: static !important;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #0D1B3E;
}