/* --- General Section Styling --- */
.luxury-testi-section {
    background-color: #161513; /* Deep dark background */
    color: #ffffff;
    overflow: hidden;
}

/* --- Left Column --- */
.left-testi-col {
    overflow-y: auto !important; /* Changed from hidden to auto */
    overflow-x: hidden !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}
.left-testi-col::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.sub-heading {
    font-size: 14px;
    letter-spacing: 2px;
    color: #a0a0a0;
    font-weight: 500;
}

.main-heading {
    font-family: var(--font-03);
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
}

/* --- Swiper Content --- */
.luxury-testi-swiper {
    width: 100%;
    padding-bottom: 20px;
}

.quote-icon {
    font-family: var(--font-03);
    font-size: 5rem;
    line-height: 1;
    color: #cfa16b; /* Gold color */
    margin-bottom: -20px;
}

.testi-text {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    font-weight: 300;
    max-width: 90%;
    font-family: var(--font-02);
}

/* --- Author Profile --- */
.author-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font-03);
}

.author-designation {
    font-size: 14px;
    color: #888888;
    font-family: var(--font-03);
}

/* --- Navigation Buttons --- */
.testi-nav-wrap {
    position: relative;
    z-index: 10;
}

.custom-nav-btn {
    position: static; /* Removes absolute positioning from default swiper */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.custom-nav-btn::after {
    display: none; /* Hide default swiper icon font */
}

.custom-nav-btn i {
    font-size: 14px;
}

.custom-nav-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* --- Right Image Column --- */
.right-image-col {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px; /* For mobile stacking */
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-left: 0px; /* Optically center the play triangle */
}

.play-btn-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    color: #000000;
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .left-testi-col {
        min-height: auto;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .right-image-col {
        min-height: 500px;
    }
    .main-heading {
        font-size: 2.2rem;
    }
}