@media (min-width: 768px) {
.header {
    min-height: 100px; 
}
.navbar-menu li{
        /* background: yellow; */
    /* border-radius: 20px; */
    top: 60px;
    /* margin-top: 50px; */
    position: absolute;
    z-index: 500;
    background-color: #ffe9e2;
    color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
    display: flex
;
    padding: 0 15px;
    height: 40px;
    align-items: center;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    font-weight: 400;
    color: #000;
    column-gap: 8px;
    position: relative;
    line-height: normal;
    margin-left: 10px;
}

.nav-menu > .active ,
.nav-menu > .focus,
.nav-menu > li:hover {
    background-color: var(--bs-primary);
}
.navbar-menu a{
        color: #fff;
}
/* Solution 1: Ensure nav-menu doesn't wrap */
.nav-menu.navbar-menu {
    white-space: nowrap; /* Prevent wrapping */
    flex-wrap: nowrap;   /* If using flexbox */
    display: flex;
}

/* Solution 2: Reduce padding/margin on menu items */
.nav-menu.navbar-menu > li {
    margin-right: 8px; /* Adjust as needed */
    padding: 0;
}

/* Solution 3: Make the container wider or allow horizontal scroll */
.navigation-landscape {
    min-width: 100%; /* Ensure full width */
    overflow-x: auto; /* Add scroll if needed (optional) */
}

/* Solution 4: Adjust font size or icon spacing */
.nav-menu.navbar-menu > li a i {
    margin-right: 4px; /* Reduce icon spacing */
}

}

.price-label {
    padding: 4px 0px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 75%;
}

.hover-dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* optional */
}
.hover-dropdown > .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

@media (min-width: 768px) {
    .menu-lg > .active, .menu-lg > .focus, .menu-lg > li:hover {
        background-color: transparent;
    }
    .menu-lg > .active > a, .menu-lg > .focus > a, .menu-lg > li:hover > a {
        color: #000 !important;
    }
}

.menu-lg a{
    color: #000 !important;
}

#saleAlert {
    z-index: 1055;
    font-size: 14px;
  }
  .alert-message {
    display: none;
  }
  .alert-message.active {
    display: block;
  }

.br-75{
    border-radius: 75px !important;
}

.package-btn{
    background: #F36911 !important;
    color: #fff !important;
}

.title-sub{
    font-weight: 300;
}

.cobo-head h2{
    border-bottom: 3px solid #1a6ce5a1;
    display: inline;
}
.combo-title .plus-btn{
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--bs-danger);
}
.combo-regular-price{
    font-weight: 700;
    text-decoration: line-through;
}
.combo-main-price{
    font-weight: 700;
}


@media (max-width: 768px) {
.mb-card-size{
    width: 250px !important;
}

    .sm-cols-item .carousel-cell {
        width: 68% !important;
    }
    
.grpx-btn a{
    font-size: 10px !important; 
}
.quick-links li a {
    font-size: 12px;
}
.visa-header h2 {
    font-size: 20px;
}
.location-selector {
  height: 40px !important;
  /* margin-top: 55px !important; */

}
.cardImage__caps img{
  height: 196px !important;
}
.location-selector-container .btn {
 
  height: 40px;
}
}
/* Large tablets and smaller (up to 991px) */
@media (max-width: 991px) {
  .product-slide {
      width: 70% !important; /* your current width */
  }
}

/* Medium devices / portrait tablets (up to 768px) */
@media (max-width: 768px) {
  .product-slide {
      width: 62% !important; /* smaller width for smaller devices */
  }
}

/* Small devices / phones (up to 576px) */
@media (max-width: 576px) {
  .product-slide {
      width: 63% !important; /* almost full width for phones */
  }
}


/* Bottom Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 8px 0;
    z-index: 1000;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.2s ease;
    color: #6c757d;
    text-decoration: none;
    min-width: 60px;
    border-radius: 8px;
}

.bottom-nav-item:hover {
    color: #007bff;
    background: #f8f9fa;
}

.bottom-nav-item.active {
    color: #007bff;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-nav-item span {
    font-size: 12px;
    font-weight: 500;
}

/* Services Menu Styles */
.services-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

.services-menu.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.services-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.services-slider-container {
    padding: 5px 0;
    overflow: hidden;
}

