/* --- SECTION STYLES --- */
.sec-testimonials {
    padding: 80px 0;
    background-color: #f9fbfc;
    position: relative;
}

/* --- HEADER STYLES --- */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* --- NAVIGATION BUTTONS --- */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002244;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.swiper-nav-btn:hover {
    background-color: #002244;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 34, 68, 0.2);
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .header-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .nav-buttons {
        align-self: flex-end;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .swiper-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* --- SWIPER CONTAINER FIX --- */
.testimonial-swiper {
    padding-bottom: 60px !important;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8f9fa;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0;
}

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

/* --- PROFILE IMAGE --- */
.client-img-wrapper {
    width: 90px;
    height: 90px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.client-icon {
    font-size: 2.5rem;
    color: #002244;
}

/* --- CONTENT --- */
.rate {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.text-muted-star {
    color: #e0e0e0;
}

.client-name {
    color: #002244;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

blockquote {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    padding: 0 10px;
}

.client-position {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* --- PAGINATION DOTS (Bottom) --- */
.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #3b5998;
    width: 30px;
    border-radius: 5px;
}

.swiper-wrapper {
    align-items: stretch;
}
.swiper-slide {
    height: auto;
}
