
/* =========================================
TESTIMONIALS SECTION
========================================= */

.testimonials-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #000000 0%,
        #050505 100%
    );

    padding:15px 0;
}

/* =========================================
BACKGROUND GLOW
========================================= */

.testimonials-glow{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:700px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.08),
        transparent 70%
    );

    filter:blur(100px);

    pointer-events:none;
}

/* =========================================
TOP
========================================= */

.testimonials-top{
    text-align:center;
    margin-bottom:70px;
}

.testimonials-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 24px;

    border-radius:999px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.18);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.testimonials-title{
    max-width:820px;
    margin:auto;

    font-size:52px;
    line-height:1.2;
    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;
}

.testimonials-desc{
    max-width:760px;
    margin:auto;

    font-size:16px;
    line-height:1.9;

    color:#9f9f9f;
}

/* =========================================
SLIDER
========================================= */

.testimonials-slider{
    position:relative;
    overflow:hidden;
}

.testimonials-track{
    display:flex;
    gap:30px;

    transition:0.5s ease;
}

/* =========================================
CARD
========================================= */

.testimonial-card{
    min-width:calc(33.333% - 20px);

    position:relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,0.05),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:32px;

    padding:40px 34px;

    overflow:hidden;

    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,0.3);
}

/* =========================================
TOP BAR
========================================= */

.testimonial-top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:28px;
}

/* =========================================
PROFILE
========================================= */

.testimonial-profile{
    display:flex;
    align-items:center;
    gap:16px;
}

.testimonial-profile img{
    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid rgba(255,0,0,0.25);
}

.testimonial-profile h4{
    font-size:20px;
    font-weight:700;

    color:#ffffff;

    margin-bottom:6px;
}

.testimonial-profile span{
    font-size:14px;

    color:#9f9f9f;
}

/* =========================================
RATING
========================================= */

.testimonial-rating{
    display:flex;
    gap:5px;

    color:#ff2b2b;

    font-size:14px;
}

/* =========================================
TEXT
========================================= */

.testimonial-text{
    font-size:15px;
    line-height:2;

    color:#bcbcbc;

    margin-bottom:28px;
}

/* =========================================
QUOTE ICON
========================================= */

.testimonial-quote{
    width:64px;
    height:64px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    font-size:24px;

    box-shadow:
    0 10px 30px rgba(255,0,0,0.25);
}

/* =========================================
ARROWS
========================================= */

.testimonial-controls{
    display:flex;
    justify-content:center;
    gap:20px;

    margin-top:50px;
}

.testimonial-btn{
    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    font-size:18px;

    transition:0.3s ease;
}

.testimonial-btn:hover{
    transform:translateY(-4px) scale(1.05);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .testimonial-card{
        min-width:calc(50% - 15px);
    }

}

@media(max-width:768px){

    .testimonials-section{
        padding:90px 0;
    }

    .testimonials-title{
        font-size:36px;
    }

    .testimonials-desc{
        font-size:14px;
    }

    .testimonial-card{
        min-width:100%;
        padding:34px 28px;
    }

}

@media(max-width:576px){

    .testimonials-title{
        font-size:30px;
    }

    .testimonial-profile{
        flex-direction:column;
        align-items:flex-start;
    }

    .testimonial-top{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

}

