.testimonials-section{
    background:#F7FAFF;
}

.swiper{
    padding:20px 10px 60px;
}

.swiper-slide{
    height:auto;
}

.swiper-button-next,
.swiper-button-prev{
    color:var(--primary-blue);
}

.swiper-pagination-bullet-active{
    background:var(--gold);
}

.testimonial-card{

    background:white;

    border-radius:16px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);

    transition:0.3s ease;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.quote-icon{

    color:var(--gold);

    font-size:2rem;

    margin-bottom:15px;
}

.stars{

    color:var(--gold);

    font-size:1.2rem;

    margin:15px 0;
}

.testimonial-card h5{

    margin-top:15px;

    color:#555;
}

.testimonial-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.read-more-btn{
    margin-top:15px;
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background-color:var(--gold);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.read-more-btn:hover{
    transform:translateY(-2px);
}

.testimonial-card small{
    display:block;
    margin-top:8px;
    color:#666;
}

.testimonial-footer{
    margin-top:auto;
}

.testimonial-image{
    margin-bottom:15px;
}

.testimonial-image img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}

.modal-content{
    border:none;
    border-radius:16px;
}

.modal-header{
    border-bottom:1px solid #eee;
}

.modal-title{
    color:var(--primary-blue);
    font-weight:600;
}

.modal-body{
    padding:30px;
    line-height:1.8;
}

.btn-close{
    opacity:1;
}

.btn-close:focus{
    box-shadow:none;
}

.modal-dialog{
    margin-top:120px;
}