.card-destination {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.card-destination:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: #ddd;
}

/* Image section */
.card-image {
  position: relative;
  height: 200px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

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

.card-destination:hover .card-image img {
  transform: scale(1.15);
}

/* Book Now Button */
.book-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #e63946;
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-destination:hover .book-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Content section */
.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #001f3f;
}

.card-content .rating {
  color: #ffb400;
  font-size: 16px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.card-content .price {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #e63946;
  margin-top: 4px;
}

/* EMI Button */
.emi-button {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s;
}

.emi-button:hover {
  background-color: #0056b3;
}

/* Shimmer Wave Effect */
.emi-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
  animation: waveShine 2s linear infinite;
}

@keyframes waveShine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}


/* EMI Overlay (popup background) */
.emi-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.emi-popup {
  background: #fff;
  padding: 20px;
  width: 320px;
  border-radius: 10px;
  text-align: center;
}

.close-popup {
  margin-top: 15px;
  padding: 8px 15px;
  background: crimson;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


.emi-popup h4 {
  margin-bottom: 10px;
  color: #333;
}

.emi-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emi-popup li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.emi-popup li:last-child {
  border-bottom: none;
}



@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* ====================== */
/*  Style-5 Specific CSS  */
/* ====================== */
.new-homepage-animate {
  animation: bounce1 2s infinite;
}
@keyframes bounce1 {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}


.style-5 a:hover{
  color: #D60D45;
}

.style-5 li {
  margin: 0;
}

.style-5 .box-shadow {
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, .1);
}

/* Header CSS*/
.style-5 .upper-head a:hover{
  color: #fff;
}

.style-5 header{
  background-color: #005294;
}

.style-5 .navigation{
  background-image: url(../images/line-pattern.png) ;
  background-position: bottom;
  border-radius: 30px 30px 0 0;
  background-color: #fff;
}

.style-5 .navbar-sticky{
  background-color: #fff;
  background-image: none;
  border-radius: 0;
}

@media(max-width:1100px){
  .style-5 .navigation{
    border-radius: 0;
  }
}

/* About Us */
.style-5 .about-us .nav-tabs .nav-link.active{
  color: #D60D45 !important;
  text-decoration: underline;
}

.style-5  .about-us .nav-link:focus, .nav-link:hover{
  color: #7d7676;
}

.style-5 .btn-red:hover{
  background-color: #005294;
  color: #fff;
  border-color: #005294;
}

.style-5 .about-us .nav-item i {
  font-size: 22px;
}

.style-5 .about-us .costumer-counter img{
  height: 80px;
  width: 80px;
  margin-left: -10px;
  object-fit: cover;
}

/* Populer Destination */
.style-5 .top-destination-inner{
  padding-left: 300px;
}

.style-5 .top-destination-title  a:hover{
  background-color: #005294;
  color: #fff;
  border-color: #005294;
}


.style-5 .destination-box{
  background-color: #fff;
  transition: all .3s ease-in-out;
}

.style-5 .destination-box img{
  transition: all .5s ease-in-out;
}

.style-5 .destination-box:hover img{
  scale: 1.1;
  transition: all .5s ease-in-out;
}

@media (max-width:1200px){
  .style-5 .top-destination-inner {
    padding: 100px 10px  !important;
  }
}

