/* .banner-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    
} */


.banner-bg {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
}

/* ONLY overlay layer */
.banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(147, 147, 147, 0.253); /* light overlay */
    pointer-events: none; /* CLICK ISSUE FIX */
    z-index: 0;
}

/* Content on top */
.banner-bg > * {
    position: relative;
    z-index: 2;
}


.banner-bg img {
    border-top-left-radius: 70%;
}

/* .banner-bg h1{
font-size: 3.5rem;
font-weight:bolder;
}
.banner-bg p{
    font-size: 17px;
color:#415357;
} */
/* ============================================ */
/* ============================================ */

/* Banner css */
.text-wrap {
    /* display: inline-block; */
    position: relative;
}

.top-text {
    font-family: "Great Vibes", cursive;
    font-size: 60px;
    /* color: var(--primary); */
    color: #fff;
    margin: 0;
    line-height: 1;
    font-weight: 400;
}

.main-text {
    font-family: "Montserrat", sans-serif;
    text-shadow: 6px 6px #fff;
    font-size: 100px !important;
    font-weight: 800;
    margin: -20px 0 0 0 !important;
    color: #d4af37;
    /* golden yellow */
    letter-spacing: 3px;
}

.sub-text {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    /* color: var(--primary); */
    color: #fff;
    letter-spacing: 1px;
    margin-top: -10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .top-text {
        font-size: 40px;
    }

    .main-text {
        font-size: 80px !important;
    }

    .sub-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .top-text {
        font-size: 32px;
    }

    .main-text {
        font-size: 60px;
    }

    .sub-text {
        font-size: 18px;
    }
}

/* ================================================== */
/* ================================================== */

/* Safari Packages Cards CSS */
/* SECTION HEAD */

/* CARD */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #eee;
    transition: 0.4s;
}

.package-card:hover {
    border-color: rgb(10, 138, 177, 1);
    ;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.5s ease;
}

/* IMAGE PUSH BACK */
.package-card:hover .card-img img {
    transform: scale(1.08);
}


/* CATEGORY TAG */
.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* CONTENT */
.card-content {
    padding: 18px 22px;
}

.card-meta {
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

/* TITLE COLOR CHANGE */
.package-card:hover h5 {
    color: rgb(10, 138, 177, 1);
}


/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .card-img img {
        height: 220px;
    }
}

/* ============================================= */
/* ============================================= */

/* popup form css  */
.popup-form {
    display:none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    z-index:9999;
}

.popup-content {
    background: #d4af37;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    animation: popupZoom 0.3s ease;
    color: #fff;
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
}

.popup-content label {
    display:block;
    margin-top:5px;
    margin-bottom:5px;
    font-size: 14px;
    font-weight: 500;
    color: #195e3e;
}

.popup-content input,
.popup-content select,
.popup-content textarea {
    width:100%;
    padding:7px;
    border:none;
    border-radius:5px;
    margin-bottom:2px;
    font-size:14px;
}

.popup-content textarea {
    resize:none;
}


/* Animation */
@keyframes popupZoom {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity:0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity:1; }
}
/* =======================================================/ */
/* ======================================================= */
   