/* TESTIMONIAL SECTION */

.testimonial-section{
    padding:90px 20px;
    background:#f4f8fc;
}

.testimonial-container{
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.testimonial-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:65px;
}

.testimonial-header span{
    display:inline-block;
    color:#ff6b00;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.testimonial-header h2{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#081120;
    margin-bottom:22px;
}

.testimonial-header p{
    font-size:18px;
    line-height:1.8;
    color:#5b6472;
}

/* GRID */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */

.testimonial-card{
    background:#ffffff;
    border:1px solid #dce7f2;
    border-radius:28px;
    padding:36px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.06);
    border-color:#0d6efd;
}

/* BADGE */

.badge{
    position:absolute;
    top:24px;
    right:24px;
    background:#edf4ff;
    color:#0052cc;
    padding:10px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

/* ICON */

.quote-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:linear-gradient(135deg,#0052cc,#00c853);
    color:#ffffff;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    font-weight:700;
}

/* TEXT */

.review-text{
    font-size:17px;
    line-height:1.9;
    color:#4d5968;
    margin-bottom:32px;
}

/* FOOTER */

.review-footer{
    border-top:1px solid #e5edf5;
    padding-top:22px;
}

.review-footer h4{
    font-size:20px;
    font-weight:700;
    color:#081120;
    margin-bottom:8px;
}

.review-footer span{
    font-size:14px;
    color:#5b6472;
}

/* TRUST BAR */

.trust-bar{
    margin-top:55px;
    background:#ffffff;
    border:1px solid #dce7f2;
    border-radius:24px;
    padding:30px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.trust-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.trust-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#edf7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#0052cc;
    font-weight:700;
}

.trust-content h3{
    font-size:24px;
    font-weight:700;
    color:#081120;
    margin-bottom:8px;
}

.trust-content p{
    font-size:15px;
    color:#5b6472;
    line-height:1.8;
    max-width:760px;
}

/* BUTTON */

.trust-btn a{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,#0052cc,#0077ff);
    color:#ffffff;
    padding:18px 34px;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(0,82,204,0.20);
}

.trust-btn a:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-header h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .testimonial-section{
        padding:70px 16px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-header h2{
        font-size:36px;
    }

    .trust-bar{
        padding:28px 24px;
    }

    .trust-content h3{
        font-size:22px;
    }
}