.comm-span{
    color: #ff7a00;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ================= INNER HERO ================= */
.inner-hero {
    position: relative;
    height: 420px;
    background: url("../image/hero-bg.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* space for navbar */
}

/* OVERLAY */
.inner-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.85) 40%,
        rgba(0,0,0,0.5)
    );
    z-index: 1;
}

/* CONTENT */
.inner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
    margin: auto;
    padding: 0 15px;
}

/* TITLE */
.inner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.inner-content h1 span{
    color: #ff7a00;
}

/* DESCRIPTION */
.inner-desc {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* BREADCRUMB */
.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    font-size: 14px;
}

/* LINKS */
.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-custom a:hover {
    color: #ff7a00;
}

/* ACTIVE */
.breadcrumb-custom .active {
    color: #ff7a00;
    font-weight: 500;
}


/* ================= TABLET ================= */
@media (max-width: 991px) {

    .inner-hero {
        height: 340px;
        padding-top: 90px;
    }

    .inner-content h1 {
        font-size: 34px;
    }

    .inner-desc {
        font-size: 14px;
    }
}


/* ================= MOBILE FIX (MAIN ISSUE FIXED) ================= */
@media (max-width: 576px) {

    .inner-hero {
        height: auto; /* FIX: dynamic height */
        padding: 120px 15px 60px; /* FIX: proper spacing top + bottom */
        text-align: center;
    }

    .inner-content {
        max-width: 100%;
    }

    .inner-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .inner-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .breadcrumb-custom {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
        flex-wrap: wrap; /* FIX: prevent overflow */
        justify-content: center;
        margin: 0 auto 10px;
        max-width: 95%;
    }
}
/* NAVBAR BASE */
.custom-navbar {
    padding: 15px 0;
    z-index: 999;
}

/* CONTAINER (ALWAYS SAME UI) */
.nav-container {
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    max-width: 1400px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



/* NAV LINKS */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px;
    border-radius: 30px;
    transition: 0.3s;
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    background: rgba(255,122,0,0.1);
    color: #ff7a00 !important;
}


/* HOVER */
.navbar-nav .nav-link:hover {
    background: #ff7a00;
    color: #fff !important;
}

/* BUTTON */
.book-btn {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 500;
}
/* LOGO */
.logo-img {
    width: 50px;
}

.brand-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.brand-subtitle {
    font-size: 12px;
    color: #777;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== SCROLL EFFECT ===== */
.custom-navbar.scrolled .nav-container {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CHANGE TEXT COLOR AFTER SCROLL */
.custom-navbar.scrolled .nav-link {
    color: #333;
}

.custom-navbar.scrolled .nav-link.active {
    background: rgba(255,122,0,0.1);
    color: #ff7a00;
}

/* LOGO WRAPPER */
.navbar-brand {
    gap: 8px;
}



/* TEXT CONTAINER */
.logo-text {
    line-height: 1.1;
}



/* ===== SCROLL STATE ===== */
.custom-navbar.scrolled .brand-title {
    color: #111;
}

.custom-navbar.scrolled .brand-subtitle {
    color: #777;
}


/* TOGGLER */
.navbar-toggler {
    border: none;
}

.navbar-toggler i {
    color: #111;
    font-size: 26px;
}

/* AFTER SCROLL */
.custom-navbar.scrolled .navbar-toggler i {
    color: #111;
}

/* ===== DROPDOWN FIX ===== */
.dropdown-menu {
    border-radius: 14px;
    border: none;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: fadeIn 0.3s ease;
}

/* DROPDOWN ITEM */
.dropdown-menu .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255,122,0,0.1);
    color: #ff7a00;
}

/* ===== SUBMENU ===== */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.has-submenu > a:hover {
    background: rgba(255,122,0,0.1);
    color: #ff7a00;
}

/* SUBMENU BOX */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border-radius: 14px;
    min-width: 280px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: none;
}

/* SHOW ON HOVER (DESKTOP) */
.has-submenu:hover .submenu {
    display: block;
}

