body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
}


/* GLASS NAVBAR */

.glass-nav {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}


/* HERO */

.hero {

    height: 95vh;

    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('images/hero-1.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    text-align: center;

}

/* .body-bg{
    background:
linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
url('images/hero-1.jpg');

background-size:cover;
background-position:center;

} */

.hero h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* SECTION TITLE */

/* .section-title{
font-weight:700;
color:#0d3b66;
} */

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #0d3b66;
    padding: 0 20px;
}

@media(min-width:768px) {

    .section-title::before,
    .section-title::after {

        content: "";
        position: absolute;
        top: 50%;
        width: 120px;
        height: 2px;
        background: #0d3b66;

    }

    .section-title::before {
        right: 100%;
        margin-right: 15px;
    }

    .section-title::after {
        left: 100%;
        margin-left: 15px;
    }
}

/* WELCOME */

.welcome-section {
    padding: 80px 0;
    background: white;
}

.feature i {
    font-size: 35px;
    color: #0d6efd;
    margin-bottom: 10px;
}



/* SERVICES */

.services-section {
    padding: 80px 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.service-overlay {

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, .8));

    color: white;

    padding: 20px;

}

.service-card:hover img {
    transform: scale(1.1);
}



/* WHY */

.why-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.why-box i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 10px;
}



/* LOCATION */

.location-section {
    padding: 80px 0;
    background: white;
}

.location {
    color: #e63946;
    margin-top: 20px;
}



/* TESTIMONIAL */

.testimonial-section {
    background: linear-gradient(135deg, #0d3b66, #1b4965);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    text-align: center;
    font-size: 18px;
}


/* MOBILE */

@media(max-width:768px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        height: 80vh;
    }

}



/* FOOTER */

.footer-section {

    background: #071e33;

    color: white;

    padding: 70px 0 0;

}

.footer-title {

    font-weight: 600;

    margin-bottom: 20px;

}

.footer-links {

    list-style: none;

    padding: 0;

}

.footer-links li {

    margin-bottom: 10px;

}

.footer-links a {

    text-decoration: none;

    color: #ddd;

    transition: 0.3s;

}

.footer-links a:hover {

    color: #ffc107;

    padding-left: 5px;

}


/* SOCIAL ICONS */

.social-icons a {

    display: inline-block;

    width: 40px;

    height: 40px;

    line-height: 40px;

    text-align: center;

    background: rgba(255, 255, 255, 0.1);

    color: white;

    border-radius: 50%;

    margin-right: 10px;

    transition: 0.3s;

}

.social-icons a:hover {

    background: #ffc107;

    color: #000;

}


/* COPYRIGHT */

.footer-bottom {

    background: #082c4a;

    text-align: center;

    padding: 15px;

    margin-top: 40px;

    font-size: 14px;

}



.logo {
    width: 120px;
}

.nav-item .active {
    border-bottom: 1px solid #ffc107;
}