/*==================================================
TESTIMONIALS
==================================================*/

.testimonial-section{

    position:relative;

    padding:130px 0;

    overflow:hidden;

    background:#080808;

}

.testimonial-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-250px;

    top:-250px;

    border-radius:50%;

    background:radial-gradient(circle,#D4AF3720,transparent 70%);

}

.testimonial-section::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    bottom:-250px;

    border-radius:50%;

    background:radial-gradient(circle,#FFD9E820,transparent 70%);

}

.testimonial-heading{

    text-align:center;

    max-width:720px;

    margin:auto;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

/*=========================*/

.testimonialSlider{

    overflow:hidden;

    padding:20px 0 70px;

    position:relative;

    z-index:2;

}

.testimonial-card{

    position:relative;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:45px;

    transition:.45s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 20px 60px rgba(212,175,55,.15);

}

.quote{

    width:75px;

    height:75px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    background:linear-gradient(135deg,#FFD9E8,#D4AF37);

    color:#111;

    font-size:34px;

}

.testimonial-card p{

    color:#d5d5d5;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.client{

    display:flex;

    align-items:center;

    gap:18px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #D4AF37;

}

.client h4{

    color:#fff;

    margin:0;

    font-size:20px;

    font-family:'Space Grotesk',sans-serif;

}

.client span{

    color:#bdbdbd;

    font-size:15px;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.3;

}

.swiper-pagination-bullet-active{

    width:35px;

    border-radius:20px;

    background:#D4AF37;

    opacity:1;

}

@media(max-width:768px){

    .testimonial-section{

        padding:90px 0;

    }

    .testimonial-card{

        padding:30px;

    }

    .testimonial-card p{

        font-size:16px;

    }

    .quote{

        width:60px;

        height:60px;

        font-size:26px;

    }

    .client img{

        width:60px;

        height:60px;

    }

}