/* SUBMENU LINKS */
.submenu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.submenu li a:hover {
    background: rgba(255,122,0,0.1);
    color: #ff7a00;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {

    .dropdown-menu {
        box-shadow: none;
        padding: 5px 0;
    }

    .has-submenu .submenu {
        position: static;
        display: none;
        padding-left: 10px;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .has-submenu > a {
        cursor: pointer;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* MOBILE */
@media (max-width: 576px) {

    .logo-img {
        width: 45px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 11px;
    }
    .btn-main {
        width: 100%;
        text-align: center;
        border-radius: 12px;
        padding: 14px;
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-light-custom {
        display: none; /* cleaner UI like screenshot */
    }
}

/* MOBILE */

@media (max-width: 991px) {
     /* NAVBAR WRAPPER */
    .custom-navbar {
        margin: 10px 0;
        left: 15px;
        right: 15px;
        width: auto;
    }

    .nav-container {
        border-radius: 20px;
        padding: 12px 15px;
        width: 100% !important;
    }

   /* LOGO FIX */
    .logo-img {
        width: 40px;
    }

    .brand-title {
        font-size: 15px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    /* MENU FIX */
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 80vh; /* Limit height to 80% of viewport */
        overflow-y: auto; /* Enable vertical scroll */
    }

    /* Custom Scrollbar for Mobile Menu */
    .navbar-collapse::-webkit-scrollbar {
        width: 4px;
    }
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: #ff7a00;
        border-radius: 10px;
    }

    .navbar-collapse .nav-link {
        color: #333 !important;
    }

    .navbar-collapse .nav-link:hover {
        background: rgba(255,122,0,0.1);
        color: #ff7a00 !important;
    }

    /* ACTIVE */
    .navbar-collapse .nav-link.active {
        background: rgba(255,122,0,0.15);
        color: #ff7a00 !important;
    }

      .book-btn {
        display: none !important;
    }
}
/* HERO SECTION */
.hero-section {
    position: relative;
    background: url('../image/hero-bg.jpg') no-repeat center center/cover;
    padding: 120px 0 180px;

    overflow: hidden;

}

/* OVERLAY */
.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* BADGE */
.badge-top {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 18px;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span {
    color: #ff7a00;
}

/* DESC */
.hero-desc {
    margin: 20px 0;
    color: #ddd;
    max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

.btn-main:hover {
    transform: translateY(-2px);
}

.btn-light-custom {
    background: #fff !important;
    color: #000 !important;
    padding: 12px 26px !important;
    border-radius: 10px !important;
}

/* FEATURES */
.hero-features {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

/* IMAGE */
.hero-img {
    max-width: 100%;
}

/* FORM */
.hero-form {
    position: absolute;
    bottom: -160px;
    /* 👈 move it up (adjust if needed) */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

}

/* FORM HEADER */
.form-header h5 {
    font-weight: 700;
}

.form-header p {
    font-size: 14px;
    color: #777;
}

/* INPUT */
.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* BUTTON */
.btn-submit {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .hero-section {
        text-align: center;
        padding-top: 140px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-features {
        justify-content: center;
        gap: 10px;
    }
    .hero-buttons {
        justify-content: center;
    }


    /* REMOVE IMAGE */
    .hero-img {
        display: none;
    }

    /* FORM */
    .hero-form {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

}

@media (max-width: 576px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .form-control {
        height: 48px;
    }
}

/* booking-process */
.booking-process {
    position: relative;
    padding: 80px 0;
    background: #f6f7f9;
    overflow: hidden;

}

/* HEADER */
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    margin-top: 10px;
}

/* CARD BASE */
.step-card {
    position: relative;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    z-index: 2;
}

/* LEFT */
.step-card.left {
    background: linear-gradient(135deg, #dff3ff, #f3f9ff);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* CENTER (HIGHLIGHT) */
.step-card.center {
    background: linear-gradient(135deg, #ffd6a5, #ff9f43);
    color: #222;
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.4);
}

/* RIGHT */
.step-card.right {
    background: linear-gradient(135deg, #e0f7ff, #ccefff);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon-circle {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle.big {
    width: 110px;
    height: 110px;
}

.icon-circle img {
    width: 50px;
}

/* TEXT */
.step-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #444;
}

/* CONTACT ICONS */
.contact-icons {
    margin-top: 15px;
}

.contact-icons i {
    margin: 0 6px;
    font-size: 18px;
    color: #555;
}

/* BLOBS */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.blob.blue {
    width: 400px;
    height: 400px;
    background: rgb(67 192 228 / 25%);
    left: -100px;
    top: 50px;
}

.blob.orange {
    width: 350px;
    height: 350px;
    background: rgba(255, 122, 0, 0.25);
    right: -100px;
    bottom: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .step-card.center {
        transform: scale(1);
    }
}

/* taxi-section */
.taxi-section {
    position: relative;
    padding: 80px 0;
    background: #f8fbff;
    overflow: hidden;
}

/* HEADER */
.section-header h2 {
    font-weight: 700;
    font-size: 32px;
}

.section-header p {
    color: #777;
    max-width: 600px;
    margin: 10px auto 30px;
}

/* FILTER */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.tab.active {
    background: linear-gradient(135deg, #00c6ff, #ff7a00);
    color: #fff;
}

/* CARD */
.taxi-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.taxi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.car-img {
    text-align: center;
    margin-top: 20px;
}

.car-img img {
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    transition: 0.4s;
}


/* BADGE */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

/* BODY */
.card-body h5 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
}


.rating {
    color: #ffa500;
    font-size: 14px;
}

/* PRICE */
.price-box {
    font-size: 22px;
    font-weight: 700;
    color: #ff3d00;
    margin: 12px 0;
}

.price-box span {
    font-size: 14px;
    color: #777;
}

/* ACTION BUTTONS */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* CALL */
.btn-action.call {
    background: #f1f1f1;
    color: #333;
}

.btn-action.call:hover {
    background: #ddd;
}

/* BOOK */
.btn-action.book {
    background: linear-gradient(135deg, #111, #444);
    color: #fff;
}

.btn-action.book:hover {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
}

/* WHATSAPP */
.btn-action.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-action.whatsapp:hover {
    background: #1ebe5d;
}

/* SHAPES */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 198, 255, 0.2);
    top: -80px;
    left: -80px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 122, 0, 0.2);
    bottom: -80px;
    right: -80px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .section-header h2 {
        font-size: 24px;
    }

}

@media(max-width:576px) {
    .action-buttons {
        flex-direction: column;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fbfb, #fff3e8);
    position: relative;
}

/* Heading */
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

.divider {
    width: 70px;
    height: 4px;
    margin: 12px auto;
    border-radius: 10px;
    background: linear-gradient(to right, #00c2cb, #ff6a00);
}

/* CARD */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-card img {
    width: 70px;
    margin-bottom: 15px;
}

.service-card h6 {
    font-size: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #00c2cb;
}

/* ACTIVE */
.swiper-slide-active .service-card {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.btn-book {
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg, #00c2cb, #ff6a00);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-book:hover {
    opacity: 0.9;
}


/* ================= SECTION BASE ================= */
.facts-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    overflow: hidden;
}

/* ================= BACKGROUND GLOW ================= */
.bg-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent);
    filter: blur(120px);
    z-index: 0;
}

.bg1 {
    top: -50px;
    left: -50px;
}

.bg2 {
    bottom: -50px;
    right: -50px;
}

/* ================= HEADING ================= */
.facts-modern .section-heading h2 {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.facts-modern .section-heading p {
    color: #aaa;
    max-width: 600px;
    margin: 10px auto 40px;
}

/* ================= CARD ================= */
.fact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

/* Hover Effect */
.fact-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

/* ================= ICON ================= */
.icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 28px;
    filter: brightness(0) invert(1);
}

/* ================= TEXT ================= */
.fact-card h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.fact-card p {
    color: #ccc;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .facts-modern {
        padding: 70px 0;
    }

    .fact-card {
        padding: 25px;
    }
}

/* ================= PACKAGES SECTION ================= */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #fff3e8);
}

/* SWIPER FIX */
.packageSwiper1,
.packageSwiper2 {
    overflow: hidden;
}

/* ================= CARD ================= */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* HOVER */
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */
.package-img {
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}

/* ================= BADGE (FIXED POSITION) ================= */
.package-img .badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* ================= CONTENT ================= */
.package-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* RATING */
.rating {
    color: #ffa500;
    font-size: 13px;
}

/* TITLE */
.package-content h5 {
    font-weight: 600;
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.4;

    /* FIX HEIGHT */
    min-height: 45px;
}

/* DESCRIPTION */
.package-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;

    /* PUSH BUTTON DOWN */
    flex-grow: 1;
}

/* ================= BUTTON ================= */
.btn-package {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;

    margin-top: auto;
}

.btn-package:hover {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .package-img img {
        height: 180px;
    }

    .package-content h5 {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .packages-section {
        padding: 50px 0;
    }

    .package-img img {
        height: 170px;
    }

    .package-content {
        padding: 15px;
    }

    .package-content h5 {
        font-size: 14px;
        min-height: auto;
    }

    .package-content p {
        font-size: 12px;
    }

    .btn-package {
        font-size: 13px;
        padding: 9px;
    }

    .package-img .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}
/* ===============================
   SECTION BASE STYLE
================================= */
/* ===============================
   SECTION BASE STYLE (UPDATED BG)
================================= */
.belief-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    /* BASE COLOR */
    background: #f8fbff;
}

/* ===== BACKGROUND LAYERS (LIKE IMAGE) ===== */

/* Layer 1 (soft gradient blocks) */
.belief-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 198, 255, 0.08) 0%, transparent 60%),
        linear-gradient(225deg, rgba(255, 123, 0, 0.021) 0%, transparent 60%);
    z-index: 0;
}

/* Layer 2 (big abstract shapes) */
.belief-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../image/benifit-bg.jpeg");
    background-size: cover;
    opacity: 0.6;
    z-index: 0;
}

