.top-strip{
    background:#0f4a97;
    padding:10px 30px;
    width:100%;
}

.top-strip-wrap{
    display:flex;
    justify-content:flex-end; /* RIGHT ALIGN */
    align-items:center;
    gap:25px;
    width:100%;
}

.top-strip-wrap a{
    color:#fff;
    font-size:14px;
    text-decoration:none;
    font-weight:400;
    position:relative;
}

.top-strip-wrap a:hover{
    opacity:0.85;
}

/* divider line */
.top-strip-wrap a:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-13px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:14px;
    background:rgba(255,255,255,0.4);
}


.why-choose-section{
    background: linear-gradient(180deg,#e3e3e3 0%, #e4e4e4 100%);
    padding:70px 0;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title p{
    color:#000000;
    font-size:17px;
    line-height:1.8;
}

.why-choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.why-card{
    position:relative;
    overflow:hidden;
    min-height:380px;
    cursor:pointer;
}

.why-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.why-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15));
}

.why-card .content{
    position:absolute;
    bottom:35px;
    left:30px;
    right:30px;
    z-index:2;
}

.why-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.why-card p{
    color:#fff;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.why-card a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    letter-spacing:0.5px;
}

.why-card a span{
    margin-left:8px;
    transition:0.3s;
}

.why-card:hover a span{
    margin-left:15px;
}

@media(max-width:991px){

    .why-choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .why-choose-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .why-card{
        min-height:320px;
    }

}


.why-choose-section h2{
    font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--secondary-color);
}


.testimonial-section{
    padding:80px 0;
    overflow:hidden;
}

.testimonial-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:50px;
    gap:20px;
}

.title-area h2{
    font-size:52px;
    font-weight:700;
    color:#0d4d91;
    margin-bottom:15px;
}

.title-area p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    max-width:850px;
}

.view-all{
    color:#0d4d91;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    margin-top:15px;
}

.testimonial-card{
    background:#f5f5f5;
    transition:0.4s;
}

.testimonial-card:hover{
    transform:translateY(-6px);
}

.video-thumb{
    overflow:hidden;
}

.video-thumb img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.5s;
}

.testimonial-card:hover img{
    transform:scale(1.08);
}

.testimonial-content{
    padding:30px;
}

.testimonial-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-content h4{
    font-size:17px;
    font-weight:700;
    line-height:1.5;
    color:#333;
}

.testimonial-nav{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.custom-prev,
.custom-next{
    position:relative;
    width:70px !important;
    height:70px !important;
    border:1px solid #00b3a7;
    color:#00b3a7 !important;
    background:#fff;
    transition:0.3s;
}

.custom-prev:hover,
.custom-next:hover{
    background:#00b3a7;
    color:#fff !important;
}

.custom-prev::after,
.custom-next::after{
    font-size:24px !important;
    font-weight:700;
}

@media(max-width:991px){

    .title-area h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .testimonial-header{
        flex-direction:column;
    }

    .title-area h2{
        font-size:34px;
    }

    .testimonial-content h4{
        font-size:22px;
    }

}

