/* General Reset */
:root {
    --ah-clr-primary: #13407a;
    --ah-clr-secondary: #f39f4b;
    --ah-clr-secondary-light: #fff1e4ef;
    --clr-white: #ffffff;
}

/* Utilities */
.ah-text-secondary {
    color: var(--ah-clr-secondary) !important;
}

.ah-text-white {
    color: var(--clr-white);
}

.ah-text-bg-primary {
    background: var(--ah-clr-primary);
    color: var(--clr-white);
}

.ah-text-bg-secondary {
    background: var(--ah-clr-secondary);
    color: var(--clr-white);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: url(../images/background.jpg); */
    background: var(--ah-clr-secondary-light) !important;
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    overflow-y: auto;
}

/* Components */
/* Custom Buttons */
.ah-btn-primary {
    background: var(--ah-clr-primary) !important;
    color: var(--clr-white) !important;
    border-radius: 5px !important;
}

.ah-btn-outline-primary {
    background: transparent !important;
    color: var(--ah-clr-primary) !important;
    border: 1px solid var(--clr-white) !important;
    border-radius: 5px !important;
}

.ah-btn-outline-primary:hover {
    background: var(--ah-clr-primary) !important;
    color: var(--clr-white) !important;
}

.ah-btn-secondary {
    background: var(--ah-clr-secondary) !important;
    color: var(--clr-white) !important;
    border-radius: 5px !important;
}

.ah-btn-outline-secondary {
    background: transparent !important;
    color: var(--ah-clr-primary) !important;
    border: 1px solid var(--ah-clr-primary) !important;
    border-radius: 5px !important;
}

.ah-btn-outline-secondary:hover {
    background: var(--ah-clr-primary) !important;
    color: var(--clr-white) !important;
}

/* Main Container */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    width: 100%;
    padding: 50px 20px 20px 20px;
    text-align: center;
    position: relative;
}

.main-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