/* Layer 3 (dots pattern like image) */
.belief-section .bg-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

/* CONTENT ABOVE BG */
.belief-section .container {
    position: relative;
    z-index: 2;
}

/* ===============================
   HEADING
================================= */
.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-heading p {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

.heading-divider {
    width: 60px;
    height: 3px;
    background: #ff6b00;
    margin: 15px auto;
    border-radius: 10px;
}

/* ===============================
   CARD STYLE
================================= */
.belief-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

/* hover effect */
.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ===============================
   ICON BOX
================================= */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

/* color variants */
.icon-box.dark {
    background: linear-gradient(135deg, #111, #333);
}

.icon-box.teal {
    background: linear-gradient(135deg, #1f7a84, #2bb3c0);
}

.icon-box.orange {
    background: linear-gradient(135deg, #ff8c00, #ffb347);
}

/* ===============================
   TEXT
================================= */
.belief-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.belief-card p {
    font-size: 14px;
    color: #666;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .belief-card {
        padding: 25px 20px;
    }
}

/* testimonial-section */
.testimonial-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #eef6ff, #fff2e6);
    overflow: hidden;
}

/* SHAPES */
.testi-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 198, 255, 0.3);
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 122, 0, 0.3);
    bottom: -100px;
    right: -100px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TOP USER */
