.testi-dark-section {
    background-color: var(--color-2);
    padding: 100px 0;
    color: #ffffff;
}

/* Custom Navigation Buttons */
.testi-dark-section .custom-nav-wrapper {
    display: flex;
    gap: 15px;
}

.testi-dark-section .swiper-btn-orange {
    width: 45px;
    height: 45px;
    background-color: var(--color-1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.8;
}

.testi-dark-section .swiper-btn-orange:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* --- LEFT COLUMN: Image & Badge --- */
.testi-dark-section .testi-left-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.testi-dark-section .trusted-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-dark-section .avatar-group {
    display: flex;
}

.testi-dark-section .avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #222;
    margin-left: -15px;
    object-fit: cover;
}

.testi-dark-section .avatar-group img:first-child {
    margin-left: 0;
}

.testi-dark-section .trusted-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #ddd;
    font-family: var(--font-01);
}

.testi-dark-section .trusted-text p span {
    color: var(--color-1);
    font-weight: 700;
}

.testi-dark-section .trusted-text small {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-02);
}

/* --- RIGHT COLUMN: Swiper Content --- */
.testi-dark-section .testimonial-content-box {
    padding: 20px 10px;
}

.testi-dark-section .testi-stars {
    color: var(--color-1);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testi-dark-section .testi-details p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: var(--font-02);
}

.testi-dark-section .client-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-dark-section .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.testi-dark-section .client-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.testi-dark-section .client-designation {
    font-size: 16px;
    color: #999999;
    margin: 0;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    .testi-dark-section .testi-left-image {
        min-height: 300px;
        margin-bottom: 20px;
    }
    .testi-dark-section .testi-main-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .testi-dark-section .trusted-badge {
        left: 15px;
        bottom: 15px;
        padding: 10px 15px;
    }
}