.banner-bg {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    height: 90vh;
}

/* ONLY overlay layer */
.banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    pointer-events: none;
    /* CLICK ISSUE FIX */
    z-index: 0;
}

.bannner-text {
    height: 100% !important;
}

/* ============================================ */
/* ============================================ */

/* Banner css */


.section-title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.banner-heading {
    font-size: 3.9rem;
    color: #fff;
}

.banner-heading-highlight {
    color: var(--primary);
}

/* responsive  */
/* ===================================== */
/* LARGE SCREENS (1200px+) */
/* ===================================== */
@media (min-width: 1200px) {
    .banner-heading {
        font-size: 3.2rem;
    }
}

/* ===================================== */
/* LAPTOP / TABLET LANDSCAPE */
/* ===================================== */
@media (max-width: 1199px) {
    .banner-heading {
        font-size: 3.2rem;
    }
}

/* ===================================== */
/* TABLET (768px – 991px) */
/* ===================================== */
@media (max-width: 991px) {
    .banner-bg {
        height: auto;
        padding: 100px 0;
        background-attachment: scroll !important;
    }

    .banner-heading {
        font-size: 2.6rem;
    }

    .banner-title .text {
        font-size: 13px;
    }

    .button1 {
        display: inline-block;
        margin-top: 20px;
    }
}

/* ===================================== */
/* MOBILE (≤767px) */
/* ===================================== */
@media (max-width: 767px) {
    .banner-bg {
        padding: 80px 15px;
    }

    .banner-heading {
        font-size: 2.1rem;
    }

    .banner-title .line {
        width: 40px;
        height: 2px;
    }

    .banner-title .dot {
        width: 10px;
        height: 10px;
    }

    .banner-title .text {
        font-size: 12px;
    }

    .banner-bg p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ===================================== */
/* SMALL MOBILE (≤480px) */
/* ===================================== */
@media (max-width: 480px) {
    .banner-heading {
        font-size: 1.9rem;
    }

    .banner-title {
        gap: 8px;
    }
}

/* ================================================== */
/* ================================================== */

/* Dr Nikky Packages Cards CSS */
/* 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;
    }
}

/* ============================================= */
/* ============================================= */

/* Why us section css */
.info-card {
    padding: 25px;
}

.info-card h5 {
    margin-top: 15px;
}

.info-card p {
    margin-top: 8px;
}

/* Light */
.why-us-light {
    border-radius: 20px 0 0 20px;
    background: var(--primary);
    color: #1d4b3a;
}

/* Dark */
.why-us-dark {
    border-radius: 0 20px 20px 0;
    background: var(--accent);
    color: #ffffff;
}

/* Icon */
.why-us-icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .why-title {
        font-size: 34px;
    }
    .why-us-light, .why-us-dark {
        border-radius: 0;
    }
}

/* --============================================= */
/* =============================================== */

/* faq css  */
.faq-section {
    background: #eaf1ec;
}

/* Image */
.faq-image img {
    width: 100%;
    border-radius: 0 30px 0 30px;
}

/* Each item */
.accordion-item {
    border-radius: 16px !important;
    border: 1px solid #dfeee7 !important;
    overflow: hidden;
}

/* Header button */
.accordion-button {
    color: var(--accent);
    box-shadow: none;
}

/* Remove default blue focus */
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Active (open) state */
.accordion-button:not(.collapsed) {
    background-color: #eef6f2;
    color: var(--accent);
}

/* Body */
.accordion-body {
    padding: 0 22px 20px;
    color: #666;
    line-height: 1.6;
}

/* Smooth look */
.accordion-collapse {
    background-color: #eef6f2;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .accordion-button {
        font-size: 15px;
        padding: 16px 18px;
    }
}

/* =============================================== */
/* =============================================== */