/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial-section{
    padding:100px 0;
    /* background:linear-gradient(135deg,#003399,#005eff,#0099ff); */
    overflow:hidden;
    position:relative;
    /*margin-top: 190px; */
}

.container{
    width:90%;
    margin:auto;
}

.heading{
    text-align:center;
    margin-bottom:70px;
}

.heading span{
    color:#042A69;
    font-weight:600;
    letter-spacing:2px;
}

.heading h2{
    color:#042A69;
    font-size:50px;
    margin:15px 0;
    font-weight:800;
}

.heading p{
    color:#042A69;
    max-width:700px;
    margin:auto;
}

/* Slider */

.slider{
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    gap:30px;
    width:calc(350px * 20);
    animation:scroll 40s linear infinite;
}

.slide-track:hover{
    animation-play-state:paused;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-350px * 10));
    }
}

/* White Cards */

.testimonial-box{
    min-width:320px;
    background:#ffffff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.testimonial-box:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.testimonial-box img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #0080ff;
    margin-bottom:15px;
}

.testimonial-box h4{
    color:#002b6b;
    font-size:22px;
    margin-bottom:5px;
}

.testimonial-box span{
    color:#0080ff;
    font-size:14px;
    display:block;
    margin-bottom:15px;
}

.testimonial-box p{
    color:#555;
    line-height:1.8;
    font-size:15px;
    margin-bottom:15px;
}

.stars{
    color:#FFD700;
    font-size:20px;
}

/* Floating Glow */

.glow{
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    top:-100px;
    left:-100px;
    filter:blur(100px);
}

.glow2{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-150px;
    bottom:-150px;
    filter:blur(100px);
}

/* Responsive */

@media(max-width:768px){

.heading h2{
    font-size:34px;
}
.testimonial-box{
    min-width:280px;
    padding:25px;
}

}
