@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;
}

.h-badge 
{
     padding: 4px 10px;  
    font-size: 14px !important;
    text-transform: uppercase;
    /* margin-right: -20px; */
    border-radius: 20px;
    line-height: normal;
}
.highlighted-badge 
{
    background-color: var(--primary-color) !important;
    padding: 4px 10px;
    color: #fff !important;
    font-size: 14px !important;
    text-transform: uppercase;
    /* margin-right: -20px; */
    border-radius: 20px;
    line-height: normal;
}

.shake-btn {
  animation: smoothShake 0.6s infinite !important;
}

@keyframes smoothShake {
    0%   { transform: translateX(0) rotate(0deg); }
  25%  { transform: translateX(-4px) rotate(-1deg); }
  50%  { transform: translateX(4px) rotate(1deg) }
  75%  { transform: translateX(-4px) rotate(-1deg); }
  100% { transform: translateX(1) rotate(0deg); }
}

.pulse-btn
{
     animation: zoomInOut 1s infinite;
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035); /* Zoom In */
  }

  100% {
    transform: scale(1); /* Zoom Out */
  }
}


@-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: 5px 0 ;
    box-shadow: 0px 4px 26.9px 0px rgba(0, 0, 0, 0.12);
    min-height: 60px;
}

.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: #DDEEFF;
}



/* 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: #171430;
    padding: 50px 0;
    border-radius: 80px;
}

.footer_logo img {
    width: 200px;
}

.footer-navigation li a {
    color: #848484;
}

.text-green{
    color:#0F5132;
}

.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;
    z-index: 99;
}

.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: 18%;
    min-width: 18%;
    z-index: 999;
}

.offpage_img{
    max-width: 50%;
}

.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%;
}


/* New-css */

.bg-location-card{
      background-color: #DDEEFF;
      padding: 20px;
      border-radius: 20px;
      height: 100%;
}

.location-heading{
    color:#107FA6;
    border-bottom: 1px solid #C4C4C4;
 padding-bottom: 10px;
}


.package_card {
    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
}

.package_thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0  0;
    position: relative;
}


.package_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package_content {
    padding: 20px;
}

.rating-box, .package_location {
    color: #738094;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-box img {
    width: 85px;
}


.package_content h4 {
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}
.package_content ul
{
     list-style: none;
  padding-left: 0;
}

.package_content ul li {
    color: #6B7280;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.package_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M1.5 9C1.5 13.1394 4.86064 16.5 9 16.5C13.1394 16.5 16.5 13.1394 16.5 9C16.5 4.86064 13.1394 1.5 9 1.5C4.86064 1.5 1.5 4.86064 1.5 9' stroke='%230F5132' stroke-width='1.5'/%3E%3Cpath d='M6.75 9L8.25 10.5L11.25 7.5' stroke='%230F5132' stroke-width='1.5'/%3E%3C/svg%3E");

  background-size: contain;
}

.package_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

p.package_price {
    color: #111827;
    font-family: Urbanist;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    flex-shrink: 0;
}

.package_foot a {
    flex-shrink: 0;
        padding: 10px 20px !important;
}



.package_duration {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 33554400px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    background: #fff;
    padding: 6px 15px;
    color: #111827;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}


.inclus-packages 
{
    border-top: 1px solid #CFCFCF;
    border-bottom: 1px solid #CFCFCF;
    background: #F7EFE5;
}


.inclus-card {
    border-radius: 24px;
    background: #fff;
    padding: 30px;
    text-align: center;
}

.inclus-card h4 {
    color: #1E2939;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
     /* 133.333% */
    margin: 16px 0 8px  0;
}

.inclus-card p {
    color: #616161;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
   
}


.inclus-card.inclus-card-colored {
    border-radius: 24px;
    background: #107FA6;
    text-align: center;
    color: #fff !important;
    padding: 20px;
}

.inclus-card.inclus-card-colored p {
    color: #fff;
}

.inclus-card.inclus-card-colored h4 a {
    color: #E99939 !important;
}

ul.filter-2
{
    border-bottom: 1px solid #E5E7EB;
}
.filter-2 li
{
    padding: 10px 0 !important;
}


.filter-2 li a.is-checked {
    color: #0284C7;
    background:  transparent !important;
    border-bottom: 4px solid;
    font-weight: 700;
}

.filter-2 a {
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    color: #4A5565;
    font-size: 18px;
    font-weight: 700;

    box-shadow:  none !important;
    border-radius: 0;
}

.filter_card
{
    width: calc(100% - 10px);
    margin: 0 auto;
}

.ready-to-book1
{
    position: relative;
    overflow: hidden;
}

.ready-to-book1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, #191e3bba, rgba(25, 30, 59, 0.00));
}

.why-sect
{
border-radius: 40px;
padding: 40px;
background: #F7EFE5;
}

