/*=======================================
     start  category page 
======================================== */
.popular-deatination-items {
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.popular-deatination .popular-deatination-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.popular-deatination .popular-deatination-image img {
    border-radius: 10px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    height: 350px;
    min-width: 100%;
    object-fit: cover;
}

.popular-deatination .popular-deatination-image::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.popular-deatination .popular-deatination-image .star {
    background-color: var(--white-color);
    border-radius: 100px;
    padding: 8px 16px;
    color: var(--main-color);
    line-height: 1;
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    gap: 10px;
    z-index: 9;
}

.popular-deatination .popular-deatination-image .star i {
    color: var(--main-color);
}

.popular-deatination .popular-deatination-image .star p {
    font-weight: 500;
}

.popular-deatination .popular-deatination-image .popular-deatination-content {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
}

.popular-deatination .popular-deatination-image .popular-deatination-content h3 {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--second-color);
}

.popular-deatination .popular-deatination-image .popular-deatination-content h3 a:hover {
    color: var(--main-color);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--main-color) 0%, var(--main-color) 100%);
}

.popular-deatination:hover .popular-deatination-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.popular-deatination:hover .popular-deatination-image::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.popular-destination-section .destination-slider {
    margin-right: -34%;
}

/*=======================================
     End  category page 
======================================== */

/*=======================================
     start sub category page 
======================================== */

.custom-select2 {
    border: 1px solid var(--border-color);
    padding: 7px 10px;
    border-radius: 999px;
}

.custom-select2 select {
border: none !important;
}

.sub-category-filter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sub-category-filter .btn-effect {
    min-width: 120px;
}

.sub-category-filter .btn-effect i {
    margin-right: 5px;
}

.tour-type-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.tour-type-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 10px 10px 10px;
    overflow: scroll;
}

.navigation-button {
    position: absolute;
    width: 100%;
    top: 0;
}

.tour-type-filters .btn-effect-2 {
    white-space: nowrap;
}

.tour-type-filters .btn-effect-2 .tour-type-title {
  margin: 0;
  padding: 0;
  font-size: 16px;       
  font-weight: 500;       
  text-transform: none;   
  display: inline-block;  
  line-height: 1;         
  color: inherit;        
}

.tour-type-filters .btn-effect-2:hover {
    color: var(--black-color);
}

.tour-type-filters::-webkit-scrollbar {
    background: transparent;
    width: 3px;
    height: 3px;
    /* display: none; */
}

.tour-type-filters::-webkit-scrollbar-thumb {
    cursor: pointer;
}

.tour-filter-right,
.tour-filter-left {
    padding: 5px 10px;
    border: none;
    font-size: 18px;
    box-shadow: none;
    background-color: transparent;
    /* border-radius: 50%; */
    position: absolute;
    background-color: var(--white-color);
    top: 10px;
    box-shadow: 1px 1px 20px 20px var(--white-color);
}

.tour-card{
  margin-bottom: 3rem ;
}

.tour-filter-right {
    right: 20px;
}

.tour-filter-left {
    left: -20px;
}

.sub-category-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}


.result-count {
    display: flex;
    align-items: center;
}

.result-count span {
    color: var(--para-color);
}

.result-count .result-name {
    font-size: 16px;
    margin-left: 5px;
    font-weight: 500;
    color: var(--second-color);
}
.tour-wrapper {
    margin-top: 50px;
}
.modal.fade .modal-dialog.modal-lg {
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    max-width: 600px;
}


.modal.fade.show .modal-dialog.modal-lg {
    transform: scale(1);
    opacity: 1;
}


.modal-dialog.modal-lg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border-radius: 20px;
}

.modal-dialog.modal-lg .btn-effect {
    background-color: var(--main-color);
    color: var(--white-color);
}

.modal-dialog.modal-lg .btn-effect:before {
    background-color: var(--white-color);

}

.modal-dialog.modal-lg .btn-effect:hover {
    color: var(--main-color);
}


.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-dropdown>span {
    color: var(--para-color);
}


.label-check {
    cursor: pointer;
    position: relative;
    margin: auto;
    /* width: 18px;
    height: 18px; */
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}

.label-check:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 50, 84, 0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.label-check svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #c8ccd4;
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
}

.label-check svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

.label-check svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}

.label-check:hover:before {
    opacity: 1;
}

.label-check:hover svg {
    stroke: var(--main-color);
}

input-check {
    display: none !important;
}

.input-check:checked+.label-check svg {
    stroke: var(--main-color);
}

.input-check:checked {
    display: block;
}

.input-check:checked+.check svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
}

.input-check:checked+.check svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}


