body {
    font-family: "Poppins", sans-serif;
    padding-top: 80px;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
}

.nav-link{
    color: #333;
    font-weight: 600;
    margin-right: 1rem;
}

/* HERO WITH BACKGROUND IMAGE */
.hero {
    position: relative;
    background: url("/assets/images/hero.jpg") center center / cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    ); */
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero h1 {
    font-weight: 700;
    font-size: 3rem;
    color: rgb(7 55 99);
}

.hero p {
    font-size: 1.1rem;
    color: #222;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 10px 0;
    }

    .hero-content {
        margin: auto;
    }

    .hero h1 {
        font-size: 1.25rem;
        text-align: start;
        width: 50%;
    }

    .hero p {
        font-size: .85rem;
        text-align: start;
        width: 50%;
    }

    .hero {
        min-height: 40vh;
    }
}

section {
    padding: 80px 0;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 16px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* About */
.about-box {
    background: #082036;
    border-radius: 20px;
    padding: 40px 60px;
    border: 1px solid #d2d2d2;
    color: #fff;
}

.about-box ul li{
    font-size: .95rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: .5rem;
}

#services{
    background-color: #f9f9f9;
}

#services ul li{
    color: #444;
    margin-top: 1.5rem;
}

.sImg{
    width: 100%;
    transition: all .5s ease;
    border: 10px solid #fff;
    border-radius: .5rem;
}
.sImg:hover{
    transform: scale(1.05);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #122c54, #1e4278);
    color: white;
    padding: 90px 0;
}

/* Floating Buttons */
.float-btn {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25d366;
    bottom: 90px;
}

.call-btn {
    background: #0d6efd;
    bottom: 20px;
}

.float-btn:hover {
    transform: scale(1.08);
}

/* Footer */
footer {
    background: #111;
    color: #bbb;
}

iframe {
    border-radius: 15px;
}

.btnCall{
    background-color: #082036;
    padding: .6rem 1.3rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid #082036;
    transition: all .5s ease;
}
.btnCall:hover{
    background-color: #fff;
    color: #082036;
}

@media(max-width:765px)
{
    #services ul li{
        margin-top: 1rem;
        font-size: .85rem;
    }
}
