/********** Template CSS **********/
:root {
    --primary: #ef6735;
    --secondary: #ef6735;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}


.booking-section {
    /* background: url('your-background-image.jpg') no-repeat center center/cover; */
    padding: 100px 0;
    color: white;
    position: relative;


}

.booking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: -1;

}

.booking-content {
    position: relative;
    z-index: 2;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: transparent;
    border: 1px solid #fff;
    color: white;
}

.booking-form ::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-read-more {
    border: 1px solid white;
    color: white;
    padding: 10px 25px;
}

.btn-book-now {
    background-color: transparent;
    border: 1px solid #ff5722;
    color: #ff5722;
    width: 100%;
    padding: 12px;
    font-weight: bold;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    background: transparent;
    color: white;
    box-shadow: none;
}

.dropdown-container {
    position: relative;
    width: 100%;
    margin-bottom: 10%;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    color: #000 !important;
    /* Black text */
    width: 100%;
    background-color: #fff !important;
    border-radius: 12px;
    overflow: hidden;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    animation: fadeIn 0.2s ease-in-out;
    text-align: left;
    /* Force left align */
}

.dropdown-list div {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
}

.dropdown-list div:hover {
    background-color: #f8f9fa;
}

.text-muted {
    font-size: 13px;
    color: #6c757d;
}




.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupFadeIn 0.4s ease-in-out;
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    /* border-color: #007bff; */
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #ef6735;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #6b9312;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    color: #555;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Make all cards equal height */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4>[class*='col-'] {
    display: flex;
}

.team-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.text-center.p-4 {
    flex-grow: 1;
    /* ensures text area stretches evenly */
}

.card img {
    width: 100%;
    height: auto;
    /* Ensures full image height adjusts automatically */
    object-fit: cover;
    /* or 'contain' if you want the full image without cropping */
    display: block;
}



.terms-heading {
    color: #ff7e5f;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #4facfe, #00f2fe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite, fadeInUp 1.2s ease forwards;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    background-color: transparent !important;
}

.features-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

.features-container::-webkit-scrollbar {
    display: none;
}

.feature {
    flex: 0 0 auto;
    width: 250px;
    padding: 20px;
    background: #f0eeee;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 8px rgb(216, 216, 216);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: #ef6735;
    margin-bottom: 10px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature p {
    font-size: 0.9rem;
    color: #4b5563;
}

.scroll-btn {
    background: #eee;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scroll-btn:hover {
    background: #ddd;
}



.booking-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #ef6735;
}

.form-floating>label {
    color: #666;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ccc;
}

.btn-submit {
    background-color: #ef6735;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #d95d2e;
}




/* Section Title */
.section-title {
    font-weight: 600;
    color: #ef6735;
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #ef6735;
    background: #fff;
}

/* Contact Info Box */
.contact-info-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-box .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ef6735;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-box h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.contact-info-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Map Styling */
.contact-map iframe {
    border: none;
    border-radius: 12px;
    min-height: 350px;
}

/* Form Styling */
.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form label {
    color: #777;
}

.contact-form .btn-primary {
    background: #ef6735;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #d95d2e;
}