.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 20px;
    gap: 10px;
    justify-content: center;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 0px 3px;
    transition: all 0.3s ease;
    border-radius: 16px;
    min-width: 40px;
    flex-shrink: 0;
    /* background: white;
    border: 1px solid #f0f0f0; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-item:hover {
    background: #f8f9fa;
    color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ffeaa7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-item:nth-child(1) .service-icon { background: linear-gradient(135deg, #ffeaa7, #fdcb6e); }
.service-item:nth-child(2) .service-icon { background: linear-gradient(135deg, #fab1a0, #e17055); }
.service-item:nth-child(3) .service-icon { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.service-item:nth-child(4) .service-icon { background: linear-gradient(135deg, #fd79a8, #e84393); }
.service-item:nth-child(5) .service-icon { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 28px;
    color: #333;
}

.service-item span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-item span {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .services-grid {
        gap: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 18px;
    }
}


@media (max-width: 768px) {

.navigation-portrait .nav-brand {
    margin-left: 15px !important;
    flex: 1;
    margin-top: 0;
}
.destination-card-title h3 {
    font-size: 20px;
}
.nav-brand img {
    max-width: 115px;
    position: relative;
    /* margin-left: auto; */
    /* margin-right: auto; */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

}

.destination-card-title h3{
    font-size: 22px;
}

.review-price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    min-height: 35px;
}

.currencysymbol, .price-set {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}
.origionalprice {
    font-size: 18px;
    font-weight: 600;
    display: flex
;
    column-gap: 5px;
}
.review-star {
    display: inline-block;
    line-height: normal;
}
.reviewtext, .strikepr {
    color: #707070;
    font-weight: 300;
    font-size: 10px;
}
.daycount::after, .fivestar-bottom {
    color: #ffe9e2;
}
.fivestar-bottom {
    position: relative;
    color: #e1e1e1;
    font-family: FontAwesome !important;
    font-size: 10px;
    letter-spacing: 2px;
}
.fivestar-bottom {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    font-family: FontAwesome !important;
}
.fivestar-bottom::before, .fivestar-uper::before {
    content: "\f005\f005\f005\f005\f005";
}
.five-stars::before, .fivestar-bottom::before, .fivestar-up::before, .fivestar_up::before {
    content: '\f005\f005\f005\f005\f005';
    font-family: FontAwesome !important;
}
.fivestar-uper {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color1);
    overflow: hidden;
}
.five-stars, .fivestar-up, .fivestar_up {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: var(--color1);
}
.wd0 {
    width: 0;
}
.act-price {
    font-size: 14px;
    display: flex
;
    align-items: end;
    position: relative;
}
.tour-count {
    display: flex
;
    column-gap: 5px;
    color: #707070;
    flex-direction: column;
    row-gap: 0px;
    align-items: end;
}
.tour-count .fromtext {
    font-size: 11px;
}

.main-title{
    font-size: 20px;
    color: #000;
}

.city span{
    color: #333;
}