.why-card {
    text-align: center;
    padding: 20px;
}

.why-card h4 {
    color: #000;
    text-align: center;
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    margin: 15px 0 4px 0;
}

.why-card p {
    color: #666;
    text-align: center;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.com-no-border
{
    border: 0px ;
}


.com-no-border .compare_box_card img {
    height: 80px !important;
}

.com-no-border .compare_card_image {
    min-height: 0 !important;
}

.com-no-border  .compare_box_card {
    border:0 !important;
    border-bottom: 1px solid #E5E5EF !important;

}

.no-shink
{
    flex-shrink: 0;
}

.fd-facility {
    background: #ffffffb8;
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 6px 10px;
    border-radius: 0 30px 30px 0;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
    backdrop-filter: blur(11px);
    border: 1px solid #ffffffb5;
    color: #000000;
}



.expdel
{
    height: 200px;
}

.expdel img
{
    height: 100% ;
    object-fit: cover;
}



.footer-contact {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 10%);

    label {
        display: block;
        text-align: left;
        margin-bottom: 6px;
        font-size: 15px;
        opacity: .7;
    }

    input.form-control {
        height: 51px;
        outline: 0 !important;
        box-shadow: none !important;
        font-size: 16px;

        &:placeholder {
            font-weight: 400;
            opacity: .3
        }
    }
}



.error-small {
    text-align: left !important;
    width: 100% !important;
    display: block;
    margin-top: 8px;
}




.fd-loc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fdFadeIn 0.3s ease;
    padding: 16px;
}

.fd-loc-modal {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    animation: fdSlideUp 0.35s ease;
    overflow: hidden;
    position: relative;
}

.banner_vector_left,
.banner_vector_right {
    z-index: 9;
}

/* ── Header ── */
.fd-loc-header {
    background: #f0f4fa;
    padding: 32px 40px 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-loc-header-text {
    flex: 1;
}

.fd-loc-welcome {
    font-size: 18px;
    color: #29254C;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.fd-loc-title {
    font-size: 42px;
    font-weight: 700;
    color: #29254C;
    margin: 0 0 10px;
    line-height: 1.2;
}

.fd-loc-subtitle {
    font-size: 16px;
    color: #404850;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

.fd-loc-plane {
    width: 90px;
    opacity: 0.85;
    flex-shrink: 0;
}

.fd-loc-plane--left {
    margin-right: 20px;
    transform: scaleX(-1) rotate(-10deg);
}

.fd-loc-plane--right {
    margin-left: 20px;
    transform: rotate(10deg);
}

/* ── Cards ── */
.fd-loc-cards {
    display: flex;
    gap: 20px;
    padding: 32px 36px;
    justify-content: center;
    background: #fff;
}

.fd-loc-card {
    flex: 1;
    background: none;
    border: none;
    text-align: center;
    transition: transform 0.2s ease;
    padding: 10px;
    background-color: #DDEEFF;
    border-radius: 20px;
}

.fd-loc-card:hover {
    transform: translateY(-4px);
}

.fd-loc-card.fd-loc-card--active {
    border: 3px solid #8abbeb;
    box-shadow: 0 16px 26.8px 0 rgba(111, 93, 248, 0.10);
}

.fd-loc-card-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ddd;
}

.fd-loc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fd-loc-card:hover {
    box-shadow: 0 16px 26.8px 0 rgba(111, 93, 248, 0.10);
}

.fd-loc-pin {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fd-loc-card-check {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 26px;
    background: #0F5132;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.fd-loc-card-label {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #4E2120;
}

/* ── Continue ── */
.fd-loc-continue {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    padding: 16px;
    transition: background 0.2s, color 0.2s;
}

.fd-loc-continue:hover {
    background: #f9f9f9;
    color: #191E3B;
}

/* ── Animations ── */
@keyframes fdFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fdSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Responsive ── */
@media (max-width: 1200px) 
{
     .ph-data
    {
        display:  none !important;
    }
}
@media (max-width: 1024px) 
{
     .ph-data
    {
        display:  block !important;
    }

        
    .blink-pulse {
        width: 40px;
        height: 40px;
    }
    .fd-switcher {
        position: relative;
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }
}

@media (max-width: 640px) {




    .fd-loc-header {
        padding: 24px 20px 20px;
    }

    .fd-loc-plane {
        width: 55px;
    }

    .fd-loc-title {
        font-size: 22px;
    }

    .fd-loc-cards {
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .fd-loc-card {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .fd-loc-card-img-wrap {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        aspect-ratio: unset;
    }

    .fd-loc-pin {
        display: none;
    }

    .fd-loc-card-label {
        margin-top: 0;
        font-size: 14px;
    }

    .banner_vector_left,
    .banner_vector_right {
        z-index: 9;
        display: none;
    }
}