.help-header {
    position: relative;
    background: url('../img/helpbanner1.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.help-header .header-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: 700;
}

/* Accordion Styling */
.accordion-button {
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Contact Section */
.contact-help {
    background: linear-gradient(135deg, #d95d2e);
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
}


/* Popup modal background */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

/* Modal image */
.image-modal img {
    max-width: 90%;
    max-height: 90%;
}

/* Close button */
.image-modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.packageimages {
    width: 100%;
    height: 270px !important;
    object-fit: cover;
}

/* Smooth gradient flow */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Elegant entrance effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.terms-container {
    max-width: 900px;
    margin: 8% auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
}

.terms-container h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ef6735);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-container .intro {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.terms-section {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 4px solid #ef6735;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    color: #1c3d2b;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.terms-section p,
.terms-section ul {
    color: #444;
    font-size: 0.97rem;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
}

.terms-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 40px;
}

.gashwalogo {
    border-bottom: none !important
}

/* Smooth fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.hero-header {
    position: relative;
    width: 100%;
    height: 80vh;
    /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 31, 0.5);
    /* optional: dark overlay */
    z-index: -1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/pexels-tatianasyrikova-3975673.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.modal {
    margin-bottom: 50px;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}


.booking-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 850px;
    margin: auto;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.form-floating .form-control,
.form-floating .form-select {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
    padding: 12px 15px;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
    background-color: #fff;
}

textarea.form-control {
    resize: none;
}

.btn-submit {
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #084298;
    transform: translateY(-2px);
}

/* Make all placeholders black */
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder {
    /* color: black !important; */
    opacity: 2;
}


/* Label color in form-floating */
.form-floating>label {
    color: black;
}


.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #ef6735;
    color: #fff;
}

.tab-pane {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-box {
    background: linear-gradient(135deg, #ef6735);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-box input,
.form-box select {
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
    padding: 10px;
}

.form-box button {
    font-weight: 600;
    border-radius: 6px;
}

.popular-tours h6 {
    font-weight: 700;
    border-bottom: 2px solid #ef6735;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.popular-tours img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.popular-tours a {
    font-weight: 500;
    color: #ef6735;
    text-decoration: none;
}

.popular-tours small a {
    color: #6c757d;
    text-decoration: underline;
}

.main {
    margin-left: 40px;
    /* Adjust value as needed */
    margin-top: 10px;
}

.geek1 {
    color: white;
}


@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Grid Layout */
.container {
    max-width: 1200px;
    margin: auto;
}

.col-8 {
    flex: 0 0 65%;
}

.col-4 {
    flex: 0 0 35%;
}

/* Hero */
.tour-hero img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Quick Icons */
.quick-icons {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quick-icons div {
    text-align: center;
    flex: 1;
}

.quick-icons i {
    font-size: 22px;
    color: #ef6735;
    margin-bottom: 5px;
}

/* Cards */
.section-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section-card h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

/* Accordion */
.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #f9f9f9;
    padding: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.accordion-header.active {
    color: #ef6735;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, padding 0.3s ease;
    padding: 0 20px;

}

.accordion-body.show {
    display: block;

}

.accordion-body.open {
    padding: 0px 20px !important;
    overflow: visible;
    /* ✅ Ensures full content is shown */

}

/* Sidebar */
.sidebar h4 {
    margin-bottom: 10px;
}

.sidebar .muted {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar i {
    color: #28a745;
    margin-right: 8px;
}

/* Form */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

form textarea {
    resize: none;
}

/* Buttons */
.btn-orange {
    display: inline-block;
    background: #ef6735;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-orange:hover {
    background: #d95a2d;
}

.btn-orange.full {
    display: block;
    width: 100%;
}

.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.section-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    border-left: 4px solid #ef6735;
    padding-left: 10px;
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #f1f1f1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #ef6735;
    color: #fff;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.accordion-body.open {
    padding: 15px 20px;
}

.section-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
}

.inclusions-list li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px dashed #ddd;
}

.inclusions-list li:last-child {
    border-bottom: none;
}

#enquiry {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#enquiry h4 {
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

#enquiry form input,
#enquiry form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    /* Rounded input fields */
    outline: none;
}

#enquiry form textarea {
    resize: none;
}

#enquiry .btn-orange {
    background: orange;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    /* Rounded button */
    cursor: pointer;
    font-weight: bold;
}

#enquiry .btn-orange:hover {
    background: darkorange;
}


.section-title {
    color: #ef6735;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.list-group-item {
    font-size: .9rem;
}

.note {
    background: #e0f2fe;
    border-left: 5px solid #0ea5e9;
    padding: 1rem;
}

.package-card {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.package-header {
    background: #004d40;
    color: #fff;
    padding: 20px;
}

.package-header h3 {
    margin: 0;
}

.section-title {
    font-weight: bold;
    margin-top: 20px;
}

ul {
    margin-bottom: 0;
}

.note {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 15px;
    border-radius: 10px;
}

p.nh-space1 {
    padding-left: 25px;
}

li.list-group-item {
    font-weight: bolder;
}

.itinerary-card {
    border-left: 4px solid #ef6735;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: #fdfdfd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.itinerary-card h5 {
    font-weight: 600;
    color: #ef6735;
}

.itinerary-card p,
.itinerary-card ul {
    margin: 0.4rem 0;
    font-size: 15px;
    color: #555;
}

.itinerary-card ul li {
    list-style: disc;
    margin-left: 18px;
}

.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #212529;
}

/* Smooth dropdown animation */
.dropdown-menu {
    transition: all 0.3s ease-in-out;
    transform-origin: top center;
}

.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 20px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: #ef6735;
    color: #fff;
    transform: translateX(5px);
}

.custom-dropdown {
    width: 35S0px !important;
}

.hero {
    background:
        url('img/spiti-bike-hero.jpg') center/cover no-repeat;
    /* min-height: 52vh; */
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 0 0 24px 24px;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: .5px;
}

.hero .lead {
    color: #000000;
    font-weight: 600;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: .5rem .75rem;
    border-radius: 999px;
    font-size: .9rem;
    backdrop-filter: blur(4px);
}

/* Layout */
.toc {
    position: sticky;
    top: 90px;
}

