/*-- =================== BANNER SECTION  ==================== --*/

.banner-section {
    margin-top: -100px;
}

.single-banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    position: relative;
    z-index: 2;
    /* max-width: 1000px; */
    margin: auto;
    padding: 20px;
}

.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.banner-btn:hover {
    background: var(--second);
    color: #fff;
}

/* Hide arrows & dots */
/* Hide arrows & dots */
.banner-area .swiper-button-next,
.banner-area .swiper-button-prev,
.banner-area .swiper-pagination {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .single-banner {
        height: 65vh;
        /* Tablet पर height और कम */
    }

    .banner-content h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .single-banner {
        height: 55vh;
        /* Mobile पर सबसे छोटी height */
        padding: 30px 15px;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-btn {
        font-size: 15px;
        padding: 10px 22px;
    }
}

/* Desktop: नीचे align */
.banner-content {
    position: absolute;
    bottom: 60px;
    /* नीचे से gap */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    /* max-width: 800px; */
    /* padding: 20px; */
}

/* Mobile: बीच में center */
@media (max-width: 768px) {
    .banner-content {
        bottom: 35%;
        /* बीच में shift */
        transform: translate(-50%, 40%);
        /* proper center */
    }
}




/*==========================================================================
* NAV LINKS CSS
==========================================================================*/
.breadcrumb-wrapper {
    margin: 10px 0;
    padding-left: 60px;
    /* 👈 left se gap */
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #000;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #000;
    padding: 0 8px;
}

.breadcrumb-item.active {
    font-weight: 700;
    color: #001a4d;
}

@media(max-width:767.5px) {
    .breadcrumb-wrapper {
        margin: 40px 0 20px 0px;
        padding-left: 16px;
    }
}

/*-- ===================  MAP CSS ======================= --*/
.outer-wrapper {
  background-color: #f9f4dc;

}

.outer-wrapper .main-heading h1 span {
    font-weight: 400;
}

.outer-wrapper .main-heading h1 {
    position: relative;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 600;
    display: inline-block;
}

.outer-wrapper .main-heading h1::before {
    position: absolute;
    content: '';
    width: 50%;
    height: 4px;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    background-color: var(--second);
}

/* Desktop Height */
.map-wrapper {
    width: 100%;
    height: 120vh; /* 100vh se zyada height */
    overflow: hidden;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .map-wrapper {
        height: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-wrapper {
        height: 450px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .map-wrapper {
        height: 380px;
    }
}

