/*=============================
CLIENT FEEDBACK
=============================*/

.feedback-section{

    padding:100px 0;
    background:#F8FAFC;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* Heading */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:#2563EB;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;

}

.section-title h2{

    font-size:52px;
    margin:15px 0;
    color:#0F172A;
    font-weight:700;

}

.section-title p{

    color:#64748B;
    max-width:750px;
    margin:auto;
    line-height:32px;
    font-size:18px;

}

/* Cards */

.feedback-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.feedback-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feedback-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.stars{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

.feedback-card p{

    color:#64748B;

    line-height:30px;

    margin-bottom:25px;

}

/* Client */

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    color:#0F172A;

    margin-bottom:5px;

}

.client span{

    color:#2563EB;

    font-size:15px;

}

/* Statistics */

.stats{

    margin-top:60px;

    background:#fff;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.stat-box{

    padding:35px;

    text-align:center;

    border-right:1px solid #EDF2F7;

}

.stat-box:last-child{

    border-right:none;

}

.stat-box h3{

    font-size:42px;

    color:#2563EB;

    margin-bottom:10px;

}

.stat-box p{

    color:#64748B;

    font-size:17px;

}

/* Responsive */

@media(max-width:992px){

.feedback-grid{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.section-title h2{

font-size:36px;

}

.stats{

grid-template-columns:1fr;

}

.feedback-card{

padding:25px;

}

}