/* =========================================
   TESTIMONIALS SECTION
========================================= */

.atk-testimonials {
    padding: 100px 40px;
    background: #f7f7f9;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.atk-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.atk-heading h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 14px;
}

.atk-heading p {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

/* =========================================
   WRAPPER
========================================= */

.atk-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.atk-track {
    display: flex;
    gap: 32px;
    scroll-behavior: smooth;
}

/* =========================================
   CARD
========================================= */

.atk-card {
    min-width: 560px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 34px;
    background: #24243d;
    border-radius: 22px;
    transition: all .35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.atk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

/* =========================================
   AVATAR
========================================= */

.atk-avatar {
    width: 170px;
    min-width: 170px;
    text-align: center;
    flex-shrink: 0;
}

.atk-avatar img {
    width: 120px;
    height: 120px;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ff5a00;
    background: #fff;
    transition: transform .35s ease;
}

.atk-card:hover .atk-avatar img {
    transform: scale(1.05);
}

.atk-avatar h4 {
    margin-top: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.atk-stars {
    margin-top: 8px;
    color: #FFD700;
    font-size: 17px;
    letter-spacing: 2px;
}

/* =========================================
   CONTENT
========================================= */

.atk-content {
    flex: 1;
    text-align: left;
}

.atk-content p {
    color: rgba(255,255,255,.96);
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

/* =========================================
   BUTTONS
========================================= */

.atk-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #ff5a00;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(255,90,0,.35);
}

.atk-btn:hover {
    background: #ff7426;
    transform: translateY(-50%) scale(1.08);
}

.atk-left {
    left: 12px;
}

.atk-right {
    right: 12px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .atk-testimonials {
        padding: 80px 24px;
    }

    .atk-heading h2 {
        font-size: 34px;
    }

    .atk-heading p {
        font-size: 17px;
    }

    .atk-card {
        min-width: 88vw;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

    .atk-testimonials{
        padding:70px 20px;
    }

    .atk-heading{
        margin-bottom:45px;
    }

    .atk-heading h2{
        font-size:30px;
    }

    .atk-heading p{
        font-size:16px;
    }

    .atk-card{
        min-width:90vw;
        flex-direction:column;
        text-align:center;
        padding:30px 24px;
        gap:20px;
    }

    .atk-avatar{
        width:100%;
        min-width:auto;
    }

    .atk-avatar img{
        width:110px;
        height:110px;
    }

    .atk-avatar h4{
        font-size:20px;
    }

    .atk-stars{
        font-size:16px;
    }

    .atk-content{
        text-align:center;
    }

    .atk-content p{
        font-size:16px;
        line-height:1.8;
    }

    .atk-btn{
        width:48px;
        height:48px;
        font-size:20px;
    }

}