/* Offer Slider CSS */
.style-5 .offer-slider .slider-box1{
  background-image: url(../images/slider/slider8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.style-5 .countdown-title h2 {
  text-align: unset;
  width: 100%;
}


.style-5 .slider-box1 .offer-info, .style-5 .slider-box2 .offer-info{
  width: 45%;
}

.style-5 .offer-info a:hover{
  background-color: #005294;
  color: #fff;
  border-color: #005294;
}

.style-5 .offer-slider .slider-box2{
  background-image: url(../images/slider/slider3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.style-5 .slider-box1 .section-overlay{
  background-color: transparent;
  background: rgb(75,148,167);
  background: linear-gradient(65deg, rgba(75,148,167, .8) 48%, rgba(75,148,167, .8) 50%, rgba(255,255,255,0) 70%);
  border-radius: 20px;
}

.style-5 .offer-info h2 span{
  font-size: 55px;
}

.style-5 .slider-box2 .section-overlay {
  background: rgb(255,255,255);
  background: linear-gradient(115deg, rgba(255,255,255,0) 30%, rgba(245,194,217, .8) 55%, rgba(245,194,217,.8) 45%);
  border-radius: 20px;
}

.style-5 .slider-box2 h3{
  color: #5D4037 ;
}

.style-5 .slider-box1 p{
  color: #1B2631 ;
} 

.style-5 .offer-slider .slick-dots {
  bottom: 5px;
  color: #000;
}

.style-5 .offer-slider .slick-dots li button:before{
 background:#fff;
 opacity: 1;
}

.style-5 .offer-slider .slick-dots li.slick-active button:before{
  scale: 1.1;
  background: #D60D45;
}

@media(max-width:996px){
  .style-5 .slider-box1 .offer-info, .style-5 .slider-box2 .offer-info{
    width: 50%;
    padding: 100px 30px !important;
  }

  .style-5 .offer-info .h1 {
    font-size: 28px;
  }

  .style-5 .offer-info h2 span{
    font-size: 45px;
  }
}

@media(max-width:576px){
  .style-5 .slider-box1 .section-overlay {
    background: rgb(75,148,167,.8);
  }

  .style-5 .slider-box2 .section-overlay {
    background: rgba(245,194,217,.8);
  }
  
  .style-5 .slider-box1 .offer-info, .style-5 .slider-box2 .offer-info{
    padding: 80px 30px !important;
    width: 100%;
  }

  .style-5 .offer-info .h1 {
    font-size: 24px;
  }

  .style-5 .offer-info h2 span{
    font-size: 35px;
  }

}

/* Why Us Section CSS  */
.style-5 .why-us .reason-box i{
  font-size: 40px;
  height: 80px;
  width: 80px;
  line-height: 80px;
}

.style-5 .reason-box  {
  transition: all .3s ease-in-out;
}

.style-5 .reason-box:hover{
  background-color: #d9f4ff;
  transition: all .3s ease-in-out;
}

.style-5 .reason-box:hover i {
  background-color: #fff;
  transition: all .3s ease-in-out;
}


/* Guides Section CSS */
.style-5 .guides {
  background-color: #f7f2f2;
}

.style-5 .social-icons-box{
  background: rgba(16, 12, 8, .01);
  backdrop-filter: blur(5px);
  height: 100%;
  width: 100%;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: .5s ease-in-out;
  border-radius: 10px;
}

.style-5 .team-member-box:hover .social-icons-box{
  transform: scaleY(1);
  transition: .5s ease-in-out;
}

.style-5 .social-link li a{
  width:35px;
  height:35px;
  line-height:35px;
  font-size: 12x;
  transition:all .3s ease-in-out;
}

.style-5 .team-member-info, .team-member-box img{
  transition: all ease-in-out .3s;
}

.style-5 .team-member-box:hover .team-member-info{
  background-color: #d60d45 !important;
  transition: all ease-in-out .3s;
}

.style-5 .team-member-box:hover img{
  scale: 1.1;
  transition: all ease-in-out .3s;
}

.style-5 .team-member-box:hover .team-member-info a, .style-5 .team-member-box:hover .team-member-info p{
  color: #fff;
  transition: all ease-in-out .3s;
}

.style-5 .social-link a:hover{
  color: #fff;
  background-color: #005294 !important;
  transition: all ease-in-out .3s;
}

.style-5 .guides .slick-prev  {
  top: -100px;
  right: 150px !important;
  left: auto;
  background: transparent;
}

.style-5 .guides .slick-next{
  top: -100px;
  right: 50px;
  background: transparent;
}

.style-5 .guides .slick-prev:before,.style-5 .guides .slick-next:before{
  color: #D60D45;
  font-size: 30px;
}

.style-5 .guides .slick-prev:hover:before,
.style-5 .guides .slick-next:hover:before {
  color: #005294;
}

.style-5 .guides .slick-prev.slick-disabled:before, 
.style-5 .slick-next.slick-disabled:before{
  opacity: .5;
}

.style-5 .guides .team-member-info a:hover{
  color: #a3d8f1;
}


@media(max-width:990px){
  .style-5 .guide-title{
    margin-bottom: 75px !important;
      
  }

  .style-5 .guides .slick-prev  {
    top: -50px;
    left: 0px !important;
    background: transparent;
  }
  
  .style-5 .guides .slick-next{
    top: -50px;
    right: auto;
    left: 100px;
    background: transparent;
  }
}

@media(max-width:576px){
  .style-5 .guides .slick-next{
    right: 0;
    left: auto;
  }
}

/* Video Banner CSS */
.style-5 .video-banner1 {
  width: 100%;
  height: 500px; /* Adjust the height as needed */
  overflow: hidden;
  z-index: 0;
}

.style-5 .video-banner1 video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire banner area */
  object-position: bottom;
}


.style-5 .activities-counter-inner i{
font-size: 35px;
}

.style-5 .activities-counter-box::after{
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
background-color: #dbe1cd;
width: 1px;
height: 50px;
}

.style-5 .trip-adviser-image img{
  width: 50px;
  height: 50px;
}

@media (max-width:990px){
  .style-5 .activities-counter-box::after{
  display: none;
}
}

/* Testimonial CSS */
.style-5 .testimonial{
  margin-top: -1px;
  padding-top: 300px;
  background-color: #060c17;
}

.style-5 .testimonial-box{
  background-color: #44444450;
}

.style-5 .countdown-banner-info a:hover{
  background-color: #005294;
  color: #fff;
  border-color: #005294;
}

.style-5 .testimonial-slider .slick-slide {
  transition: margin-top 0.5s ease; /* Smooth transition for margin change */
}

.style-5 .countdown-banner {
  background-image: linear-gradient(to right, #FFFAFA 50%, #f5e9e9 50%);
  width: 60%;
  top: -100px;
  left: 20%;
}

.style-5 .countdown-main span {
  font-size: 40px;
}

.style-5 .countdown-banner-info h2{
  font-size: 30px;
}

.style-5 .countdown-banner-info h2 span{
  font-size: 40px;
}

@media(max-width:1100px){
  .style-5 .testimonial{
    padding-top: 350px;
  }

  .style-5 .countdown-banner{
    width: 72%;
    left: 15%;
  }
}

@media(max-width:990px){
  .style-5 .countdown-banner {
    left: 0;
    width: 100%;
  }

  .style-5 .testimonial{
    padding-top: 270px;
  }

  .style-5 .countdown-banner-info h2{
    font-size: 26px;
  }
  
  .style-5 .countdown-banner-info h2 span{
    font-size: 32px;
  }
  
  
}

@media(max-width:578px){
  .style-5 .testimonial{
    padding-top: 480px;
  }

  .style-5 .countdown-banner {
    background-image: linear-gradient(to bottom, #FFFAFA 63%, #f5e9e9 50%);
  }

  .style-5 .countdown-main span {
    font-size: 30px;
  }
  
  
}

/* Blog CSS */
.style-5 .blog-box-body ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  background-color: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.style-5 .blog-box-body ul li:first-child::before {
  display: none; /* Hides the ::before pseudo-element for the 2nd <li> */
}

.style-5 .blog-body-left .blog-image a::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0) 0%, #100C08 100%);
  border-radius: 10px;
}

.style-5 .blog-body-right ul li::before {
  background-color: #34E0A1;
}

.style-5 .blog-box-top img{
  width: 205px;
  height: 205px;
  object-fit: cover;
}


@media(max-width:578px){
  .style-5 .blog-body-left .blog-box-body {
    padding: 10px !important;
  }

  .style-5 .blog-box-top img{
    width: 100%;
  }
}

/* Footer CSS */
.style-5 footer a:hover{
  color: #fff;
}

.style-5 .recent-post-content{
  padding-left: 0;
  padding-right: 15px;
}


/* payment form str */


/* Container */
.payform-container {
  margin-bottom: 20px;
  background: #ffffff;
}

/* Row layout */
.payform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Field layout */
.payform-field {
  display: flex;
  flex-direction: column;
}

.payform-field.half {
  flex: 1 1 calc(50% - 20px);
}

.payform-field.full {
  flex: 1 1 100%;
}

/* Labels */
.payform-label {
  font-weight: 400;
  margin-bottom: 6px;
  color: #333;
  font-size: 15px;
}

/* Inputs and Selects */
.payform-input,
.payform-select {
  /* padding: 10px 12px; */
  font-size: 15px;
  border: 1.5px solid #ccc;
  border-radius: 0; /* 🔥 No rounded corners */
  outline: none;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.payform-input:focus,
.payform-select:focus {
  border-color: #007bff;
}

/* Button */
.payform-btn-container {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.payform-btn {
  background: #d60d45;
  color: #fff;
  padding: 8px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.payform-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .payform-field.half {
    flex: 1 1 100%;
  }
}

.img-gallery {
  width: 340px;
  height: 226px;
}

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



/* popular packages str css */


section.popular-packages{
  padding: 0 0 50px;
}
.popular-packages .section-title{
  margin-bottom: 10px
}
.package-item{
  background: #fff;
  box-shadow: 0px 0px 15px #b7b7b785;
  margin: 30px 0;
  transition: all ease-in-out 0.3s;
}
.package-content{
  padding: 25px;
  border-bottom: 1px solid #ddd;
}
.package-content h3{
  display: inline-block;
}
.package-days{
  display: inline-block;
  float: right;
  font-weight: 400;
  font-size: 16px;
  color: #005294;
  margin: 3px 0 0 0;
}
.package-content .deal-rating{
  display: inline-block;
  margin: 9px 0;
}
.package-image{
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  cursor: default;
  background: linear-gradient(45deg, #d60d45 0%,#046b8c 100%) ;
  margin-bottom: 22px;
}
.package-image img{
  display: block;
  position: relative;
  height: 240px;
  max-width: none;
  width: calc(100% + 60px) !important;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-40px,0,0);
  transform: translate3d(-40px,0,0);
}
.package-item:hover{
  transition: all ease-in-out 0.3s;
  transform: translateY(-5px);
}
.package-item:hover img{
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.package-price{
  right: 0;
  bottom: 0;
  padding: 10px 25px 8px;
  text-align: center;
  box-shadow: 1px 1px 5px #cccccc57;
  width: 100%;
}
.package-price .deal-rating{
  display: inline-block;
  margin: 0 20px 0 0;
}
.package-price p{
  margin-bottom: 0;
  font-size: 20px;
  color: #fff;
  display: inline-block;
}
.package-price span{
  font-weight: 600;
}
section.popular-packages .slick-prev{
  left: -10px;
  border-color: #fbfbfb;
}
section.popular-packages .slick-next{
  right: -10px;
  border-color: #fbfbfb;
}
.package-info{
  text-align: center;
  margin-top: 25px;
}



/* polular packages str end */





/*===================================== */
/*           Deal Section           */
/* ===================================== */

section.deals{
  background: url(../images/dealsbg.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  padding-bottom: 80px;
}
.section-title-white .section-icon{
  background: transparent;
}
.section-title-white h2,
.section-title-white p,
.section-title-white [class^="flaticon-"]:before,
.section-title-white [class*=" flaticon-"]:before{
  color: #fff;
}
.section-title-white .section-icon:before,
.section-title-white .section-icon:after{
  background: #fff;
}
.deals-outer{
  position: relative;
  z-index: 1;
}
.deals-item{
  position: relative;
  z-index: 1;
  margin: 15px;
}
.deals-item-outer{
  position: relative;
  z-index: 5;
  padding: 10px;
  background: #fff;
}
.deals-item:before{
  position: absolute;
  height: 97%;
  width: 50%;
  content: '';
  background: #fff;
  top: 15px;
  left: 5px;
  z-index: -1;
  transform: rotate(-5deg);
}
.deals-item:after{
  position: absolute;
  height: 50%;
  width: 90%;
  content: '';
  background: #fff;
  top: 0;
  right: 0;
  z-index: -1;
  transform: rotate(5deg);
}
.deal-content{
  text-align: center;
  padding: 25px 0;
}
.deal-rating{
  margin-bottom: 15px;
}
span.deal-price {
  background: #fb8b01;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: -50px;
  right: 0px;
  left: 0;
  margin: 0 auto;
  height: 100px;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 1px 1px 5px #00000057;
  z-index: 1;
}
.deal-rating span,
.sale-review span{
  color: #ffc63f;
  font-size: 16px;
}
.deals-image{
  position: relative;
  overflow: hidden;
}
.deals-image:after{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #ff00001c, #ffff0047);
  content: '';
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.deals-item:hover .deals-image:after{
  opacity: 1;
}
.deals .slick-dots li button:before,
.deals .slick-dots li.slick-active button:before{
  background: #fff;
}
.deal-content p{
  margin-bottom: 20px;
}

@media(max-width: 359px){
  .deal-rating{margin-bottom: 5px;}
}


/* trip section str */



section.trip-ad{
  position: relative;
  background: url(../images/adbg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}

section.trip-ad .container{position: relative; z-index: 2;}

.trip-ad:before{
  position: absolute;
  content: '';
  top: 0;
  left: -12%;
  height: 100%;
  width: 65%;
  background: #fff;
  transform: skew(15deg);
  z-index: 1;
}
.trip-ad:after{
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
.ad-title h2{
  text-transform: uppercase;
}
.ad-title span{
  display: block;
  font-size: 40px;
  color: #005294;
}
.trip-ad-btn{
  margin-top: 32px;
}
.ad-price-outer{
  position: relative;
}
.ad-price{
  padding:5px; 
  background: #D60D45;
  border-radius: 50%;
  box-shadow: 1px 1px 5px #000000;
  text-align: center;
  height: 200px;
  width: 200px;
  z-index: 1;
  margin: 13% auto 0;
}
.ad-price-inner{
  height: 190px;
  width: 190px;
  border: 1px dashed #fff;
  border-radius: 50%;
  padding: 45px 0;
  background: #99062f;
}
.ad-price span{
  color: #fff;
  font-size: 25px;
}
span.rate{
  display: block;
  font-size: 50px;
  font-weight: 600;
}


/* trip section end */


section.bucket-list{padding-bottom: 0;}

.bucket-list li:after, .bucket-list li:before {display: none; }

.bucket-list .mt_filter .list-inline{margin: 0 0 30px; display: inline-block; width: 100%;}

.bucket-list .mt_filter .list-inline>li{margin-bottom: 0; padding: 0; display: inline-block;}

.bucket-list .mt_filter ul li a{
    border-radius: 0px; 
    display: inline-block;
    padding: 3px 20px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    margin-bottom: 0;
    font-weight: 400;
    border: 1px solid #f1f1f1;
    background: #fff;
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

.bucket-list .mt_filter ul li a i{
  padding-right: 10px;
  font-weight: 600;
}

.bucket-list .mt_filter ul li a span {
    vertical-align: super;
}

.bucket-list .mt_filter ul li a [class^="flaticon-"]:before, [class*=" flaticon-"]:before{
  font-size: 30px;
}


.bucket-list .mt_filter ul li a:hover, .bucket-list .mt_filter ul li.active a{
  border-color:#005294; 
  background:#005294;  
  transition: all ease-in-out 0.3s;
  color: #fff;
}

.bucket-list .mt_filter ul li a:hover i,  .bucket-list .mt_filter ul li.active a i{color: #fff;}

.bucket-list .mt_filter li.active a{color: #fff; transition: all ease-in-out 0.3s;}


.bucket-list .bucket-content{
  padding: 85px 0 55px;
  background: url(../images/bucketbg.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.bucket-list .row.isotopeContainer {
    position: relative;
    z-index: 1;
}

.bucket-list .hovereffect-bucket:hover .bucket-image{
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}

.bucket-list .hovereffect-bucket:hover .bucket-image img {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5); 
  transition: all ease-in-out 0.3s;
}

.bucket-list .bucket-item {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.bucket-list .bucket-item:before {
    content: '';
    background: #ffb300;
    height: 100%;
    width: 100%;
    bottom: -5px;
    right: -5px;
    position: absolute;
}

.bucket-list .bucket-image {
    width: 20%;
    position: relative;
}

.bucket-list .bucket-item-content {
    padding: 20px;
    background: #fff;
    flex: 1 auto;
    position: relative;
}

.bucket-list .bucket-item-content h3 a {
    color: #444;
}

.bucket-list .bucket-item-content span {
    font-weight: 600;
    color: #005294;
    padding-right: 10px;
}

.bucket-list .bucket-item-content span.old-price {
    text-decoration: line-through;
    color: #ffc63f;
}
@media (max-width: 991px){
  .bucket-list .bucket-image {
    width: 72%;
  }
  .bucket-list .bucket-item-content {
    padding-right: 0;
}
}
@media(max-width: 767px){

  .bucket-list .bucket-image{width: 20%;}
}

@media(max-width: 567px){
  .bucket-list .bucket-image{width: 100%;}
}


/* ====================== */
/*    Popular Package IT  */
/* ====================== */

.popular-packages-it {
  padding: 50px 0;
}

.popular-packages-it .section-title-it {
  text-align: center;
  margin-bottom: 40px;
}

.popular-packages-it .section-title-it h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.popular-packages-it .section-title-it p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Container padding for left/right space */
.container-it {
  padding: 0 20px; /* adjust as needed */
}

.row-it {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px; /* space between rows */
}

.col-lg-6-it {
  flex: 1 1 calc(50% - 15px);
  box-sizing: border-box;
}

.package-item-it {
  display: flex;
  border-radius: 20px;
  gap: 20px;
  background: #fff;
  box-shadow: 0px 0px 15px #b7b7b785;
  padding: 15px;
  align-items: flex-start;
  transition: all ease-in-out 0.3s;
}

.package-item-it:hover {
  transform: translateY(-5px);
}

.package-image-it img {
  width: 370px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.package-content-it {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-content-it h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #005294;
}

.package-content-it p {
  margin: 5px 0 10px;
  color: #555;
}

.package-price-it {
  font-size: 20px;
  color: #005294;
  margin-bottom: 10px;
}

.btn-red-it {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .col-lg-6-it {
    flex: 1 1 100%;
  }

  .package-item-it {
    flex-direction: column;
  }

  .package-image-it img {
    width: 100%;
    height: auto;
  }
}



/*banner*/
section#home_banner_new{padding-bottom: 0;}

section#home_banner_new .sale-overlay{
  background: #00000073;
}

section#home_banner_new .slick-slider.row{margin: 0;}  

section#home_banner_new .slick-initialized .slick-slide{padding: 0;}

section#home_banner_new .sale-content-1{padding: 0 30px;}

section#home_banner_new .sale-content-1 .sale-review{text-align: center;}

section#home_banner_new .sale-content-1 h3{margin-bottom: 10px; text-align: center;}

section#home_banner_new .sale-content-1 .popular-price {
    color: #fff;
    font-size: 18px;
    background: #bd566c;
    padding: 5px 15px;
    display: inline-block;
}

section#home_banner_new .sale-content-1 .popular-price span i {
    font-weight: 500;
    text-decoration: line-through;
    font-size: 16px;
}

section#home_banner_new  .sale-item:hover .sale-content-1 {
  top:75%;
}

section#home_banner_new  .sale-item:hover img {
    transform:none;
}

section#home_banner_new .slider-button .slick-prev, section#home_banner_new .slider-button .slick-next {
    height: 50px;
    width: 50px;
    border-radius:inherit; 
    border: none; 
    background: #ffffff38;
}

section#home_banner_new .slick-prev:hover, 
section#home_banner_new .slick-prev:focus, 
section#home_banner_new .slick-next:hover, 
section#home_banner_new .slick-next:focus{background: #000;}

section#home_banner_new .slider-button .slick-prev{left: 30px;} 

section#home_banner_new .slider-button .slick-next{right: 30px;}




/*Services*/

section#mt_services {
    padding-top: 10px;
}

#mt_services .services-main {
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

#mt_services .box .icon {
    margin: 0 0 20px;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    background: #fff;
    display: inline-block;
    box-shadow: 0 0 15px #cccccc94;
    transition: all ease-in-out 0.3s;
}

#mt_services .box .icon i {
    font-size: 42px;
    color: #999;
    line-height: 2.4;
    font-weight: 300;
    transition: all ease-in-out 0.3s;
}

#mt_services .box .icon:hover, #mt_services .box .icon.active {
    background: #d81e47;
    transition: all ease-in-out 0.3s;
}

#mt_services .box .icon:hover i, #mt_services .box .icon.active i{
    color: #fff;
    transition: all ease-in-out 0.3s;
}


#mt_services .box h3 {
    margin-bottom: 10px;
}

#mt_services .box p {
    margin-bottom: 0;
    line-height: 1.5;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.5em;
    max-height: 3.1em;
}

.style-3 .search-content-slider{
  padding: 0;
  background: transparent;
}


.nice-select > span {
/* padding-left: 15px; */
}






/* Top Destinations */
.destination-content-1-pt {
  padding: 10px 0px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.package-days1-pt {
  padding: 0;
  margin: 0;
}
.col-lg-4-tp{
  background-color: #d60d45;
  padding: 20px 20px !important;
  border-radius: 10px;
}
.back-title-pt > h3{
    font-size: 90px;
    text-transform: uppercase;
    text-align: center;
    /* left: 0; */
    /* right: 0; */
    z-index: 10;
    top: -12px;
    color: #fff;
    text-shadow: 0 0 15px #cccccc20;
}

.dest-pt{
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
  box-shadow: 5px 5px 10px 2px rgba(197, 197, 197, 0.4);
}

.pt-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.destination-content-1-pt h3 {
  margin-bottom: 15px;
  border-bottom: 1px dashed #f1f1f1;
  padding-bottom: 15px;
}

.deal-rating-pt {
  float: left; /* Rating left side */
  margin-bottom: 10px;
}

.tour-price-pt {
  float: right; /* Price right side */
  text-align: right;
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-price-pt .tour-head-pt {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
}

.tour-price-pt .tour-tail-pt {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #d81e47;
}

.thumbnail-ribbon-pt {
  position: absolute;
  z-index: 1;
  bottom: 0;
  background: #d81e47;
  padding: 10px 20px;
  left: 0;
  color: #fff;
}


/* full tours*/
.full-tours .col-md-6, .full-tours .col-md-3{padding: 0;}

/*Amazing tours*/
.style-3 .amazing-tours{padding-bottom: 75px;}

.style-3 .amazing-tours .col-lg-4.col-md-6{padding: 0 5px;}

.style-3 .amazing-tours  .at-item{margin-bottom: 10px;}

.style-3 .amazing-tours .at-image{height: 350px;}

.style-3 .amazing-tours  .at-content{width: 100%; height: 100%; background: #00000060; transition: all ease-in-out 0.3s;}

.style-3 .amazing-tours  .at-content h3 { margin: 10px 0;}

.style-3 .amazing-tours  .at-content .deal-rating{margin-bottom: 0;}

.style-3 .amazing-tours  .at-item:hover .at-content {
    padding-top: 60%;
    transition: all ease-in-out 0.3s;
}






/*call to action*/

.style-3 .tour-cta{
  background: url(../images/section1-bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 0;
}

.style-3 .cta-content {
    padding: 40px 30px;
    background: #fbfbfb;
    margin-top: 14%;
    box-shadow: 0 0 30px #cccccc50;
    border: 5px solid #fff;
}

.style-3 .cta-content h3{
  font-size: 20px;
    font-weight: 700;
    font-style: normal;
    color: #d60d45;
}

.style-3 .cta-content h2{
  font-size: 52px;
    font-weight: 700;
}

.style-3 .cta-content a.btn-blue.btn-style-1:hover {
    color: #fff;
    opacity: 0.8;
}

.style-3 .tour-cta .video-thumbnail {
    position: relative;
    bottom: -30px;
    box-shadow: 0 27px 24px -35px rgba(0, 0, 0, 0.50);
    border: 8px solid #fbfbfb;
    overflow: hidden;
}
.style-3 .tour-cta .pulses {
    font-size: 16px;
    transition: all ease-in-out 0.5s;
    position: absolute;
    right:0;
    left: 46%;
    margin: 0 auto;
    top: 46%;
    animation: pulse 1.5s cubic-bezier(0.66, 0.66, 0.88, 1.86) infinite;
}

.style-3 .tour-cta .pulses button.play-btn:before {
    content: "";
    border: 2px solid #ffffff;
    height: 90px;
    position: absolute;
    width: 90px;
    left: -5px;
    top: -5px;
    border-radius: 50%;
}

.style-3 .tour-cta .pulses button.play-btn i {
    font-size: 28px;
    border: 3px solid #d60d45;
    height: 80px;
    width: 80px;
    line-height: 2.8;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #d60d45;
    transition: all ease-in-out 0.5s;
    padding-left: 5px;
}

.style-3 .tour-cta .video-content iframe{top: 0;}





/*exploration*/
.style-3 section.deals-on-sale{
  padding-top: 100px;
}

.style-3 section.deals-on-sale .sale-content-1{padding: 0 20px;}

.style-3 section.deals-on-sale .sale-content-1 h3{margin-bottom: 10px;}

.style-3 section.deals-on-sale .popular-price {
    text-align: left;
    color: #fff;
    font-size: 18px;
}

.style-3 section.deals-on-sale .sale-item:hover .sale-content-1{top: 75%;}



/*testimonail*/

.style-3 .testi-detail {
    background: #05678e;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.style-3 .testi-detail img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: 0 auto;
}

.testimonial-1{
  padding: 50px 30px !important;
}

.style-3 .testi-detail span{margin: 20px 0 5px; display: inline-flex;}

.style-3 .testi-detail p{margin-bottom: 0; position: relative;}

.style-3 .testi-detail p:before{
  content: '\f10d';
  font-family:'fontawesome';
  padding-right: 10px;
}





/*blogs*/

.style-3 section.blog{padding-bottom: 0;}

.style-3 .blog-item{box-shadow: none; position: relative;}

.style-3 .blog-item:before {
    content: '';
    background: #00000058;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.style-3 .blog-image{
  position: relative;
}

.style-3 .blog-content {
    padding: 20px 20px 12px;
     background:transparent; 
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.style-3 .blog-content h3 a:hover {
    opacity: 0.8;
    color: #fff;
}
.style-3 .blog-author{padding: 0; border: none;}

/*newsletter*/
#newsletter-main{
  background: url(../images/newssection-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 80px;
}

#newsletter-main .section-title{padding: 0;}

#newsletter-main .newsletter form{width: 100%;}

#newsletter-main .newsletter input[type=text] {
    background: #ffffff8f;
}


/* banner part asia */

/* 
.sale-img-as{

  margin: 0 0 15px 0;
  background-color: transparent;
    position: relative;
  overflow: hidden;
    width: 450px;
  height: 550px;
}
.sale-img-as > img {
width: 100%;
height: 100%;
} */


.blog-image {
    overflow: hidden;
    width: 350px;
    height: 230px;
}

.blog-image > img {
  width: 100%;
  height: 100%;
}


/* Popup modal style */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 650px;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.modal-content iframe {
  width: 100%;
  height: 80vh;
  border: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


.modal {
  z-index: 9999; /* Higher than header nav */
  display: none;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
}

    .modal-content {
      border-radius: 12px;
      /* padding: 2rem; */
      top: 40px;
      /* max-width: 500px; */
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }
    .close {
      position: absolute;
      right: 15px; top: 10px;
      font-size: 24px;
      cursor: pointer;
    }

    /* Form styling */
    /* form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    label { font-weight: bold; color: #555; }
    input, textarea {
      padding: 10px;
      border-bottom: 1px solid #ccc;
      border-radius: 8px;
      width: 100%;
      font-size: 1rem;
    }
    button[type="submit"] {
      background: #0078d7;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }
    button[type="submit"]:hover { background: #005bb5; }

    .success, .error {
      display: none;
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 10px;
    }
    .success { background: #e8f9e9; color: #218838; }
    .error { background: #fdeaea; color: #c82333; }

.destination-item-1-pt {
  padding: 20px 0;
}
    .destination-image-1-pt {
      width: 356px;
      height: 241px;
    }

    .destination-image-1-pt > img {
      width: 100%;
      height: 100%;
    }
    

    .at-image {
      width: 356px;
      height: 240px;
    }

    .at-image > img {
      width: 100%;
      height: 100%;
    } */

.about-us-image{
  width: 300px;
  height: 260px;
  border-radius: 50%;
}

.about-us-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;

}

/* companyimage part css */


/* Video Wrapper */
.video-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.full-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* fill container nicely */
}

/* Image Wrapper */
.image-wrapper {
  width: 100%;
  overflow: hidden;
}

.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Box (white box under video/image) */
.content-box {
  max-width: 100%; /* matches video/image width */
  margin: 0 auto;
}



/* company image part css ends */


.youtube-hover {
  display: inline-block;
  cursor: pointer;
}

.youtube-hover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

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


/* Equal width & height for all tour images */
.pt-wh {
  width: 100%;
  height: 250px; /* you can adjust, e.g. 300px if you want bigger cards */
  overflow: hidden;
  /* border-radius: 10px; */
  position: relative;
}

/* Image styling inside pt-wh */
.pt-wh img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the image covers full area without distortion */
  display: block;
  margin-top: 10px;
}

/* Optional: keep overlay positioned properly */
.pt-wh .at-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* Equal width & height for all destination images */
.dt-wh {
  width: 100%;
  height: 250px; /* Adjust for layout preference */
  overflow: hidden;
  /* border-radius: 10px; */
  position: relative;
}

/* Image fit styling */
.dt-wh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 10px;
}



.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 600px; /* adjust if needed */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* This ensures video fits same space as the thumbnail */
.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 600px; /* adjust if needed */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Keep responsive aspect ratio (same space as image) */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  /* height: 0; */
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full fill without distortion */
  border: none;
  border-radius: 10px;
}



.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  list-style-type: none;
  padding: 0;
}

.instagram-gallery li {
  width: 100%;
}

.instagram-gallery img {
  width: 100%;         /* Increase width automatically */
  height: 80px;       /* Increase height safely */
  /* object-fit: cover;   Image perfect crop, no distortion */
  /* border-radius: 8px;  Optional – looks nicer */
}
