.atk-testimonials {
    padding: 120px 40px;
    background: #f6f6f6;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.atk-heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.atk-heading p {
    color: #666;
    margin-bottom: 60px;
}

.atk-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.atk-track {
    display: flex;
    gap: 40px;
    scroll-behavior: smooth;
}

.atk-card {
    min-width: 500px;
    background: #1f1f35;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 16px;
    transition: 0.4s;
}

.atk-card:hover {
    transform: translateY(-8px);
}

.atk-avatar {
    width: 180px;
    text-align: center;
    position: relative;
}

.atk-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #ff5a00;
}

.atk-avatar::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: url('../images/chakra.png') center/contain no-repeat;
    top: -30px;
    left: 0;
    opacity: 0.3;
    animation: atkRotate 20s linear infinite;
}

.atk-avatar h4 {
    margin-top: 10px;
    font-size: 16px;
}

.atk-stars {
    color: gold;
    font-size: 14px;
}

.atk-content {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.atk-content p {
    line-height: 1.7;
    font-size: 15px;
}

.atk-btn {
    position: absolute;
    background: #ff5a00;
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.atk-left { left: 10px; }
.atk-right { right: 10px; }

@keyframes atkRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MOBILE */
@media(max-width:768px){
    .atk-card {
        min-width: 85vw;
        flex-direction: column;
        text-align: center;
    }

    .atk-content {
        padding-left: 0;
        margin-top: 10px;
    }
}