.main-light-bg {
    display: flex;
    background: var(--clr-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 60px 20px 20px 20px;
    text-align: center;
    position: relative;
}

.main-light-bg-sm {
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

/* Logo Section */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo img {
    width: 200px;
    animation: fadeIn 1s ease-in-out;
}

/* Calender design */
.calendar {
    height: 100%;
    border: 1px solid var(--ah-clr-secondary);
    border-radius: 8px;
    background: var(--clr-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 20px;
    /* font-size: 24px; */
    font-weight: bold;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.day,
.date {
    /* padding: 10px; */
    border-radius: 4px;
}

.day {
    background: var(--ah-clr-secondary-light);
    font-weight: bold;
}

.date {
    background: #f9f9f9;
}

.date.active {
    background: var(--ah-clr-secondary)
}

/* .date:hover {
    background: #007bff;
    color: white;
    cursor: pointer;
  } */
.empty {
    background: transparent;
}

/* Coming Soon Title */
.content-fit {
    padding-top: 50px;
}

.content-fit .title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--ah-clr-secondary);
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s ease-in-out;
}

.content-fit .title span {
    position: absolute;
    z-index: -1;
    /* left: 12%;
    top: -22%; */
    left: -3px;
    top: -26%;
    transform: rotate(345deg);
    color: var(--clr-white);
    font-size: 1.5rem;
    font-weight: 500;
    background: var(--ah-clr-primary);
    border-radius: 12px;
    padding: 0 10px;
}

.content-fit .subtitle {
    font-size: 1.125rem;
    color: var(--ah-clr-primary);
    animation: fadeIn 1.5s ease-in-out;
    margin-bottom: 20px;
}

/* Explore Packages Section */
.packages__body {
    animation: fadeInUp 0.8s ease-in-out;
}

.packages__body .nav-tabs {
    border-color: var(--ah-clr-primary);
}

.packages__body .nav-tabs .nav-link {
    color: var(--ah-clr-primary);
    border: 1px solid var(--ah-clr-primary);
    padding: 10px 25px;
    font-weight: 600;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.packages__body .nav-tabs .nav-link:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 0;
}

.packages__body .nav-tabs .nav-link:last-child {
    border-top-right-radius: 8px;
    border-top-left-radius: 0;
}

.packages__body .nav-tabs .nav-link:focus,
.packages__body .nav-tabs .nav-link:hover {
    border: 1px solid var(--ah-clr-primary);
}

.packages__body .nav-tabs .nav-link.active {
    background: var(--ah-clr-primary);
    color: var(--clr-white);
    border-color: var(--ah-clr-primary);
    border-bottom: 1px solid var(--ah-clr-primary);
}

.packages__body .package-card {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid var(--ah-clr-secondary);
    text-align: left;
    position: relative;
}

.packages__body .package-card .ribbon-2 {
    --f: 10px;
    /* control the folded part*/
    --r: 15px;
    /* control the ribbon shape */
    --t: 15px;
    /* the top offset */

    position: absolute;
    inset: var(--t) calc(-1*var(--f)) auto auto;
    padding: 0 10px var(--f) calc(10px + var(--r));
    clip-path:
        polygon(0 0, 100% 0, 100% calc(100% - var(--f)), calc(100% - var(--f)) 100%,
            calc(100% - var(--f)) calc(100% - var(--f)), 0 calc(100% - var(--f)),
            var(--r) calc(50% - var(--f)/2));
    background: red;
    box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.875rem;
}

.packages__body .package-card-img-wrapper {
    padding: 5px 0 5px 5px;
}

.packages__body .package-card-body {
    padding: 5px 5px 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.packages__body .package-card-body hr {
    margin: 0 0 0 0;
    color: var(--ah-clr-primary);
    opacity: 0.20;
}

.packages__body .package-card-body .card-services {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.packages__body .package-card-body .card-services .card-service {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    flex-wrap: nowrap;
    min-width: 84px;
}

.packages__body .package-card-body .card-services .card-service .service-icon {
    border: 1px solid var(--ah-clr-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    transition: all 0.2s ease-in-out;
    color: var(--ah-clr-primary);
}

.packages__body .package-card-body .card-services .card-service .service-icon .air-fare {
    background: url(../images/airfare-visa.svg);
    height: 22px;
    width: 22px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}

.packages__body .package-card-body .card-services .card-service .service-icon:hover .air-fare {
    background: url(../images/airfare-visa-hover.svg);
}

.packages__body .package-card-body .card-services .card-service .service-icon:hover {
    background: var(--ah-clr-primary);
    color: var(--clr-white);
}

.packages__body .package-card-body .card-services .card-service .service-icon i {
    font-size: 1.125rem;
}

.packages__body .package-card-body .card-services .card-service .service-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ah-clr-primary);
}
 
.packages__body .package-card-body .price {
    display: flex;
    flex-direction: column;
    border: 1px dashed var(--ah-clr-secondary);
    width: fit-content;
    border-radius: 15px;
    padding: 0 10px 10px 10px;
}

.packages__body .package-card-body .se {
    display: flex;
    justify-content: end;
}

.packages__body .package-card-body .price .price-value {
    font-size: 1.5rem;
    color: var(--ah-clr-primary);
    font-weight: bold;
}

.packages__body .package-card-body .price .price-content {
    font-size: 0.75rem;
    color: #757575;
}

.packages__body .package-card-body .tc {
    font-size: 0.7rem;
}

.packages__body .package-card-body .card-note {
    font-size: 0.75rem;
    color: #757575;
    margin-bottom: 2px;
}

.packages__body .package-card-body .card-note span {
    color: red;
    font-weight: bold;
}

.packages__body .package-card .package-card-img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.packages__body .package-card .package-card-title {
    color: var(--ah-clr-primary);
    font-weight: 700;
}

.packages__body .package-card .package-card-title span {
    color: red;
    font-weight: 500;
}

.packages__body .package-card .card-subtitle {
    color: var(--ah-clr-secondary);
    font-weight: 600;
}

/* Addresses Section */
.addresses {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.address-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.address-box {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ah-clr-secondary);
    border-radius: 15px;
    padding: 20px;
    width: calc(50% - 20px);
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.address-box.large-box {
    width: calc(100% - 40px);
    max-width: 500px;
}

.address-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.address-box .add-title {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ah-clr-secondary);
    border-radius: 16px;
    padding: 4px 16px;
    text-align: center;
    white-space: nowrap;
}


.address-box .add-title h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--ah-clr-primary);
    margin-bottom: 0;
}

.address-box p {
    color: #000;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 5px 0;
}

.address-box p a {
    text-decoration: none;
    color: #000;
}

/* Footer Section */
.footer {
    position: relative;
    bottom: 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
    animation: fadeIn 1.5s ease-in-out;
}

.footer p {
    color: var(--ah-clr-primary);
    margin: 5px 0;
    font-weight: 600;
}

/* Inquiry Button */
.btn-inquiry {
    /* position: fixed; */
    /* top: 20px;
    right: 20px; */
    background-color: var(--ah-clr-primary);
    color: var(--clr-white);
    font-weight: 600;
    border: none !important;
    padding: 6px 12px;
    border-radius: 5px;
    /* cursor: pointer;
    z-index: 1050; */
    display: flex;
    justify-content: center;
    /* padding-bottom: 25px; */
}

/* Popup Modal Styling */
.modal-header {
    text-transform: uppercase;
    background-color: var(--ah-clr-secondary);
    color: var(--ah-clr-primary);
    padding: 7px 20px !important;
}

.modal-header h5 {
    font-size: 1.15rem;
}

.modal-footer.btn {
    float: right;
    background-color: var(--ah-clr-primary);
    color: var(--clr-white);
    border: none;
    padding: 6px 12px;
}

.modal-footer.btn:hover {
    background-color: var(--ah-clr-primary);
    color: var(--clr-white);
    border: none;
}

#inquiryForm .form-label {
    font-size: 0.875rem;
    color: var(--ah-clr-primary);
    font-weight: 500;
    margin-bottom: 6px;
}

