﻿body {
    font-family: 'Poppins', sans-serif;
}
/* HERO */

.hero {
    position: relative;
    height: 50vh;
    min-height: 50vh;
}

/* SLIDE BACKGROUND */

.hero-slide {
    height: 50vh;
    background-size: cover;
    background-position: center;
    min-height: 50px;
}

/* SINGLE DARK OVERLAY */

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* TEXT CONTENT */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

/* TEXT STYLE */

.hero h1 {
    font-weight: 700;
    line-height: 1.2;
    font-size: 38px;
}

.hero p {
    opacity: 0.9;
    font-size: 16px;
}

/* BRAND COLORS */

.blue {
    color: #0077b6;
}

.orange {
    color: #F1901D;
}


/* BUTTONS */

.btn-call {
    background: white;
    color: #0077b6;
    border: 2px solid #0077b6;
    border-radius: 30px;
    padding: 14px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

    /* HOVER */

    .btn-call:hover {
        background: #F1901D;
        color: white;
    }

/* IMAGES */

.images img {
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

/* STICKY MOBILE BAR */

.sticky-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

/* POPUP BACKGROUND */

.call-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* POPUP BOX */

.call-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 320px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .call-box h4 {
        margin-bottom: 10px;
    }

    .call-box p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

/* PACKAGE CARD */

.scroll-wrapper {
    overflow: hidden;
}

.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: auto;
    padding-bottom: 10px;
}

    /* Hide scrollbar */

    .scroll-container::-webkit-scrollbar {
        display: none;
    }

/* CARD SIZE */

.package-card {
    position: relative;
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .package-card:hover {
        transform: scale(1.05);
    }

    .package-card img {
        height: 170px;
        width: 100%;
        object-fit: cover;
    }

.price {
    color: #0077b6;
    font-weight: bold;
}

/* ===== OFFER TEXT ===== */
.offer-text {
    color: #F1901D;
    font-weight: 600;
    margin-top: 10px;
}

    .offer-text span {
        font-size: 22px;
    }

.call-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background: #F1901D;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

    .call-text a:hover {
        background: #d97706;
    }
/* ===== DISCOUNT BADGE ===== */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F1901D;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 20px;
    z-index: 10;
}

.btn-call {
    background: white;
    color: #0077b6;
    border: 2px solid #0077b6;
    border-radius: 25px;
    padding: 8px 14px; /* 👈 कम किया */
    font-size: 14px; /* 👈 छोटा */
    width: auto; /* 👈 full width हटाया */
    display: inline-block;
    transition: 0.3s;
}

    .btn-call:hover {
        background: #F1901D;
        color: white;
    }
/* TEXT */
.package-card h5 {
    font-size: 18px;
    font-weight: 600;
}

.package-card p {
    font-size: 14px;
}
