/* HOME TESTIMONIALS */

.home-testimonials{
    position:relative;
    background:#07111f;
    overflow:hidden;
}



.home-testimonials .inner-section{
    position:relative;
    z-index:2;
}

.testimonial-heading{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.testimonial-heading span{
    display:inline-block;
    color:#00c6ff;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.testimonial-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.3;
}

.testimonial-heading p{
    color:#b5c0d0;
    font-size:16px;
    line-height:28px;
}

.testimonial-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:.4s;
    overflow:hidden;
    margin-bottom:30px;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color: #06b453;
}
.quote-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    background: linear-gradient(135deg, #06b453, #048a3f);
}

.quote-icon i{
    color:#fff;
    font-size:24px;
}

.testimonial-card p {
    color: #d4deea;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: var(--font-02);
}

.testimonial-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:20px;
}

.client-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-01);
}

.client-info span {
    color: #94a6bf;
    font-size: 14px;
    font-family: var(--font-02);
}

.stars{
    color:#ffbf00;
    font-size:18px;
    letter-spacing:2px;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-heading h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .home-testimonials{
        padding:70px 0;
    }

    .testimonial-heading h2{
        font-size:28px;
    }

}