#inquiryForm .form-control {
    font-size: 0.875rem;
}

/* Form validations */

label.error {
    color: red;
    font-weight: 400;
    font-size: 0.75rem;
}

input.valid.success-alert,
textarea.valid.success-alert {
    border: 2px solid #4caf50;
}

input.error,
textarea.error {
    border: 1px dashed red;
    font-weight: 300;
    color: red;
}

.form-messages.success {
    color: green;
    font-weight: 400;
    font-size: 0.75rem;
}

.form-messages.error {
    color: red;
    font-weight: 400;
    font-size: 0.75rem;
}

/* Package view page design */

.breadcrubs {
    position: relative;
    height: 260px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.breadcrubs .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    z-index: 1;
}

.backbtn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    background: transparent;
    border: none;
    top: 4%;
    right: 3%;
    padding: 6px 20px;
    border-radius: 8px;
    background: var(--ah-clr-primary) !important;
    border: none;
    transition: 0.5s all ease-in-out;
}

.backbtn a {
    text-decoration: none;
    color: var(--clr-white);
    font-weight: 00;
    text-transform: capitalize;
}

.backbtn:hover {
    transform: scale(1.05);
}

.itinerary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 30px;
    border-radius: 8px;
    background: var(--ah-clr-primary) !important;
    border: none;
    transition: 0.5s all ease-in-out;

    a {
        text-decoration: none;
        color: var(--clr-white);
        text-transform: capitalize;
        font-size: 1rem;
        transition: 0.2s all ease-in-out;
    }

    :hover {
        transform: scale(1.05);
    }
}

