.hero {
    height: 100vh;
    background: url('sus-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center !important;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 80, 0.75);
    /* #1A3263 overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* .hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 25px;
} */

.btn-custom {
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary {
    background-color: #ffffff;
    color: #1A3263;
    border: none;
}

.btn-primary:hover {
    background-color: #e6e6e6;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #1A3263;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .res {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .contactbtn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

}

/*====================================================================*/

.overview-section {
    padding: 2px 0;
    background: #f8f9fa;
}

.overview-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-title {
    font-size: 38px;
    font-weight: 700;
    color: #1A3263;
}

.overview-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

.btn-outline-light {
    color: #1A3263 !important;
    border: 2px solid #1A3263 !important;
}


@media (max-width: 768px) {
    .overview-title {
        font-size: 28px;
        text-align: center;
    }

    .overview-text {
        text-align: center;
    }


}


/*============================Why-Choose===========================================*/
.why-section {
    background: url('upbg.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 20px;
    color: #fff;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 50, 99, 0.75);
    /* Your brand color overlay */
}

.why-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.why-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.why-content p {
    font-size: 16px;
    opacity: 0.9;
}

.why-points {
    margin-top: 25px;
}

.why-points li {
    margin-bottom: 10px;
    font-size: 15px;
}



/*===========================================================*/


/* Mobile only for this section */
@media (max-width: 768px) {
  .mobile-reverse .row {
    display: flex;
    flex-direction: column-reverse;
  }
}