/* ============================================
   Kollecta Testimonials Slider — Stylesheet
   Author: Vishavjeet for Kollecta
============================================ */

/* Container */
.kt-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

/* Track — holds all slides side by side */
.kt-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

/* Individual slide */
.kt-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding-right: 8px; /* breathing room before nav */
}


/* Testimonial body */
.kt-text {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.65;
    color: #111;
    margin: 0 0 40px;
}

.kt-text p {
    margin: 0;
}

/* Author row */
.kt-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kt-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kt-author-name {
    font-weight: 700;
    font-size: 15px;
    color: #111;
    letter-spacing: 0.01em;
}

.kt-author-designation {
    font-size: 13px;
    color: #666;
}

/* -----------------------------------------------
   Navigation — mirrors the screenshot style
----------------------------------------------- */
.kt-nav {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    justify-content: flex-end;
}

.kt_div_in {
    background: #c9c9c9;
    padding: 3px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 50px;
}

.kt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 0px solid #c9c9c9;
    background: #c9c9c9;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    padding: 0;
    flex-shrink: 0;
}

.kt-btn:hover {
    background: #111;
    border-color: #111;
}

.kt-btn:hover img {
    filter: invert(1);
}

.kt-btn:active {
    transform: scale(0.93);
}

.kt-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.kt-btn:focus-visible {
    outline: 3px solid #0073aa;
    outline-offset: 2px;
}

/* -----------------------------------------------
   Responsive
----------------------------------------------- */
@media (max-width: 600px) {
    .kt-slider {
        padding: 32px 24px 28px;
    }

    .kt-quote-mark {
        font-size: 64px;
        margin-bottom: 16px;
    }

    .kt-nav {
        justify-content: flex-start;
    }
}