.breadcrubs.dubai {
    background: url("../images/bradcrumbs-dubai.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.lapita-dubai {
    background: url("../images/bradcrumbs-dubai-lapita.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.yas-island {
    background: url("../images/breadcrumb-yas-island.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.himachal-7 {
    background: url("../images/breadcrumb-himachal-7d.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.himachal-8 {
    background: url("../images/breadcrumb-himachal-8d.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.himachal-6 {
    background: url("../images/breadcrumb-himachal-6d.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.bali {
    background: url("../images/breadcrumb-bali.jpg") no-repeat scroll center center / cover;
}

.breadcrubs.singapore {
    background: url("../images/breadcrumb-singapore.jpg") no-repeat scroll center center / cover
}

.breadcrubs.chardham {
    background: var(--ah-clr-primary);
}

.breadcrubs.chardham .title-text {
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ah-clr-secondary);
    flex-direction: column;
    width: 100% !important;
}

.breadcrubs.chardham .title-text .tour-detail {
    padding: 15px 0 10px 0;
    font-size: 1rem;
    color: var(--clr-white);
    font-weight: 500;
}

.breadcrubs.chardham .title-text .best-time {
    color: var(--clr-white);
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrubs .breadcurbs-inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrubs .breadcurbs-inner .breadcrubs-title {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--clr-white);
    display: flex;
    justify-content: center;
}

.breadcrubs .breadcurbs-inner .title-text {
    position: relative;
    display: flex;
    justify-content: center;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.breadcrubs-title .title-text span {
    width: max-content;
    height: max-content;
    color: var(--clr-white);
    text-shadow:
        1px 2px 0 var(--ah-clr-primary),
        1px 2px 0 var(--ah-clr-primary),
        1px 2px 0 var(--ah-clr-primary),
        1px 2px 0 var(--ah-clr-primary);
}

.breadcrubs-title .title-text span:nth-child(2n + 1) {
    font-family: "Yellow Tail";
    font-size: 2.5rem;
}

.breadcrubs-title .title-text span:nth-child(2),
.breadcrubs-title .title-text span:nth-child(4) {
    font-family: "Poppins";
    font-size: 4rem;
    font-weight: 600;
}

.breadcrubs-title .title-text span:first-child {
    position: absolute;
    top: 5%;
    left: 12%;
}

.breadcrubs-title .title-text span:nth-child(2) {
    position: absolute;
    top: 13%;
    left: 15%;
}

.breadcrubs.india .breadcrubs-title .title-text span:first-child {
    left: 20%;
}

.breadcrubs.bali .breadcrubs-title .title-text {
    transform: translate(10%, 10%);
}

.breadcrubs.india .breadcrubs-title .title-text span:nth-child(2) {
    left: 30%;
}

.breadcrubs-title .title-text span:nth-child(3) {
    position: absolute;
    color: var(--ah-clr-secondary);
    top: 32%;
    left: 24%;
    z-index: 1;
}

.breadcrubs-title .title-text span:nth-child(4) {
    position: absolute;
    top: 40%;
    left: 28%;
}

.breadcrubs-title .title-text span:nth-child(5) {
    position: absolute;
    font-family: "Poppins";
    top: 18%;
    left: 50%;
}


.pkg-highlights .hls-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    bottom: 45px;
    z-index: 2;
}

.pkg-highlights .hls-wrapper .hls-header {
    position: absolute;
    transform: translate(0%, -50%);
    background: var(--ah-clr-primary);
    color: var(--clr-white);
    font-weight: 600;
    border-radius: 15px;
    padding: 5px 20px;
    box-shadow: 0px 4px 4px 0px rgba(53, 18, 91, 0.15);
    text-align: center;
}

.itinerary-download {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hls-wrapper .badge {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 44%;
    transform: scale(1.3);
}

.hls-wrapper .hls-content {
    width: 70%;
    padding: 25px;
    background: var(--clr-white);
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(18, 29, 91, 0.15);
}

.hls-wrapper .hls-content.cd {
    width: 62%;
}

.hls-wrapper .hls-content .card {
    border: none;
}

.hls-wrapper .hls-content .card-body {
    border: 1px solid #13407a79;
    border-radius: 0 0 10px 10px;
}

.hls-card-img {
    height: 200px;
    border-radius: 10px 10px 0 0;
}

.hls-card-content ul,
.pkg-inc-exc .inc-exc-wrapper .accm-content .accm-ul,
.pkg-inc-exc .inc-exc-wrapper .meals-content .meals-ul {
    list-style-image: url("../images/gold-plane.svg");
    text-align: left;
    padding-left: 1.125rem;
}

.hls-card-content.cd ul li {
    font-size: 1rem;
    color: var(--ah-clr-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.hls-card-content.cd ul {
    margin-bottom: 0;
    list-style: disc;
}

.hls-card-content ul li {
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.pkg-services .services-wrapper {
    display: flex;
    justify-content: space-around;
}

.pkg-services .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.pkg-services .service-item .service-item-icon {
    padding: 10px 12px;
    width: fit-content;
    background: var(--ah-clr-secondary);
    border-radius: 50%;
    height: 44px;
    width: 44px;
}

.pkg-services .service-item .service-item-icon i {
    color: #000;
    font-size: 1.5rem;
}

.pkg-services .service-item .service-item-icon img {
    width: 20px;
    height: 20px;
}

/* scrollspy design */
.scrollspy-wrapper {
    background: var(--clr-white);
}

.scrollspy-wrapper nav {
    border-bottom: 1px solid var(--ah-clr-secondary);
}

.scrollspy-wrapper .nav-item .nav-link {
    border: 1px solid var(--ah-clr-secondary-light);
    border-radius: 0;
    transition: all ease-in-out 0.5s;
    color: var(--ah-clr-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.scrollspy-wrapper .nav-item .nav-link.active,
.scrollspy-wrapper .nav-item .nav-link:hover {
    border: 1px solid var(--ah-clr-secondary);
    background: var(--ah-clr-secondary);
    color: var(--clr-white);
    letter-spacing: 0.3px;
}

.scrollspy-wrapper .nav-item .nav-link.enquire {
    border: 1px solid var(--ah-clr-primary);
    background: var(--ah-clr-primary);
    color: var(--clr-white);
    letter-spacing: 0.3px;

}

.scrollspy-wrapper .nav-item .nav-link.enquire:hover {
    border: 1px solid var(--ah-clr-primary);
    background: transparent;
    color: var(--ah-clr-primary);
}

.scrollspy-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for better visibility */
}

.pkg-itinerary {
    height: 100%;
    padding: 50px 0 70px 0;
    text-align: center;
}

.pkg-itinerary .itineraries-wrapper .accordion-button:not(.collapsed) {
    color: var(--clr-white);
    background-color: var(--ah-clr-secondary);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.pkg-itinerary .itineraries-wrapper .itinerary-img-wrapper {
    width: 30%;
}

.pkg-itinerary .itineraries-wrapper .itinerary-img-wrapper .itinerary-img {
    width: 100%;
}

.pkg-itinerary .itinerary-content {
    width: 70%;
}

.pkg-itinerary .itinerary-content ul {
    list-style-image: url("../images/gold-plane.svg");
    text-align: left;
    padding-left: 1.125rem;
}

.pkg-itinerary .itinerary {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pkg-itinerary .itinerary h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
}

.pkg-itinerary .day {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-bottom: 1px dashed #ddd;
}

.pkg-itinerary .day:last-child {
    border-bottom: none;
}

.pkg-itinerary .day h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ah-clr-primary);
}

.pkg-itinerary .day p {
    margin: 5px 0 0;
    color: #000000;
    font-weight: 500;
}

.pkg-itinerary .highlight {
    font-weight: 600;
    color: var(--ah-clr-secondary);
}

@media (max-width: 768px) {}


/* Inclusion and exclusion design */
.pkg-inc-exc .inc-exc-wrapper .title {
    border-bottom: 1px solid var(--ah-clr-secondary);
    margin-bottom: 10px;
}

.pkg-inc-exc .inc-exc-wrapper ul li {
    text-align: left;
    text-transform: capitalize;
}

.pkg-inc-exc .inc-exc-wrapper .inc-content .inc-ul {
    list-style-image: url(../images/correct.svg);
    padding-left: 1.5rem;
}

.pkg-inc-exc .inc-exc-wrapper .exc-content .exc-ul {
    list-style-image: url(../images/delete.svg);
    padding-left: 1.5rem;
}

.package-cost .table-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid var(--ah-clr-primary);
    border-radius: 8px;
    background: var(--clr-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-cost table {
    width: 100%;
    border-collapse: collapse;
}

.package-cost thead {
    background-color: var(--ah-clr-primary);
    color: var(--clr-white);
    ;
}

.package-cost th,
.package-cost td {
    padding: 12px 15px;
    text-align: center;
}

.package-cost td {
    border: 1px solid #ddd;
}

.package-cost th {
    font-weight: bold;
}

.package-cost tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.package-cost tbody tr:nth-child(even) {
    background-color: var(--clr-white);
    ;
}

#vehiclesSection .title {
    text-align: center;
}

#vehiclesSection .vehical-content {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#vehiclesSection .vehical-content .vehical-box {
    padding: 20px;
}

#vehiclesSection .vehical-content .vehical-box .car {
    max-width: 300px;
    width: 100%;
}

#vehiclesSection .vehical-content .vehical-box .car img {
    width: 100%;
}

#vehiclesSection .vehical-content .vehical-box .vehical-info {
    text-align: center;
    padding-top: 20px;
}

#vehiclesSection .vehical-content .vehical-box .vehical-info .persons {
    font-weight: bold;
}

#vehiclesSection .vehical-content .vehical-box .vehical-info .car-info {
    color: var(--ah-clr-primary);
    font-weight: bold;
    font-size: 1.125rem;
    padding: 5px 0 10px 0;
}

/* .package-cost .vehical-content .vehical-ul {
    text-align: left;
}

.package-cost .vehical-content .vehical-ul .vehical-li {
    padding: 3px 0;
    list-style-image: url(../images/gold-plane.svg);
} */

.package-cost .rate-calculator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.package-cost .form-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--ah-clr-primary);
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
}

.package-cost .form-container h3 {
    font-size: 1.35rem;
    color: var(--ah-clr-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.package-cost .form-container label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    font-size: 0.875rem;
}

.package-cost .form-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--ah-clr-primary);
    border-radius: 8px;
    font-size: 0.875rem;
}