.exploremore {
    background-color: #fff;
    padding: 40px 0;
}
.btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
  display: table;
  content: " ";
}
.exploremore .f-heading {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
}
.explore-tours {
  display: flex
;
  flex-direction: column;
  row-gap: 0px;
}
.explore-tours ul {
  display: flex
;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.explore-tours ul li:first-child {
  font-weight: 500;
}
.explore-tours ul li a {
  font-size: 12px;
  padding-right: 15px;
  border-right: 1px solid #ddd;
  color: #333333ad;}
.btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
  clear: both;
}
.f-raynab2c-flex {
  display: flex
;
  flex-direction: column;
  row-gap: 25px;
  align-items: center;
}
.footerlogo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footerlogo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.f-raynab2c-flex ul {
  display: flex
;
  column-gap: 15px;
  min-height: unset;
}
.quick-links li a {
  color: #333;
  align-items: center;
  padding-right: 10px;
  border-right: 1px solid #333;
  transition: .3s;
}
.f-raynab2c-flex ul {
  display: flex
;
  column-gap: 15px;
  min-height: unset;
}
footer ul {
  min-height: unset;
}
footer ul {
  list-style: none;
  padding: 0;
  min-height: 100px;
}
.social-links li a {
  display: flex
;
}
.social-links li a .facebookicn {
  background-position: 1px -80px;
}
.social-links li a i {
  display: flex
;
  height: 35px;
  width: 35px;
  align-items: center;
  justify-content: center;
}
.homesvg {
  background-image: url(https://d1i3enf1i5tb1f.cloudfront.net/assets/Whitelabel/svg/default/Home-Strip.svg);
  background-repeat: no-repeat;
}
.homesvg {
  background-image: url(https://d1i3enf1i5tb1f.cloudfront.net/assets/Whitelabel/svg/default/Home-Strip.svg);
  background-repeat: no-repeat;
}
.social-links li a {
  display: flex
;
}
.s-icon-list a {
  height: 34px;
  width: 34px;
  background-color: var(--bg1);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.f-raynab2c .Design-Develope {
  margin-top: 30px;
  color: #333;
}
.Design-Develope {
  display: flex !important
;
  justify-content: center;
  column-gap: 5px;
    padding-top: 30px;
  padding-bottom: 15px;
  margin-top: 15px;
  border-top: 1px solid #ddd;
  align-items: center;
}
.Design-Develope a {
  color: #8e9091;
  display: flex
;
  align-items: center;
}
.t-logo {
  background-image: url(https://d1i3enf1i5tb1f.cloudfront.net/assets/img/T-fevicon.png);
  background-repeat: no-repeat;
  height: 18px;
  width: 18px;
  background-size: contain;
  margin-right: 2px;
}
.Design-Develope a span {
  color: #10b5da;
  font-weight: 500;
}

.foot-socials ul li a {
    background: var(--bs-primary);    color: #ffffff;
}

.visa_s_page .tour-head {
    min-height: unset;
}
.tour-head {
    display: flex
;
    flex-direction: column;
    row-gap: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 5%);
    min-height: 115px;
    justify-content: space-between;
}
.prd-info, .tour-head {
    transition: .3s;
}
.tour-head .tour-title {
    margin: 0;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.review-price {
    display: flex
;
    justify-content: space-between;
    align-items: end;
    min-height: 35px;
}
.review-star {
    display: inline-block;
    line-height: normal;
}
.reviewtext, .strikepr {
    color: #707070;
    font-weight: 300;
    font-size: 10px;
}
.fivestar-bottom {
    position: relative;
    color: #e1e1e1;
    font-family: FontAwesome !important;
    font-size: 10px;
    letter-spacing: 2px;
}
.daycount::after, .fivestar-bottom {
    color: #ffe9e2;
}
.fivestar-bottom {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    font-family: FontAwesome !important;
}
.fivestar-bottom::before, .fivestar-uper::before {
    content: "\f005\f005\f005\f005\f005";
}
.five-stars::before, .fivestar-bottom::before, .fivestar-up::before, .fivestar_up::before {
    content: '\f005\f005\f005\f005\f005';
    font-family: FontAwesome !important;
}
.fivestar-bottom {
    position: relative;
    color: #e1e1e1;
    font-family: FontAwesome !important;
    font-size: 10px;
    letter-spacing: 2px;
}
.daycount::after, .fivestar-bottom {
    color: #ffe9e2;
}
.fivestar-bottom {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    font-family: FontAwesome !important;
}
.review-star {
    display: inline-block;
    line-height: normal;
}
.fivestar-uper {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color1);
    overflow: hidden;
}
.five-stars, .fivestar-up, .fivestar_up {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: var(--color1);
}
.fivestar-uper {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color1);
    overflow: hidden;
}
.five-stars, .fivestar-up, .fivestar_up {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: var(--color1);
}
.attraction-images-slider {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}
.review-images img{
    height: 250px;
}
.slider-image {
    width: 200px;
    height: 150px;
    margin: 0 5px;
}
.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.combo-details span{
    font-size: 100%;
}


.tour-program-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    /* max-width: 800px; */
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.tour-program-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b35,#ff8c42);
}

.program-header {
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #fff5f2 0%, rgba(255, 255, 255, 0.8) 100%);
    border-bottom: 1px solid #e2e8f0;
}

.program-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.title-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35,#ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.program-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-left: 65px;
    font-weight: 500;
}

.program-content {
    padding: 30px 40px 40px;
}

.program-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 22px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, transparent);
}

.program-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 70px;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateX(5px);
}

.program-item:last-child {
    margin-bottom: 0;
}

.item-number {
    position: absolute;
    left: 0;
    top: 5px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35,#ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.item-content {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.program-item:hover .item-content {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #ff6b35;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.item-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(-#94a3b8);
    font-weight: 500;
}