.toc .list-group-item {
    border: 0 !important;
    color: var(--muted);
    padding: .55rem .75rem;
    border-radius: 10px !important;
}

.toc .list-group-item.active {
    background: var(--soft);
    color: var(--brand);
    font-weight: 700;
    border: 1px solid #e2e8f0 !important;
}

/* Cards */
.nh-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(2, 8, 23, .06);
}

.nh-card .nh-head {
    padding: 1rem 1.25rem;
    border-bottom: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nh-card .nh-head h4 {
    margin: 0;
    font-weight: 800;
    letter-spacing: .2px;
}

.nh-body {
    padding: 1.25rem;
}

.key-box {
    background: var(--soft);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
}

.key-box .k {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: .25rem;
}

.key-box .v {
    font-weight: 800;
    font-size: 1.05rem;
}

.badge-soft {
    background: #eef2ff;
    font-weight: 700;
}

.icon-li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.icon-li li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: .35rem 0;
    border-bottom: 1px dashed #eef2f7;
}

.icon-li li:last-child {
    border-bottom: 0;
}

.icon-li i {
    margin-top: .2rem;
}

.note {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    border-radius: 14px;
    padding: .9rem 1rem;
}

.price-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.price {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: .3px;
    color: var(--brand);
    margin: 0;
}

.strike {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 700;
}

.btn-pill {
    border-radius: 999px;
    padding: .7rem 1.1rem;
    font-weight: 800;
}

/* Section anchors offset for sticky navbar sites */
section[id] {
    scroll-margin-top: 90px;
}

/* Print (nice PDF export via Ctrl/Cmd+P) */
@media print {
    .no-print {
        display: none !important;
    }

    .hero {
        min-height: auto;
        color: #000;
        background: none;
        border-radius: 0;
    }

    .toc {
        display: none;
    }

    .nh-card {
        box-shadow: none;
    }

    a[href]:after {
        content: "";
    }

    body {
        background: #fff;
    }
}


h2 {
    color: #ef6735;
    text-align: center;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th,
td {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #ef6735;
    color: white;
    font-weight: 500;
}

tr:hover {
    background-color: #f9f9f9;
}

.note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

important-notes {
    margin-top: 30px;
}

.important-notes ul {
    list-style-type: "● ";
}

.note {
    font-weight: bold;
    color: #e74c3c;
}

.info {
    color: #2d3436;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.foreign {
    font-style: italic;
    color: #555;
}
.btn-social {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .btn-social:hover {
        background: #0d6efd;
        color: #fff;
    }
    .gallery-img {
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }
    .gallery-img:hover {
        transform: scale(1.1);
    }

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;

    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 2px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

  .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        display: none; /* hidden by default */
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .popup-content {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 400px;
        max-width: 90%;
        text-align: center;
        position: relative;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    .submit-btn {
        background: #ef6735;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
    }
    h1, h2 {
      color: #2c3e50;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }
    .section {
      margin-top: 30px;
    }

    .section-title {
      border-bottom: 2px solid #ddd;
      padding-bottom: 6px;
      margin-bottom: 12px;
      font-size: 1.3em;
    }

    .note {
      font-size: 0.9em;
      color: #666;
    }
    .hero-thanks{
    position: relative;
    background-image: url('img/pexels-shoukath-ali-kalarikkandy-240571998-12285073.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    min-height: 60vh;
    display: grid;
    align-items: center;
  }
  .hero-thanks .overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
    z-index: 0;
  }
  .hero-thanks .thank-card{
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
  }
  .hero-thanks .thank-icon{
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 6px 14px rgba(239,103,53,.35));
  }
  /* Button polish */
  .hero-thanks .btn-primary{
    background: linear-gradient(135deg, #ef6735, #ff905f);
    border: none;
  }
  .hero-thanks .btn-primary:hover{
    filter: brightness(1.05);
    transform: translateY(-1px);
  }
  .hero-thanks .btn-outline-light{
    border-width: 2px;
  }

.hero-thanks {
            position: relative;
            z-index: 2;
        }

        .thank-card {
            background: #fff;
            border-radius: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease;
        }

        .thank-icon {
            width: 80px;
            height: 80px;
            display: inline-block;
            animation: bounce 1.2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .btn-custom {
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
        }

        .footer-spacer {
            margin-top: auto;
        }

  @media (max-width: 576px){
    .hero-thanks{ min-height: 55vh; }
    .hero-thanks .thank-icon{ width: 56px; height: 56px; }
  }


/* <!-- Timeline CSS --> */
.day-icon {
  font-size: 2.2rem;
  color: #e06436; /* theme color */
}
.day-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
li {
    margin-bottom: 0px;
}