.testimonials-section{
    max-width:1200px;
    margin:50px auto;
    padding:20px;
    font-family:'Open Sans',sans-serif;
    background:#f4f8fc;
}

/* Title */
.section-title{
    text-align:center;
    background:linear-gradient(135deg,#005daa,#0077d4);
    color:#fff;
    padding:35px;
    border-radius:15px;
    margin-bottom:40px;
    box-shadow:0 10px 25px rgba(0,93,170,0.20);
}

.section-title h1{
    margin:0;
    font-size:38px;
    letter-spacing:2px;
}

.section-title p{
    margin-top:10px;
    font-size:16px;
}

/* One card per row */
.testimonial-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* Testimonial Box */
.testimonial-card{
    position:relative;
    background:#ffffff;
    border:2px solid #d8e8ff;
    border-radius:18px;
    padding:30px 35px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
}

/* Rotary Blue Accent */
.testimonial-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:linear-gradient(
        to bottom,
        #005daa,
        #0085ff
    );
}

/* Decorative Corner */
.testimonial-card::after{
    content:"❝";
    position:absolute;
    right:20px;
    top:10px;
    font-size:90px;
    color:rgba(0,93,170,0.06);
    font-family:Georgia, serif;
}

/* Hover */
.testimonial-card:hover{
    transform:translateY(-6px);
    border-color:#005daa;
    box-shadow:0 15px 35px rgba(0,93,170,0.18);
    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
}

/* Text */
.testimonial-card p{
    color:#333;
    line-height:1.9;
    font-size:15px;
    margin-bottom:15px;
    text-align:justify;
}

/* Author Box */
.author{
    margin-top:25px;
    padding:18px 22px;
    background:linear-gradient(
        135deg,
        #eef6ff,
        #f8fbff
    );
    border:1px solid #cfe3ff;
    border-left:5px solid #005daa;
    border-radius:12px;
    color:#005daa;
    font-weight:600;
    line-height:1.8;
    transition:all .3s ease;
}

/* Author Hover */
.testimonial-card:hover .author{
    background:linear-gradient(
        135deg,
        #dceeff,
        #eef7ff
    );
    transform:translateX(6px);
}

/* Mobile */
@media(max-width:768px){

    .testimonial-card{
        padding:20px;
    }

    .section-title h1{
        font-size:28px;
    }

}