.top-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.top-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.top-box h6 {
    margin: 0;
    font-weight: 600;
}

/* RATING */
.rating {
    color: #ffa500;
    font-size: 14px;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* IMAGE */
.testimonial-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* SWIPER */
.testimonialSwiper .swiper-slide {
    opacity: 0.5;
    transition: 0.4s;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 991px) {
    .testimonial-section {
        text-align: center;
    }
}
/* ================= FAQ SECTION (CLEAN) ================= */
.faq-section-modern {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    /* ✅ Background Image */
    background: url("../image/faq-bg-img.jpeg") no-repeat center center/cover;
}

/* ===== LIGHT OVERLAY (FOR TEXT VISIBILITY) ===== */
.faq-section-modern::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.479),
        rgba(255, 255, 255, 0.495)
    );

    z-index: 0;
}

/* CONTENT ABOVE BACKGROUND */
.faq-section-modern .container {
    position: relative;
    z-index: 2;
}

/* ================= IMAGE ================= */
.faq-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ================= ACCORDION ================= */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* QUESTION */
.accordion-button {
    font-weight: 600;
    background: #fff;
    color: #222;
    padding: 16px;
    border: none;
}

/* ACTIVE */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
}

/* BODY */
.accordion-body {
    font-size: 14px;
    color: #555;
    background: #fff;
}