:focus-visible {
    outline: none;
}

.package-cost .form-container #totalAmount h3 {
    margin-top: 20px;
    font-size: 1.25rem;
    color: var(--ah-clr-primary);
    font-weight: 600;
}

.package-cost .popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-cost .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
}

.package-cost .popup-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.package-cost .popup-content form .form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    align-items: start;
    flex-direction: column;
}

.package-cost .popup-content form .form-group label {
    font-size: 0.875rem;
}

.package-cost .popup-content form .form-group label.error {
    font-size: 0.75rem;
}

.package-cost .popup-content form .form-group input {
    width: 100%;
    padding: 6px;
    border: 1px solid var(--ah-clr-primary);
    border-radius: 8px;
    font-size: 0.875rem;
}

.package-cost .popup-content h3 {
    padding: 0 0 10px 0;
    font-size: 1.25rem;
    color: var(--ah-clr-primary);
    font-weight: bold;
}

.package-cost .popup-content button,
#contactButton {
    padding: 6px 20px;
    border-radius: 8px;
    background: var(--ah-clr-primary);
    border: none;
    transition: 0.5s all ease-in-out;
    color: var(--clr-white);
}

.captcha-container {
    margin: 10px 0;
}

.captcha-box {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 6px;
    color: var(--ah-clr-primary);
    background: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    user-select: none;
    max-width: 150px;
    text-align: center;
    width: 100%;
}

