@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
    scroll-padding-top: 60px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", serif;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow-x: hidden;
    color: var(--black-color);
}

.custom-border {
    border-right: 2px solid;
}

.border-x-1 {
    border: 1px solid var(--blue-color);
    border-top: 0;
    border-bottom: 0;

    @media(max-width:991px) {
        border: 0px solid var(--blue-color);
        border-left: 1px solid var(--blue-color);
    }
}

/* PRELOADER CSS */

.preloader {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
    background-color: white;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.preloader .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.preloader .dot1,
.preloader .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.preloader .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.header_fixed .secondary_btn:hover {
    background-color: var(--light-color) !important;
    color: var(--secondary-color);
}

/* Header-css */

header {
    box-shadow: 0px 2px 14.2px 0px rgba(0, 0, 0, 0.06);
}

.mobile-address {
    display: none;
}

.mobile-address .header-top_contact {
    gap: 10px;
}

.divide-line {
    height: 1px;
    width: 100%;
    border-top: 1px solid #dadada;
    display: none;

}

.mobile-address .header_top_contact_icon a {
    color: #000;
}

.mobile-address .header_top_contact_icon a svg,
.mobile-address .social-media svg {
    fill: var(--primary-color);
    flex-shrink: 0;
}

.frame-box1 {
    width: 100%;
    border-radius: 20px;
    height: 400px;
}

@media (max-width:991px) {

    .mobile-address,
    .divide-line {
        display: block;
    }
}


/* Header-top-start-css */

.header-top_start {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.social-media li {
    display: flex;
    align-items: center;
    line-height: 00;
}


.social-media li svg {
    fill: white;
}

.navbar-toggler {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon {
    background-image: url('../../images/toggle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header_nav .navbar-nav .nav-link {
    padding: 0;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-family: var(--font-urbanist);
    line-height: 90px;
}

.header_nav .navbar-nav .nav-link.active,
.header_nav .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    position: relative;

}


.header_nav .navbar-nav .nav-link.active::after {
    position: absolute;
    left: 0px;
    right: 0;
    width: 100%;
    content: '';
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0px;
}

/* header-css */

.header_main {
    background: rgba(255, 255, 255, 1);
    padding: 0px;
    box-shadow: 0px 4px 26.9px 0px rgba(0, 0, 0, 0.12);
    min-height: 90px;
}

.navbar-nav {
    align-items: center;
    gap: 60px;
}

.header_icon {
    background-color: #d1e7dd;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid #0f5132;
    height: 50px;
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 120px;
}

.blink-pulse {
    width: 50px;
    height: 50px;
    animation: blink 1.5s infinite, pulse 2s infinite;
    /* background-image: url(../../images/outline-header-icon.svg); */
}

/* Blinking effect */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Pulsing effect */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(15, 81, 50, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 10px rgba(255, 87, 34, 0);
    }
}


/* Banner_section-css */
.bg-banner {
    background: linear-gradient(180deg, rgba(16, 127, 166, 0.26) -12.24%, rgba(16, 127, 166, 0.00) 100%);
    overflow: hidden;
}

.banner_form {
    border-radius: 30px;
    border: 1px solid #E99939;
    background: #FCFCFC;
}

.banner_container {
    max-width: 80%;
    margin: 0 auto;
}

.h-grey {
    color: rgba(0, 0, 0, 0.5);
}

.call-icon {
    border-radius: 15px;
    /* border: 1px solid #0f5132; */
    /* background: #FFF; */
    /* box-shadow: 0px 0px 6.8px 0px rgba(191, 65, 52, 0.50); */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Compare_box-css */
.compare_box {
    border-radius: 20px;
    border: 2px solid rgba(16, 127, 166, 0.37);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0px 2px 6px 0px rgba(13, 10, 44, 0.08);
    padding: 20px;
}

.compare_box h3 {
    border-bottom: 1px solid #E5E5EF;
    padding-bottom: 10px;
}

.compare_box_card {
    border-right: 1px solid #E5E5EF;
}

.compare_box_card img {
    height: 180px;
}

.compare_box_card-last img {
    height: 212px;
    margin-top: -10px;
}

.custom_card {
    border-radius: 20px;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 2px 10px 0px rgb(13 10 44 / 12%);
    margin-top: -5px;
}

.custom_card h3 {
    border-bottom: 1px solid #E5E5EF;
    padding: 20px 0;
}

.custom_card img {
    padding-top: 20px;
}

.compare_card_image {
    min-height: 205px;
}


/* Testimonial-slider-css */
.review_slide {
    padding: 0 15px;
}

.review_card {
    border-radius: 50px 50px 0px 0px;
    border-top: 4px solid #FFF;
    background: linear-gradient(180deg, rgba(233, 153, 57, 0.20) -7.47%, rgba(22, 104, 227, 0.00) 86.08%);
    box-shadow: 0px -25px 49.2px 0px rgb(0 0 0 / 11%);
    padding: 30px 40px;
    position: relative;
}

.quote-image {
    position: absolute;
    left: 50px;
    top: -30px;
}

.review-slider .slick-list {
    padding: 50px 0;
}

.slick-dots li button:before {
    height: 20px;
    width: 20px;
    background-color: rgba(233, 153, 57, 0.21);
    border-radius: 100px;
    content: '' !important;
    box-shadow: 0px 2px 4px rgba(233, 153, 57, 0.43);
    outline: 2px solid white;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: var(--secondary-color);
}


/* Explore-deals-cards */
.explore_deals_card {
    border-radius: 16px;
    border: 1px solid #DFE0E4;
    background: #FFF;
    box-shadow: 0px 2px 14.2px 0px rgba(0, 0, 0, 0.06);
    padding: 10px;
}

.explore_deals_image img {
    border-radius: 15px;
}

.explore_deals_price {
    font-size: var(--section-h3);
    color: #191E3B;
    font-weight: 700;
}

.explore_deals_old_price {
    text-decoration: line-through;
}

.off-price {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 9;
    background-color: #E99939;
    padding: 8px 20px;
    border-radius: 6px 0 0 6px;
}

/* Cta-section-start */
.cta-bg {
    background-color: #29254C;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.cta-aeroplane-left {
    position: absolute;
    bottom: -50px;
    left: 22%;
}

.cta-aeroplane-right {
    position: absolute;
    right: 28%;
    top: 0;
}


/* Why-choose-us-start */
.why-choose {
    background-image: url(../../images/map-image.svg);
}

.who-we-are-icon {
    background-color: rgba(233, 153, 57, 0.15);
    display: inline-block;
    padding: 15px;
    border-radius: 100px;
}

.popular-destination {
    background-color: var(--info-color);
}


/* Filter-css */
.filters {
    display: flex;
    list-style: none;
}

.filters a {
    background-color: white;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.25);
}

.filters li a.is-checked {
    background-color: var(--primary-color);
    color: white;
}

.filter-image img {
    border-radius: 20px;
    border: 2px solid white;
}

.filter-content {
    position: absolute;
    top: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.filter-data h4 {
    font-size: 18px;
}


/* Ready-cta-css */
.ready-to-book {
    background-image: url(../../images/ready_cta-bg.png);
    padding: 100px 0;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.ready-aeroplane-left {
    position: absolute;
    left: -300px;
}

.ready-aeroplane-right {
    position: absolute;
    right: -150px;
    top: -50px;
}


/* Featured-card-css */
.featured_card {
    border-radius: 16px;
    border: 2px solid #E4E4E4;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 2px 44.5px 0px rgba(0, 0, 0, 0.11);
}

.featured-price {
    background-color: rgba(233, 153, 57, 0.24);
    padding: 10px;
    border-radius: 8px;
}

/* Faq-section-css */
.accordion-item {
    margin-bottom: 20px;
    border: none;
}

.accordion-button {
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 500;
    color: black;
    border: 2px solid rgba(191, 65, 52, 0.25);
    border-radius: 20px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 20px !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;

}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--black-color);
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 20px !important;
}


/* Blog-css */
.blog-card {
    border-radius: 17px;
    border: 2px solid #DCDCDC;
    position: relative;

}

.blog-slide {
    padding: 0 15px;
}

.blog-image img {
    aspect-ratio: 3 / 1;
    object-fit: cover;
    border-radius: 15px;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    background-color: var(--secondary-color);
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 5px 18px;
    border-radius: 100px;
}

.blog-date h5 {
    color: black;
    font-size: 18px;
}

.blog-slider .slick-list {
    padding: 50px 0;
}

.custom-arrows {
    position: absolute;
    bottom: 10px;
    /* adjust spacing from bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    /* spacing between arrows */
    z-index: 10;
}

.custom-prev,
.custom-next {
    background: none;
    border: none;
    cursor: pointer;
}

.custom-prev img,
.custom-next img {
    width: 30px;
    /* adjust size */
    height: auto;
}

.slick-next {
    right: -75px;
}

.slick-prev {
    left: -75px;
}


.ready-bg {
    background-image: url(../../images/ready-to-travel-bg.png);
    padding: 150px 0;
    border-radius: 80px;
    background-size: cover;
    position: relative;
}

/* Footer-css */
.footer_bg {
    background-color: var(--info-color);
    padding: 50px 0;
    border-radius: 80px;
}

.footer_logo img {
    width: 200px;
}

.footer-navigation li a {
    color: white;
}

.footer-navigation li a:hover {
    color: var(--secondary-color);
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.fixed-offPoup {
    position: fixed;
    bottom: 0px;
    left: 10px;

    /* box-shadow: 0px 0px 30px rgba(0,0,0,20%); */
    @media(max-width:767px) {
        display: none;
    }
}

.fixed-offPoup img {
    max-width: 400px;
}

.contect-data {
    h4 {
        font-size: 20px;
        font-weight: 600;
        color: var(--blue-color);
    }

    p {
        font-size: 16px;
        font-weight: 600;
    }
}

.border-xl-1 {
    border-left: 1px solid rgba(0, 0, 0, 10%);
    border-right: 1px solid rgba(0, 0, 0, 10%);

    @media(max-width:767px) {
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 10%);
        border-bottom: 1px solid rgba(0, 0, 0, 10%);
        padding: 10px 0;
    }
}


.loader-icon {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 0px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#submitBtn {
    display: flex;
    align-items: center;
}


.text-info {
    color: var(--info-color) !important
}

.line-clamp-2 {

    display: -webkit-inline-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}

.banner_vector_left, .banner_vector_right {
    opacity: .3;
}




.rating-icon svg path {
    fill: rgb(146, 146, 146);
}

.rating-icon svg.rated path {
    fill: #FFA600
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: #bf423446;
}

::-webkit-scrollbar-thumb {
    background-color: #BF4134;
    border-radius: 10px;
}

.flight_card {
    background: #ffffff;
    background: linear-gradient(259deg, rgba(255, 255, 255, 1) 0%, rgba(255, 214, 210, 1) 100%);
    padding: 20px 20px 20px 0px;
    position: fixed;
    bottom: 30px;
    left: 20px;
    border-radius: 20px;
    gap: 20px;
    max-width: 25%;
    min-width: 30%;
    z-index: 999;
}

.close-btn svg {
    width: 20px;
    height: 20px;
}

.close-btn:hover svg {
    stroke: var(--color-primary);
}


.search_suggestion {
    overflow: scroll;
    max-height: 300px;
    overflow-x: hidden;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.24);
    top: 64px;
    right: 0px;
}

.search_suggestion::-webkit-scrollbar {
    width: 3px;
}

.search_suggestion::-webkit-scrollbar-track {
    background: #FFF;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

.search_suggestion::-webkit-scrollbar-thumb {
    background: #124838;
    border-radius: 4px;
}

.traveler-dropdown {
    position: relative;
    width: 100%;
    background: white;
    cursor: pointer;
    font-size: 15px;
}

.traveler-menu {
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    border-radius: 10px;
}

.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.left-section {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.label {
    font-weight: bold;
    color: #000;
    /* Optional: to match your screenshot */
}

.sub-label {
    font-size: 12px;
    color: gray;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.controls button {
    background: #b84737;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
}

.controls span {
    min-width: 14px;
    text-align: center;
    font-size: 14px;
}

.d-none {
    display: none;
}

#submit-btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    border: none;
    opacity: 0.6;
}


.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}