.nice-label {
    cursor: pointer;
    position: relative;
    margin: auto;
    /* width: 18px;
    height: 18px; */
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
    margin-bottom: 7px;
  }
  
  .nice-label:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 50, 84, 0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .nice-label svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #c8ccd4;
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
  }
  
  .nice-label svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
  }
  
  .nice-label svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
  }
  
  .nice-label:hover:before {
    opacity: 1;
  }
  
  .nice-label:hover svg {
    stroke: var(--main-color);
  }
  
  .nice-check {
    display: none !important;
  }
  
  .nice-check:checked+.nice-label svg {
    stroke: var(--main-color);
  }
  
  .nice-check:checked {
    display: block;
  }
  
  .nice-check:checked+.nice-label svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
  }
  
  .nice-check:checked+.nice-label svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
  }
  

  .irs--round .irs-bar {
    background-color: var(--main-color);
  }
  .irs--round .irs-handle {
    background-color:var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0px 0px 0px 5px var(--light-color);
  }
  .irs--round .irs-handle.state_hover,
  .irs--round .irs-handle:hover {
    background-color:var(--main-color);
  }
  .irs--round .irs-handle {
    width: 16px;
    height: 16px;
    top: 29px;
  }
  .irs--round .irs-from,
  .irs--round .irs-to,
  .irs--round .irs-single {
    background-color: transparent;
    color: #666;
  }
  .irs--round .irs-from:before,
  .irs--round .irs-to:before,
  .irs--round .irs-single:before,
  .irs--round .irs-min,
  .irs--round .irs-max {
    display: none;
  }
  .range-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .range-number input {
    border-radius: 12px;
  }

/*=======================================
     End sub category page 
======================================== */
/*===========================================
     Start Destination Details page
============================================ */
  .destination-card {
    min-height: 260px;
    max-height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  /* ===== Image ===== */
  .destination-card .destination-img {
    display: block;
  }
  
  .destination-card .destination-img img {
    width: 100%;
    height: 210px;
    transition: height 0.5s ease;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
    transform-origin: top;
    position: relative; 
    z-index: 1;
  }
  
  /* ===== Content Wrapper ===== */
  .destination-card .destination-content {
    padding: 20px 10px 0;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.5s ease;
    transform-origin: bottom;
    position: relative;
  }
  .destination-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--main-grey);
    opacity: 0;

  }
  /* ===== Title Area ===== */
  .destination-card .title-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--second-color);
    transition: 0.5s;
  }
  .destination-card .title-area .subcat-heading {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
  }

  .destination-card .title-area:hover {
    color: var(--main-color);
  }
  
  
  /* Responsive font sizes */
  @media (max-width: 1200px) {
    .destination-card .title-area {
      font-size: 19px;
    }
  }
  @media (max-width: 992px) {
    .destination-card .title-area {
      font-size: 19px;
    }
  }
  @media (max-width: 768px) {
    .destination-card .title-area {
      font-size: 18px;
    }
  }
  
  /* ===== Hidden Content on Hover ===== */
  .destination-card .destination-text {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    opacity: 0;
    display: none;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.4s ease;
    transform-origin: bottom;
  }
  
  .destination-card .destination-text p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
  }
  .destination-text .price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
  }
  /* ===== Hover Effects ===== */
  .destination-card:hover .destination-img img {
    height: 170px;
  }
  .destination-card:hover {
    box-shadow: var(--sharp-box-shadow);
  }
  .destination-card:hover::before {
    opacity: 1;
  }

  .destination-card:hover .destination-content .destination-text {
    opacity: 1;
    display: block;
  }
  
/*===========================================
     End Destination Details page
============================================ */
/*===========================================
     Start  Destinations  page
============================================ */
  .destination-preview .destination-title {
    font-weight: 600;
    font-size: 20px;
  }
  .destination-item {
    height: 300px;
  }
  /*===========================================
     end  Destinations  page
============================================ */

/*=====================================
    Start travel Style Page
===================================== */

.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%
}

.attraction-card {
  min-width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: var(--box-shadow)
}

.attraction-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--sharp-box-shadow)
}

.attraction-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease
}

.attraction-card:hover img{
  transform: scale(1.1)
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,rgb(0 0 0 / .8),transparent);
  padding: 30px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.attraction-card .card-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-shadow: 2px rgb(255 255 255 / .3);
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / .5);
  text-align: center
}
.attraction-card  .card-overlay p {
  transform: translateY(200%);
  transition: height 0.5s ease-in-out, opacity 0.6s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  height: 0;
  visibility: hidden;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / .5);
  text-align: center;
  line-height: 1.5;
   max-height: calc(1.5 * 3em);
   overflow: hidden;
}
.attraction-card:hover  .card-overlay p{
  transform: translateY(0); 
  transition: height 0.5s ease-in-out, opacity 0.6s ease-in-out, transform 0.4s ease-in-out;
  opacity: 1;
  height: auto;
  visibility: visible;
}  

/*change */ 