.services{
    background:#f8f9fa;
}

.section-subtitle{
    color:#198754;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title{
    font-size:2.5rem;
    font-weight:700;
    margin:10px 0;
}

.section-text{
    max-width:700px;
    margin:auto;
    color:#666;
}

.service-box{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.service-box img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.service-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.15),
            transparent);
    z-index:1;
}

.service-content{
    position:absolute;
    left:25px;
    bottom:20px;
    z-index:2;
}

.service-content h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

.service-box:hover img{
    transform:scale(1.1);
}

.service-box:hover::before{
    background:linear-gradient(to top,
            rgba(25,135,84,.75),
            rgba(0,0,0,.20),
            transparent);
}

/* Responsive */

@media(max-width:992px){

.service-box img{
    height:250px;
}

}

@media(max-width:768px){

.section-title{
    font-size:2rem;
}

.service-box img{
    height:220px;
}

.service-content h5{
    font-size:20px;
}

}
/*==============================
    Why Choose Us
===============================*/

.why-choose{
    background:#fff;
}

.section-subtitle{
    color:#056fce;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:2.3rem;
    font-weight:700;
    margin-top:10px;
}

.title-line{
    width:80px;
    height:4px;
    background:#056fce;
    border-radius:30px;
}

.choose-card{
    background:#fff;
    border-radius:15px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-bottom:4px solid transparent;
}

.choose-card:hover{
    transform:translateY(-8px);
    border-color:#056fce;
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.choose-icon{
    width:70px;
    height:70px;
    background:#056fce;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:30px;
}

.choose-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.choose-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

.choose-footer{
    max-width:900px;
    margin:auto;
}

.choose-footer p{
    font-size:17px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media (max-width:991px){

    .section-title{
        font-size:2rem;
    }

    .choose-card{
        padding:25px;
    }

}

@media (max-width:767px){

    .section-title{
        font-size:1.8rem;
    }

    .choose-card h5{
        font-size:18px;
    }

    .choose-card p{
        font-size:15px;
    }

    .choose-footer p{
        font-size:16px;
    }

}