/* REMOVE DEFAULT ICON */
.accordion-button::after {
    filter: brightness(0);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .faq-section-modern {
        text-align: center;
        padding: 70px 0;
    }

    .faq-image {
        margin-bottom: 30px;
    }
}
/* FOOTER */
/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #ccc;
    padding: 70px 0 20px;
}

/* GRID FIX */
.footer-col {
    padding: 0 10px;
}

/* TITLE */
.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin-top: 8px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff7a00;
    padding-left: 5px;
}

/* CONTACT */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-item i {
    background: #ff7a00;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff7a00;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* PAYMENTS */
.payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payments img {
    height: 26px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {
    .footer {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= MOBILE 2 COLUMN FOOTER ================= */
@media (max-width: 768px) {

    .footer {
        padding: 50px 0 20px;
        text-align: left;
    }

    /* FORCE 2 COLUMN GRID */
    .footer-row {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-col {
        width: 50%;
        padding: 10px;
    }

    /* TITLE */
    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* LINKS */
    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a {
        font-size: 12px;
    }

    /* CONTACT FIX */
    .contact-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        max-width: 125px;
    }

    .contact-item i {
        padding: 6px;
        font-size: 12px;
    }

    /* SOCIAL */
    .social-icons {
        justify-content: flex-start;
        gap: 6px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* BOTTOM */
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .payments {
        justify-content: center;
    }

    .payments img {
        height: 22px;
    }
}

/* ================= FLOATING ICONS ================= */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* BASE BUTTON */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* HOVER EFFECT */
.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* CALL */
.float-btn.call {
    background: linear-gradient(135deg, #111, #444);
}

/* WHATSAPP */
.float-btn.whatsapp {
    background: #25D366;
}

/* SCROLL TOP */
.float-btn.top {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    opacity: 0;
    visibility: hidden;
}

/* SHOW BUTTON */
.float-btn.top.show {
    opacity: 1;
    visibility: visible;
}

/* MOBILE */
@media (max-width: 576px) {
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ================= Chardham Banner ================= */
.chardham-banner {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.chardham-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 350px;
  height: 350px;
  background: #ff9f1c;
  opacity: 0.15;
  border-radius: 50%;
}

.chardham-tag {
  display: inline-block;
  background: #ff9f1c;
  color: #000;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.chardham-title {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.chardham-title span {
  color: #ff9f1c;
}

.chardham-text {
  color: #dcdcdc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.chardham-btns .btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  margin-right: 12px;
}

.chardham-img-box {
  position: relative;
}

.chardham-img-box img {
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .chardham-title {
    font-size: 36px;
  }

  .chardham-banner {
    padding: 60px 0;
  }

  .chardham-btns .btn {
    margin-bottom: 10px;
  }
}
/* ================= PAGE BANNER ================= */
.chardham-page-banner {
  background: linear-gradient(135deg, #111, #222);
  padding: 90px 0;
  color: #fff;
}

.chardham-page-banner h1 {
  font-size: 46px;
  font-weight: 800;
}

.chardham-page-banner p {
  color: #ddd;
  margin-top: 10px;
}

.banner-cta .btn {
  margin: 10px 6px;
  padding: 12px 26px;
  font-weight: 600;
}

/* ================= CONTENT ================= */
.chardham-content h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.chardham-content h3 {
  margin-top: 30px;
  font-weight: 600;
}

/* ================= MENU LIST ================= */
.chardham-menu-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.chardham-menu-list a {
  text-decoration: none;
  background: #f8f9fa;
  padding: 14px 16px;
  border-left: 5px solid #ff9f1c;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
  transition: 0.3s;
}

.chardham-menu-list a:hover {
  background: #ff9f1c;
  color: #000;
}

/* ================= FORM ================= */
.chardham-form {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
}

.chardham-form h4 {
  margin-bottom: 20px;
}

.chardham-form .form-control {
  border-radius: 6px;
}

/* ================= BLINK CALL ================= */
.blink-call {
  margin-top: 25px;
  text-align: center;
  animation: blink 1.2s infinite;
}

.blink-call a {
  color: #ff9f1c;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .chardham-page-banner h1 {
    font-size: 34px;
  }
}