.captcha-box #captchaBox {
    transform: rotate(355deg);
}

.captcha-refresh {
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    right: 8%;
}

.captcha-input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

.hotel-section {
    padding: 50px 0 30px 0;
}

.hotels-section {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.hotels-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.hotels-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.hotels-table th,
.hotels-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.hotels-table th {
    background-color: #f3f3f3;
    color: var(--ah-clr-primary);
    font-weight: bold;
}

.hotels-table td {
    vertical-align: top;
}

.hotels-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

.itinerary-section {
    margin: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.itinerary-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #444;
}

.itinerary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.itinerary-table th,
.itinerary-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.itinerary-table th {
    background-color: #f3f3f3;
    color: var(--ah-clr-primary);
    font-weight: bold;
    text-align: center;
}

.itinerary-table td {
    vertical-align: top;
    line-height: 1.6;
}

.itinerary-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

.itinerary-table td:first-child {
    font-weight: bold;
    text-align: center;
    background-color: #f3f3f3;
    color: var(--ah-clr-primary);
}

.hotels-table,
.itinerary-table {
    min-width: 700px;
    width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.accm-ul.pt {
    padding-top: 50px;
    list-style-image: url(../images/gold-plane.svg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        overflow-y: auto;
    }

    .logo img {
        width: 150px;
    }

    .content-fit .title {
        font-size: 2.5rem;
    }

    .addresses {
        margin-top: 20px;
        padding: 0 10px;
    }

    .address-box {
        width: calc(100% - 20px);
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .packages__body .package-card-body .card-services .card-service {
        min-width: unset;
    }

    .packages__body .package-card-body .se {
        justify-content: start;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .content-fit .title {
        font-size: 2rem;
    }

    .content-fit .subtitle {
        font-size: 1rem;
    }

    .address-box,
    .address-box.large-box {
        width: calc(100% - 20px);
        max-width: 100%;
        padding: 15px;
    }

    .address-box .add-title {
        font-size: 0.9rem;
        padding: 2px 12px;
    }

    .footer {
        font-size: 0.9rem;
    }

    .content-fit .title span {
        left: 8%;
        font-size: 1.25rem;
    }

    .inquiry {
        margin-bottom: 20px;
    }

    /* Package view page design */
    .breadcrubs-title .title-text span:nth-child(2n + 1) {
        font-size: 2rem;
    }

    .breadcrubs-title .title-text span:nth-child(2),
    .breadcrubs-title .title-text span:nth-child(4) {
        font-size: 2rem;
    }

    .breadcrubs.chardham .title-text {
        width: 100%;
    }

    .pkg-itinerary .itinerary {
        padding: 15px;
    }

    .pkg-itinerary .day h3 {
        font-size: 16px;
    }

    .accm-ul.pt {
        padding-top: 0;
    }

    .hls-wrapper.char {
        bottom: 15px;
    }
}

@media screen and (max-width: 600px) {
    .backbtn {
        left: 4%;
        top: 25%;
        display: none;
    }

    .hls-wrapper .hls-content,
    .hls-wrapper .hls-content.cd {
        width: 100%;
    }

    .pkg-services .services-wrapper {
        flex-direction: column;
    }

    .pkg-services .service-item {
        margin-right: 0;
    }

    .packages__body .package-card-body,
    .packages__body .package-card-img-wrapper {
        padding: 10px;
    }

    .scrollspy-wrapper {
        display: none;
    }

    .pkg-itinerary .itinerary-content {
        width: 100%;
    }

    .breadcrubs-title .title-text span:first-child,
    .breadcrubs.india .breadcrubs-title .title-text span:first-child {
        top: 5%;
        left: 0;
    }

    .breadcrubs-title .title-text span:nth-child(2) {
        top: 16%;
        left: 8%;
    }

    .breadcrubs-title .title-text span:nth-child(3) {
        top: 25%;
        left: 26%;
    }

    .breadcrubs-title .title-text span:nth-child(4) {
        position: absolute;
        top: 37%;
        left: 14%;
    }

    .packages__body .package-card-body .card-services .card-service .service-name {
        display: none;
    }

    .packages__body .package-card-body .card-services {
        gap: 10px;
        padding: 10px 0 20px 0;
    }

    .pkg-highlights .hls-wrapper .hls-header {
        font-size: 0.875rem;
        transform: translate(0%, -80%);
        width: 90%;
    }

    .packages__body .nav-tabs .nav-link {
        padding: 5px 10px;
        font-size: 0.875rem;
    }

}


@media (max-width: 400px) {
    .content-fit .title {
        font-size: 1.85rem;
    }

    .content-fit .title span {
        top: -30%;
        left: 6%;
    }

    .hls-wrapper .hls-content {
        padding: 35px 10px 10px 10px;
    }

    .packages__body .package-card-body .card-services .card-service .service-icon {
        width: 32px;
        height: 32px;
    }

    .packages__body .package-card-body .card-services .card-service .service-icon i {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}