/*=========================================
      TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    padding:110px 0;
    background:#F8FAFC;
}

.testimonial-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:8px 20px;
    background:#FFF7E6;
    color:#C89B3C;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.testimonial-header h2{
    font-size:46px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:18px;
    line-height:1.2;
}

.testimonial-header p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

.testimonial-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:40px 35px;
    box-shadow:0 15px 45px rgba(15,23,42,.08);
    position:relative;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#C89B3C;
}

.testimonial-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(15,23,42,.15);
}

.rating{
    margin-bottom:25px;
}

.rating i{
    color:#FDBA12;
    font-size:18px;
    margin-right:4px;
}

.quote-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#C89B3C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
}

.testimonial-card p{
    color:#64748B;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
    flex:1;
}

.client-info{
    border-top:1px solid #E5E7EB;
    padding-top:22px;
}

.client-info h4{
    font-size:22px;
    color:#0F172A;
    margin-bottom:6px;
    font-weight:700;
}

.client-info span{
    color:#C89B3C;
    font-size:15px;
    font-weight:600;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.testimonial-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.testimonial-header h2{
    font-size:38px;
}

}

@media(max-width:767px){

.testimonial-section{
    padding:80px 0;
}

.testimonial-wrapper{
    grid-template-columns:1fr;
}

.testimonial-header{
    margin-bottom:45px;
}

.testimonial-header h2{
    font-size:30px;
}

.testimonial-card{
    padding:30px 25px;
}

.quote-icon{
    width:55px;
    height:55px;
    font-size:20px;
}

}