.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assests/contact.jpeg');
    background-size: 100% 100%; 
    background-position: right;
    object-fit: cover;
    z-index: -2;
}
@media (max-width: 576px) {
    .hero-bg {
        background-size: cover;
        background-position: center;
    
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(83, 1, 1, 0.97), rgba(28, 0, 43, 0.2));
    z-index: -1;
}

.hero-content {
    width: 100vw;
}

.hero-content h6 {
    font-weight: 600;
    font-family: var(--font-poppins);
    letter-spacing: 1px;
    font-size: 24px;
    color: #cdd0e0;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 62px;
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 23px;
}

.hero-btn {
    margin-top: 20px;
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 25px;
    color: #fff !important;
    text-decoration: inherit;
    border: 2px solid #bb0a1e !important;
    border: none;
    font-family: var(--font-poppins);
    transition: 0.3s;
    font-size: 1rem;
}

.hero-btn:hover {
    background: #bb0a1e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content h6 {
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        width: auto;
    }


    .container-nav {
        width: 100% !important;
        padding: 0%;
    }

    .navbar-nav {
        padding: 10px;
    }

    .nav-item {
        padding: 10px;
    }

    .btn-call {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Geography section */
.geo-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.geo-map img {
    height: 100%;
    width: 100%;
}

.map-heading {
    font-size: 2.75rem;
    color: black;
    display: block;
}

.map-desc {
    color: gray;
}

/* Example geo-point positions */
.geo-na {
    top: 40%;
    left: 25%;
}

.geo-eu {
    top: 40%;
    left: 55%;
}

.geo-me {
    top: 55%;
    left: 75%;
}

/* Stats next to map */
.geo-stats b {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    line-height: 90%;
    text-transform: capitalize;
    color: #27273d;
    margin: 0;
}

.geo-stats span {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    color: #8585ff;
    font-weight: 300;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.28px;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .map-heading {
        font-size: 2.2rem;
    }

    .geo-stats b {
        font-size: 70px;
        line-height: 85%;
    }

    .geo-stats span {
        font-size: 18px;
        line-height: 30px;
    }
}

/* Mobile landscape (≤ 768px) */
@media (max-width: 768px) {
    .map-heading {
        font-size: 1.8rem;
    }

    .map-desc {
        font-size: 0.95rem;
    }

    .geo-stats b {
        font-size: 55px;
        line-height: 80%;
    }

    .geo-stats span {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Mobile portrait (≤ 480px) */
@media (max-width: 480px) {
    .map-heading {
        font-size: 1.5rem;
    }

    .map-desc {
        font-size: 0.85rem;
    }

    .geo-stats b {
        font-size: 40px;
        line-height: 75%;
    }

    .geo-stats span {
        font-size: 14px;
        line-height: 24px;
    }
}