.meta-item i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.highlight-item {
    border-left: 4px solid #ff6b35;
    background: linear-gradient(135deg, #fff5f2, rgba(255, 255, 255, 0.9));
}

.highlight-item .item-title {
    color: #ff6b35;
}

@media (max-width: 768px) {
    /* body {
        padding: 20px 10px;
    } */
    body {
        padding: 0 10px;
    }

    .program-header {
        padding: 30px 25px 15px;
    }

    .program-title {
        font-size: 1.6rem;
    }

    .program-content {
        padding: 25px 25px 30px;
    }

    .program-item {
        padding-left: 60px;
        margin-bottom: 30px;
    }

    .item-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .timeline-line {
        left: 19px;
    }

    .item-content {
        padding: 20px;
    }

    .item-title {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.95rem;
    }

    .item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .program-title {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .program-subtitle {
        margin-left: 0;
        text-align: center;
    }

    .program-item {
        padding-left: 50px;
    }

    .item-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .timeline-line {
        left: 17px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeslot-option {
    border: 1px solid #ccc;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
  }
  
  .timeslot-option input {
    display: none;
  }
  .timeslot-option {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #0d6efd;
    border-radius: 0.375rem;
    color: #0d6efd;
    background-color: white;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
  }

  .timeslot-option input[type="radio"] {
    display: none;
  }

  .timeslot-option input[type="radio"]:checked + span {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
  }

  .timeslot-option:has(input[type="radio"]:checked) {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
  }

  .d-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .gap-2 {
    gap: 0.5rem;
  }

  #myCarousel {
    position: relative;
  }

  /* Location selector container positioning */
  .location-selector-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    z-index: 10;
  }

  @media (min-width: 768px) {
    .location-selector-container {
      bottom: 20px;
    }
  }

  @media (max-width: 767px) {
    .location-selector-container {
      position: relative;
      /* margin-top: -50px; */
      width: 100%;
    }
    .tt-video__author {
      font-size: 10px !important;
    }
    .bs-stepper-label {
      font-size: 11px;
  }
  .visa-time {
    font-size: 11px !important;
}
.foot-socials ul li a {
  width: 28px !important;
  height: 30px !important;
}
  }

  /* Location input styling */
  .location-selector {
    height: 50px;
    border-radius: 8px;
    padding-left: 45px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/684/684908.png');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 10px center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
  }

  /* Dropdown list styling */
  .location-dropdown {
    position: absolute;
    top: 55px;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 20;
    max-height: 275px;
    overflow-y: auto;
  }

  .location-dropdown div {
    /* padding: 10px 15px; */
    cursor: pointer;
  }

  .location-dropdown div:hover {
    background-color: #f0f0f0;
  }

  .location-dropdown {
    padding: 15px;
    box-sizing: border-box;
  }
  
  .location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
  
  .location-card {
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  .location-card img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .location-card span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #333;
  }
  .location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* default: 2 columns */
    gap: 12px;
  }
  
  @media (min-width: 768px) {
    .location-grid {
      grid-template-columns: repeat(4, 1fr); /* 3 columns for tablet and up */
    }
    .flickity-viewport{
      /* height: 300px !important; */
      /* height: 600px !important; */
    }
  }
  .bg-cover-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Change the opacity and color as needed */
    z-index: 1;
}
.bg-cover-overlay > * {
    position: relative;
    z-index: 2;
}
/* .visa-header {
    background-color: #ffffff;
    padding: 12px 24px;
    font-family: 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ddd;
  } */
  .visa-logo {
    height: 40px;
    margin-right: 10px;
  }
  .visa-title {
    color: #1e3c72; /* deep blue */
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  .visa-time {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
  }
.visa-header h2{
    font-size: 23px;
}


.form-check-input {
    border: 1px solid;
}

.container-box {
  background-color: white;
  padding: 1rem;
  max-width: 360px;
  background-color: #e0f3f8;
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  margin: 0 auto;
}
.divider {
  border-top: 1px solid rgba(107, 114, 128, 0.4);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
}
.label-row .value {
  font-size: 0.75rem;
  color: #6b7280;
  max-width: 140px;
  text-align: right;
}
.fee-amount {
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  text-align: right;
  margin-top: 0.25rem;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
    color: #176b9e;
  align-items: center;
}
.promo-code {
  font-size: 0.75rem;
  font-weight: 600;
  color: #176b9e;
  margin-top: 0.25rem;
  cursor: pointer;
}
.confidence-box {
  background-color: #176b9e;
  border-radius: 0.375rem;
  padding: 1rem 1rem 1rem 1rem;
  color: white;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.confidence-box strong {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}
.confidence-box ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
  list-style-type: disc;
  line-height: 1.3;
}
.btn-continue {
  background-color: #176b9e;
  border: none;
  width: 100%;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
.btn-continue:hover,
.btn-continue:focus {
  background-color: #145374;
  color: white;
}
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.payment-icons img {
  /* width: 32px;
  height: 32px; */
  height: 80px;
  object-fit: contain;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
.mobile-sidebar.show {
  left: 0;
}
.mobile-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}
.mobile-sidebar-backdrop.d-none {
  display: none !important;
}

.search-wrap h1{
  font-size: larger;
}
.search-wrap p{
  font-size: medium !important;}


  .check-box {
    width: 24px;
    height: 24px;
    background-color: #f97316; /* orange-500 */
    border-radius: 0.125rem; /* rounded-sm */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem; /* text-xs */
  }
  .info-box {
    background-color: #dbeafe; /* blue-100 */
    border-radius: 0.375rem; /* rounded-md */
    padding: 0.75rem 1rem;
    color: #1e293b; /* text-gray-900 */
  }

/* .carousel-cell {
  height: 100%;
} */

.gallery-container {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.main-image {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnail-grid {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.thumbnail-item {
  width: 70px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.thumbnail-item:hover {
  border-color: #fff;
  transform: scale(1.05);
}

.thumbnail-item.active {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0,123,255,0.5);
}

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

.see-more-btn {
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 60px;
}

.see-more-btn:hover {
  background: rgba(0,0,0,0.9);
}

.gallery-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.action-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.action-btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* Modal Styles */
.gallery-modal .modal-dialog {
  max-width: 90vw;
  margin: 20px auto;
}

.modal-image-container {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-main-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.modal-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px;
  overflow-x: auto;
  background: #f8f9fa;
}

.modal-thumbnail {
  min-width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
  border-color: #007bff;
}

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

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev {
  left: 20px;
}

.modal-nav-btn.next {
  right: 20px;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* Mobile Slider Styles */
.mobile-slider {
  display: none;
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.mobile-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.mobile-nav-btn.prev {
  left: 10px;
}

.mobile-nav-btn.next {
  right: 10px;
}

.mobile-image-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.mobile-close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .thumbnail-grid {
      display: none;
  }

  .gallery-container {
      height: 300px;
  }

  .gallery-actions {
      top: 10px;
      right: 10px;
  }

  .action-btn {
      padding: 6px 12px;
      font-size: 12px;
  }

  .modal-nav-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }

  .modal-nav-btn.prev {
      left: 10px;
  }

  .modal-nav-btn.next {
      right: 10px;
  }

  .mobile-slider.active {
      display: block;
  }

  .gallery-container.slider-active {
      display: none;
  }
  .booking-form__input.guests-input.mixer-auto .guests-input__options {
    top: -180px !important;
    padding-top: 1rem;
}


}

@media (max-width: 576px) {
  .gallery-actions {
      flex-direction: column;
      align-items: flex-end;
  }
}

@media (min-width: 992px) {
  .sidebar-sticky {
    position: sticky;
    top: 100px; /* Adjust this to match your header height if any */
  }
}

/* @media (min-width: 992px) {
.sidebar-main-box{
  height: 555px;
}
.booking-form__input.guests-input.mixer-auto .guests-input__options {
  top: 160px !important;
  padding-top: 1rem;
}
} */
@media (min-width: 992px) {
.booking-form__input.guests-input.mixer-auto .guests-input__options {
  top: -160px !important;
  padding-top: 1rem;
}
.guests-input__options.open {
  opacity: 1;
  height: auto;
  height: 321px;
}
}

.guest-btn{
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;}


  .time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot-btn {
    border: 2px solid #00945f; /* Green border */
    background-color: transparent;
    color: #00945f;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot-btn:hover {
    background-color: #00945f;
    color: #fff;
}

.time-slot-btn.active {
    background-color: #00945f;
    color: #fff;
}
.ticket-details {
  transition: all 0.3s ease;
  overflow: hidden;
}

.ticket-details.collapsed {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.ticket-option {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.ticket-option.selected {
  border-color: #007bff;
  box-shadow: 0 0 0 1px #007bff;
}

.ticket-min-price {
  font-size: 16px;
  color: #007bff;
}


/* Floating style with border */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #4a6cf7;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #4a6cf7;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

/* Hide when not needed */
.swiper-button-lock {
    display: none;
}

.product-description h1{
  font-size: 1.3rem;
  color: var(--bs-primary);
}
.product-description h2{
  font-size: 1.2rem;
  color: var(--bs-primary);
}
.product-description h3{
  font-size: 1.1rem;
  color: var(--bs-primary);
}
.product-description h4{
  font-size: 1rem;
  color: var(--bs-primary);
}
.product-description h5{
  font-size: 0.9rem;  
  color: var(--bs-primary);
}
.product-description h6{
  font-size: 0.8rem;
  color: var(--bs-primary);
}

.choices__list--dropdown {
  overflow-y: scroll;
}
.date-text{
  font-size: 11px;
}
.attraction-dates {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.date-label {
  font-weight: 600;
  color: #ff6b6b; /* Accent color */
}

.date-value {
  font-weight: 500;
  color: #333;
}
.dots-full{
  height: 100%;
}
@media (max-width: 768px) {

.floating_btn {
  bottom: 93px !important;
}}

@media (min-width: 768px) {

.cardImage__caps img{
  height: 170px !important;
}}