body{
  font-family: "Poppins", sans-serif !important;
}
body,
h1, h2, ul{
    padding: 0;
    margin:0;
}
a{
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
  }

  .title {
    text-align: center;
  }
  .title h1,.title h2,.title h3,.title h4{
    font-size: 30px;
    font-weight: bold;
    margin:0;
    display: block;
    padding-bottom: 10px;
  }
  .title p{
    font-size: 14px;
    padding: 10px 0;
    text-align: center
  }

/* header section */
.header-quick{
  padding: 10px 0;
  font-size: 12px;
  background: #cf3400;
}
.mobile-quick-header{
  display: none;
  text-align: center;
}
/* fixed header */
.fixed {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  animation: smoothScroll 1s forwards;
  -webkit-transition: all .2s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all .2s ease;
  padding: 20px 0;
}

@keyframes smoothScroll {
  0% {
      transform: translateY(-40px)
  }

  100% {
      transform: translateY(0px)
  }
}
a.bnow{
  color:#cf3400 !important;
  font-weight: bold;
}
.header-quick, .header-quick a, .header-quick a:hover {
    color: #fff;
    text-decoration: none;
}
.quick-links-top a{
  padding-right: 10px;
  float: right;
}
.cont-top img{
  vertical-align: middle;
}
.round-call{
  border:1px solid #fff;
  display: inline;
  padding: 5px 6px;
  border-radius: 2px;
}
.header-section{
  background: url(../images/menu-bg.svg) no-repeat #3a170b;
  background-size: cover;
  border-top: 4px solid;
  border-image: linear-gradient(to right, 
    #cf3400, 
    #ff6a00, 
    #f0b90e, 
    #f0b90e, 
    #ff6a00, 
    #cf3400
  ) 1;
  padding: 10px 0;
}

/* logo */
.logo img{
  width: 100%;
}
/* HERO */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    color:#fff;
  }
  
  /* VIDEO */
  .hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
  }
  
  /* IMAGE BACKGROUND */
  .hero-image{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    z-index:1;
    display:none;
  }
 
  
  /* CONTENT */
  .hero-content{
    position:relative;
    z-index:3;
    padding:100px 60px 0;
    text-align: center;
  }
  .hero-content h1{
      font-size: 60px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
      text-transform: uppercase;
      margin:0;
      padding:0;
      font-weight: bolder;
  }
  .hero p{
      font-size: 20px;
      margin: 0 0 20px;
  }
  
  /* BUTTON */
  .vpackage {
    padding: 12px 20px;
    margin-right: 10px;
    text-decoration: none;
    background: #f0b90e;
    color: white;
    border-radius: 2px;
    font-size: 14px;
  }
  .ppackage {
    padding: 12px 20px;
    margin-right: 10px;
    text-decoration: none;
    background: #cf3400;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
  }
  a.vpackage:hover,a.ppackage:hover{
    color:#fff;
  }
  
  /* CAROUSEL */
  .carousel-wrapper{
    position:absolute;
    bottom:-20px;
    width:70%;
    z-index:3;
    left: 50%;
    transform: translateX(-50%);
  }

  @media(max-width:768px){
    .carousel-wrapper {
      width: 90%;
      bottom: -10px;
    }
  }
  
  .hero .owl-carousel .item img{
    height:150px;
    object-fit: cover;
    position: relative;
  }
  
  .hero .owl-carousel .item.active img{
    border: 3px solid;
    border-image: linear-gradient(45deg, #ffb300, #cf3400 ) 2;

  }

  .read-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 6px 12px;
    background: linear-gradient(45deg, #f0b90e, #cf3400);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 10px;
  }
  
  /* SHOW ONLY ACTIVE ITEM */
  .hero .owl-carousel .item.active .overlay-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* HOVER EFFECT */
  .read-btn:hover {
    background: linear-gradient(45deg, #cf3400, #f0b90e);
  }

  .read-btn {
    transform: scale(0.0);
    transition: 0.3s;
  }
  
  .hero .owl-carousel .item.active .read-btn {
    transform: scale(1);
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
  }

  .icon-pulse {
    animation: pulse 0.5s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.6;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

/* about  */
  .about{
    padding: 50px 0;
    background: url(../images/about-header.svg) no-repeat;
    background-size: contain;
  }
  .about .title{
    padding-top: 50px;
  }

  
  
   /* marquee */
  .marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #1e3c2f;
    padding: 12px 0;
  }
  
  .marquee-track {
    display: inline-block;
    animation: marqueeScroll 50s linear infinite;
  }
  
  .marquee-track span {
    display: inline-block;
    padding-right: 50px;
    color: #fff;
    font-size: 16px;
  }
  
  /* 🔥 PERFECT LOOP */
  @keyframes marqueeScroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }



  /* promotional banner */
  .promotional img{
    width: 100%;
  }
  .promotional .container{
    padding:0
  }
 
  



  /* destination */
  .package-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding-top: 10px;
  }
  
  /* LEFT BIG */
  .left-feature .big {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  
  .big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: 0.4s;
  }
  /* HOVER EFFECT 🔥 */
  .big:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}
  
  /* CONTENT OVERLAY */
  .big .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
  }
  .big .content a{
    color:#fff;
    padding:5px 10px;
    border-radius: 2px;
  }
  
  /* RIGHT GRID */
  .right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  /* SMALL CARDS */
  .small {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  
  .small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: 0.4s;
  }
  .small:hover img {
    transform: scale(1.1);
    transition: 0.4s;
  }
  
  /* TITLE */
  .small a {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    padding:5px 10px;
    border-radius: 2px;
  }
  .small a:hover{
    color:#fff;
    display: inline;
  }

  @media(max-width: 768px) {
    .package-layout {
      grid-template-columns: 1fr;
    }
  
    .right-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media(max-width: 500px) {
    .right-grid {
      grid-template-columns: 1fr;
    }
  }


  /* packages */
  .packages{
    padding: 50px 0;
    background: url(../images/dragon-zoom.svg) no-repeat center top;
    background-size: contain;
  }
  .view-all-packages{
    text-align: center;
    margin-top: 10px;
  }
  .view-all-packages a{
    display: inline-block;   /* 👈 better */
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    color:#cf3400;
    border:2px solid #cf3400;
    border-radius:2px;
    text-decoration: none;
    font-weight: bolder;
  }
  .view-all-packages a:hover{
    color:#fff;
    background: #cf3400;
  }
    /* GRID */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 15px;
}

/* CARD */
.package-details .card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  cursor: grab;
  transition: 0.4s;
}

/* BIG */
.package-details .card.big {
  grid-row: span 2;
}

/* OVERLAY */
.package-details .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}
.package-star{
  position: absolute;
  right: 20px;
  top: 20px;
  color:#f0b90e;
  background:#1e3c2f;
  border-radius: 2px;
  padding:3px 5px;
  font-size: 10px;
}

.package-details .overlay h3 {
  margin: 0;
  font-size: 16px;
}

/* BOTTOM ROW */
.package-details .bottom {
  margin-top: 8px;
}

/* LINK */
.package-details .overlay a {
  background: #f0b90e;
  text-decoration: none;
  display: inline-block;
  padding:5px 13px;
  border-radius: 2px;
  font-size: 12px;
}
.package-details .small .overlay strong{
  display: block;
  margin-bottom: 30px;
}
.package-details .big .overlay strong{
  display: block;
  margin-bottom: 10px;
}

/* DRAG EFFECT */
.package-details .card:active {
  cursor: grabbing;
  transform: scale(1.05);
}
.package-details .dragging {
  opacity: 0.5;
  transform: scale(0.95);
}
.package-details .overlay strong{
  font-size: 18px;
  font-weight: bold;
}



/* our service seciton */
.services {
  padding: 50px;
  text-align: center;
  background: url(../images/servicebg.jpg) no-repeat;
  background-size: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.service-card {
  padding: 30px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: 0.4s;
}

/* ICON */
.service-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
  background:#f0b90e;
  padding:10px;
  border-radius: 2px;
}
.service-card strong{
  display: block !important;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.3);
}

/* 📱 Tablet (2 columns) */
@media (max-width: 992px) {
  .services {
    padding: 40px 20px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card {
    padding: 25px;
  }
}
/* 📱 Mobile (1 column) */
@media (max-width: 576px) {
  .services {
    padding: 30px 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card i {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .service-card {
    border-radius: 12px;
  }
}
.services .title{
  color:#fff
}
.redmarquee{
  background: #cf3400;
}



/* blogs */
.blogs{
  padding:50px 0;
  background: url(../images/blogbg.svg) no-repeat center;
  background-size: cover;
}
/* CARD */
.blog-card {
background:#fff;
  transition: 0.3s;
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  transition: 0.4s;
  border-radius: 2px;
  height: 150px;
  object-fit: cover;
  position: relative;
}
.blog-icon{
  position: absolute;
  right: 10px;
  top:10px;
  z-index: 9;
}
.blog-icon{
  width: 40px;
}
.blog-icon img{
  width: 100% !important;
  height: auto;
  object-fit: contain;
}
/* CONTENT */
.blog-content {
  padding: 20px
}

.meta {
  font-size: 12px;
  opacity: 0.7;
}

.blog-content h3 {
  margin: 10px 0;
  font-size: 18px;
}

.blog-content p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* LINK */
.blog-content a {
  color: #f0b90e;
  text-decoration: none;
  display: block;
  padding-top: 10px;
}
@media(max-width:768px){
  .blog-img img {
    height: 160px;
  }
}

.blog-carousel .owl-nav {
  position: absolute;
  right: 0;
}

/* buttons */

.blog-carousel .owl-nav button {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: none;
  background: #1e3c2f !important;
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
  display: block !important;
}



/* google reveiws */
.google-reveiws{
  padding:50px 0;
  background:url(../images/flag-pattern.svg) no-repeat bottom;
  background-size: contain;
}
.reviews {
  text-align: center;
}

/* CARD */
.review-card {
  background: rgb(250, 250, 250);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
}

/* TOP */
.review-card .top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* IMAGE */
.review-card img {
  height: 150px;
  object-fit: contain;
}

/* NAME */
.review-card h4 {
  margin: 0;
}

/* STARS */
.review-card span {
  color: #f0b90e;
  font-size: 14px;
}

/* TEXT */
.review-card p {
  font-size: 14px;
  color: #555;
}

.review-float {
  position: fixed;
  right: -250px;
  bottom: 100px;
  width: 220px;

  background: #fff;
  padding: 15px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.4s;
  z-index: 999;
}

/* ACTIVE */
.review-float.show {
  right: 20px;
  text-align: center;
}
.google-scan {
  text-align: center;
}
/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
}
.google-scan img{
  width: 40% !important;
  margin-top: 0px;
}
.review-float img{
  width: 100%;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media(max-width:768px){
  .review-float {
    width: 180px;
    bottom: 70px;
  }
}

.review-carousel .owl-nav.disabled{
  display: none !important;
}



/* FAQ and contact form */
.faq-contact {
  padding: 80px 20px;
  background:url(../images/plan-your-trip.png) no-repeat #1e3c2f;
  color: #fff;
  background-size: cover;
}

.faq-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

.faq-question {
  padding: 5px 15px;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 100px;
  padding-bottom: 15px;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #cf3400;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f0b90e;
}

@media(max-width:768px){
  .faq-contact-wrap {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

/* INPUT */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 6px;
  background: transparent;
  color: #fff;
}

/* LABEL */
.form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
}

/* ANIMATION ON FOCUS OR VALUE */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  left: 10px;
  font-size: 10px;
  color: #f0b90e;
  background: #1e3c2f;
  padding: 0 5px;
  border-radius: 2px;
}


/* gallery  */
.footer-gallery{
  padding:50px 0;
}
.ig-gallery {
  color: #fff;
  text-align: center;
}

/* FILTER */
.ig-filter {
  margin-bottom: 20px;
}

.ig-filter button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  color: #000;
}

.ig-filter .active,.ig-filter button:hover {
  background: #cf3400;
  color: #fff;
}

/* GRID */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
  grid-auto-flow: dense; /* 🔥 FIX */
}

/* ITEMS */
.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.ig-item:hover img {
  transform: scale(1.1);
}

/* SIZE */
.ig-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.ig-item.small {
  grid-column: span 1;
}

/* VIDEO ICON */
.ig-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  height: 55px;
  width: 55px;
  border-radius: 50%;
}

/* HIDE VIDEO */
.ig-item video {
  display: none;
}

/* LIGHTBOX */
.ig-lightbox {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.ig-lightbox img,
.ig-lightbox video {
  max-width: 90%;
  max-height: 80%;
}

.ig-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* footer */
.site-footer {
  background: url(../images/footer-dragon.svg) #0f1f19 no-repeat center;
  background-size: contain;
  color: #ccc;
}

/* CTA */
.footer-cta {
  text-align: center;
  padding: 60px 20px;
  background: 
  linear-gradient(to right, rgba(207,52,0,0.8), rgba(240,185,14,0.8));
  color: #fff;
  background-size: contain;
}

.cta-buttons {
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* PRIMARY */
.btn.primary {
  background: #fff;
  color: #000;
}

/* SECONDARY */
.btn.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* HOVER */
.btn:hover {
  transform: translateY(-3px);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 20px;
}

/* COLUMN */
.footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  color: #f0b90e;
  font-weight: bolder;
}
.footer-col strong{
  display: block;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f0b90e;
}

/* SOCIAL */
.social-icons a {
  margin-right: 5px;
  font-size: 18px;
  color: #fff;
  display: inline;
}
.social-icons img{
  width: 22px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px){
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-secondary{
  background:url(../images/footer-line.svg) no-repeat top;
  background-size: contain;
  padding:20px 0 10px;
  text-align: center;
  border-bottom: 2px solid #f0b90e;
  margin-bottom: 20px;
}
.footer-secondary a{
  font-size: 12px;
  color:#f7f7f7;
  font-weight: 200;
  display: inline;
  padding:0px 3px;
}











/* single destination */
/* LAYOUT */
/* .dest2-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  width: 90%;
  margin: auto;
} */

.dest2-main,.dest2-sidebar{
  float: left;
}
.dest2-main-pad{
  padding-right: 20px;
}

.dest2-main{
  width: 70%;
}
.dest2-sidebar{
  width: 30%;
}

/* HERO */
.dest2-hero {
  position: relative;
  height: 30vh;
  background: url("../images/hero/paro.jpg") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: #fff;
  z-index: 1;
}
/* OVERLAY */
.dest2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* 👈 adjust 0.4–0.7 */
  z-index: -1;
}

/* MAIN */
.dest2-section {
  margin-bottom: 50px;
}

.dest2-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-top: 20px;
}
.dest2-cards strong{
  font-size: 20px;
}
.dest2-cards p{
  text-align: justify;
}
.dest2-cards img{
  width: 100%;
  border-radius: 2px;
  margin:10px 0;
  height: 250px;
  object-fit: cover;
}
.dest3-cards {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 15px;
}
.dest3-cards li{
  list-style: none;
  padding:5px 0;
}

.dest2-cards div {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

/* GALLERY */
.dest2-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.dest2-gallery img {
  width: 100%;
  border-radius: 10px;
}

/* SIDEBAR */
.dest2-sidebar {
  position: sticky;
  top: 60px;
  height: fit-content;
}

/* BOX */
.dest2-box {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 40px;
}
.dest2-box .contact-form{
  padding:20px !important;
  background: url(../images/plan-your-trip.png) no-repeat bottom #1e3c2f;
  background-size: contain;
}
.dest2-box .contact-form h2,.dest2-box .contact-form strong,.dest2-box .contact-form p{
  color:#fff;
}

/* PRICE */
.price {
  font-size: 24px;
  color: #f0b90e;
}

/* BUTTON */
.dest2-btn {
  display: block;
  background: #cf3400;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
}

/* WHATSAPP */
.whatsapp {
  display: block;
  margin-top: 10px;
  color: #25D366;
}

/* RESPONSIVE */
@media(max-width:768px){
  .dest2-wrapper {
    grid-template-columns: 1fr;
  }

  .dest2-sidebar {
    position: relative;
    top: 0;
  }
}

.destinaiton-single p{
  text-align: justify;
}
.destinaiton-single h2{
  text-transform: uppercase;
}
.destinaiton-single h2, .destinaiton-highlight h2, .dest2-section h2, .dest2-box h3 {
    font-weight: bold;
    color: #cf3400;
    background: url(../images/divider.svg) no-repeat left bottom;
    padding-bottom: 20px;
}
.destinaiton-single h2 span{
  background:#f0b90e;
  padding:5px 10px;
  font-size: 14px;
  border-radius: 13px;
}

/* DESTINATION PAKCAGES */

.rel-packages h2{
  font-weight: bold;
  background: url(../images/divider.svg) no-repeat left bottom;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
/* GRID */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* CARD */
.rel-card {
  border-radius: 12px;
  transition: 0.3s;
}

.rel-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.rel-img {
  position: relative;
}

.rel-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
}

/* OVERLAY */
.rel-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color:#fff;
}

.rel-overlay h3 {
  margin: 0;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.rel-card:hover .rel-overlay span{
  background: #cf3400;
  color:#fff;
}
.rel-overlay span {
  font-size: 12px;
  background: #1e3c2f;
  color:#fff;
  display: inline;
  padding:3px 8px;
  border-radius: 2px;
}

/* CONTENT */
.rel-content {
  padding: 15px;
}

.rel-content a {
  color: #424242;
  text-decoration: none;
}
.rel-content a:hover{
  color:#000;
}

/* RESPONSIVE */
@media(max-width:768px){
  .rel-grid {
    grid-template-columns: 1fr;
  }
}


/* ITINERARY DETAILS */
.itiX-hero{
  height:30vh;
  background:url("../images/hero/paro.jpg") center/cover;
  display:flex;
  align-items:center;
  padding-left:10%;
  position: relative;
  color:#fff;
  z-index: 1;
}
.itiX-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index: -1;
}
/* WRAPPER */

/* MAIN */
.itiL-main,.itiL-sidebar {
  float: left;
}
.itiL-main {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  width: 70%;
}

/* SIDEBAR */
.itiL-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  width: 30%;
}
.itiL-sidebar .itiL-box{
  background:none;
}
.itiL-box h3{
  font-weight: bold;
  font-size: 14px;
  background: url(../images/divider.svg) left bottom no-repeat;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
/* BOX */
.itiL-box {
  background: rgba(59, 5, 5, 0.08);
  padding: 10px;
  border-radius: 2px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .itiL-wrapper {
    grid-template-columns: 1fr; /* STACK */
  }

  .itiL-sidebar {
    position: relative;
    top: 0;
  }
}

/* SECTION */

/* GRID (HIGHLIGHTS) */
.itiL-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.itiL-item {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: 0.3s;
}


/* INCLUDE EXCLUDE */
.itiL-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}


.itiL-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.itiL-box li {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .itiL-grid,
  .itiL-inc-exc {
    grid-template-columns: 1fr;
  }
}
.itiL-section h2{
  font-weight: bold;
  background: url(../images/divider.svg) left bottom no-repeat;
  padding-bottom: 20px;
}
.itiL-section img{
  width: 100%;
  border-radius: 2px;
}
.itiL-section p{
  text-align: justify;
}
.itiL-section h2 span{
  color:#cf3400; font-size: 16px;
}
.itiL-section strong a {
    float: right;
    font-size: 12px;
    color: #000;
    border-radius: 17px;
    background:#f0b90e;
    padding: 7px 10px;
    margin-left: 20px;
}

.itiL-section strong{
  padding:5px 10px;
  margin-bottom: 10px;
  display:inline-block;
}

/* accordian */
/* ITEM */
.itAcc-item {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  overflow: hidden;
  padding: 10px;
  margin-bottom: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* HEAD */
.itAcc-head {
  padding: 5px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  color:#6e1c00
}

/* PLUS ICON */
.itAcc-head::after {
  content: "+";
  position: absolute;
  right: 15px;
}

/* BODY */
.itAcc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

/* ACTIVE */
.itAcc-item.active {
  background: rgba(255, 171, 171, 0.2);
  border: 1px solid #ebebeb;
}

.itAcc-item.active .itAcc-head {
  color: #1e3c2f;
  font-weight: bold;
}

.itAcc-item.active .itAcc-head::after {
  content: "-";
}

.itAcc-item.active .itAcc-body {
  max-height: 200px;
  padding: 10px 15px 20px;
}
.itAcc-section h2{
  font-weight: bold;
  background: url(../images/divider.svg) left bottom no-repeat;
  padding-bottom: 20px;
}

/* sidebar related destination */
/* ITEM */
.itRel-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.itRel-item img {
  width: 100%;
   /*height: 320px;*/
  object-fit: cover;
}

/* TITLE */
.itRel-item span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 0, 0, 0.6);
  padding: 4px 6px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

/* ARROWS */
.itRel-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px 10px;
}

.itRel-carousel .owl-nav .owl-prev {
  left: -10px;
}

.itRel-carousel .owl-nav .owl-next {
  right: -10px;
}

/* booking form revel */
.bookBox {
  position: fixed; /* important for floating */
  bottom: 50%;
  left: 20px;
  width: 200px;
  background:#1e3c2f;
  text-align: center;
  border-radius: 2px;
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease;
  z-index: 999;
  padding:0 10px 20px;
}

.bookBox.hidden {
  opacity: 0;
  transform: translateY(40px);

}
.bookBox.hidden {
  transform: translateX(120%);
}
.bookBox {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.bookBox{
  color:#fff;
}
.bookBox h3,.bookBox strong{
  display: block;
}
.bookBox strong{
  margin-bottom: 30px;
}
.bookBox a{
  background:#f0b90e;
  border-radius: 2px;
  padding:10px;
  display: inline;
}
.bookBox a:hover{
  color:#fff;
}
span.bookClose{
  float: right;
  cursor: pointer;
}

/* contact form */
.contact-left,.contact-right{
  float: left;
}
.contact-left{
  width: 70%;
}
.contact-right{
  width: 30%;
}
.conX-page {
  padding: 60px 10%;
  text-align: center;
}

.conX-title {
  font-size: 32px;
}

.conX-sub {
  margin-bottom: 40px;
  color: #ccc;
}

/* GRID */
.conX-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

/* LEFT BOX */
.conX-box {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
}

/* FORM */
.conX-form {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
}

/* FLOAT LABEL */
.conX-field {
  position: relative;
  margin-bottom: 20px;
}

.conX-field input,
.conX-field textarea,
.conX-field select,
#extraFields input[type=date],
#extraFields input{
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #aeaeae;
  color: #fff;
  border-radius: 6px;
  outline: none;
}
.conX-field select option {
  color:#000;
}



.conX-field label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #aaa;
  transition: 0.3s;
  pointer-events: none;
}

/* ANIMATION */
.conX-field input:focus + label,
.conX-field input:valid + label,
.conX-field textarea:focus + label,
.conX-field textarea:valid + label {
  top: -8px;
  font-size: 12px;
  background: #1e3c2f;
  padding: 0 5px;
}

/* BUTTON */
.conX-btn {
  width: 100%;
  padding: 12px;
  background: #cf3400;
  border: none;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 20px;
}

/* MAP */
.conX-map iframe {
  width: 100%;
  height: 300px;
  margin-top: 40px;
  border: none;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .conX-wrapper {
    grid-template-columns: 1fr;
  }
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.popup.show {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.contact{
  overflow: hidden;
  padding:30px 0;
  background: url(../images/plan-your-trip.png) no-repeat #1e3c2f;
  background-size: cover;
}
.contact-left-wrap{
  padding:20px 100px;
}
.contact-left strong,.contact-left p{
  color:#fff;
}
.contact-left strong{
  font-size: 30px;
}


/* HIDDEN */
#extraFields {
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease;
}

#extraFields.hidden {
  opacity: 0;
  transform: translateY(20px);
  height: 0;
  overflow: hidden;
}

/* TRAVELER BOX */
.travelerBox {
  margin-top: 20px;
}

.traveler-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* COUNTER */
.counter {
  display: flex;
  align-items: center;
}

.counter button {
  width: 30px;
  height: 30px;
  background: #cf3400;
  border: none;
  color: #fff;
  cursor: pointer;
}

.counter input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
}

/* ANIMATION DOTS */
.sending::after {
  content: "...";
  animation: dots 1.2s infinite;
}

@keyframes dots {
  0% { content: "."; }
  33% { content: ".."; }
  66% { content: "..."; }
}



.cnt-right{
  background: #fff;
  padding:20px;
  border-radius: 2px;
}
.cnt-right li{
  list-style: none;
  padding:5px 0;
}
.cnt-right strong{
  font-size: 24px;
}




/* blogs single */
.blog-single-article{
  width: 70%;
}
.blog-sidebar{
  width: 30%;
}
.blog-single-article,.blog-sidebar{
  float: left;
}
.blogs-single{
  padding: 30px 0;
}
.blog-single-article img{
  width: 100%;
  border-radius: 2px;
}
.blog-single-article h1{
  font-weight: bold;
}
.blog-single-article h1 img{
  width: auto;
}
.blog-meta span{
  color:#cf3400;
  font-weight: bold;
}
.blog-meta {
  padding-bottom: 10px;
}
.author-box {
  background: #1e3c2f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  color:#fff;
}
.comment-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-size: cover;
}
.comment-box input {
  margin-bottom: 10px;
}
.related-blog-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.related-blog-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.related-blog-item a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
.related-blog-item p {
  font-size: 12px;
}
.blog-sidebar-wrap{
  padding-left: 20px;
}
.blog-sidebar li{
  list-style: none;
  padding:5px 0
}
.blog-sidebar-wrap{
  margin-bottom: 20px;
}



/* popup include and exclude */
/* NAMESPACE: itx- (safe, no conflict) */

.itx-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.itx-modal.active {
  display: block;
}

.itx-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.itx-content {
  position: relative;
  background: #fff;
  max-width: 600px;
  margin: 80px auto;
  padding: 25px;
  border-radius: 10px;
  z-index: 2;
  animation: itxFade 0.3s ease;
}

@keyframes itxFade {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.itx-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.itx-grid {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.itx-box {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}

.itx-box h4 {
  margin-bottom: 10px;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
  .itx-content {
    max-width: 90%;
    margin: 60px auto;
    padding: 20px;
  }

  .itx-grid {
    flex-direction: column; /* stack instead of side-by-side */
    gap: 15px;
  }

  .itx-box {
    width: 100%;
  }

  .itx-close {
    font-size: 20px;
    top: 8px;
    right: 12px;
  }
}

.tour-include a{
  background:#cf3400;
  color:#fff;
  font-size: 14px;
  border-radius: 2px;
  display: inline;
  padding:5px 9px;
}
.tour-include a:hover{
  color:#fff !important;
}


/* bottom to top */
#scrollTopBtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 10px 14px;
  font-size: 18px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: #cf3400;
  color: #fff;
  display: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: #0f1f19;
  transform: translateY(-3px);
}



.global h1 {
    background: url(../images/divider.svg) no-repeat bottom;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #cf3400;
    margin-bottom: 20px;
    font-weight: bold;
}

/* destinatio grid */
.destX-section {
  padding: 20px 8%;
}
.destX-section h2{
  background: url(../images/divider.svg) no-repeat left bottom;
    padding-bottom: 20px;
    text-transform: uppercase;
    color:#cf3400;
    margin-bottom: 20px;
    font-weight: bold;
}

/* FILTER */
.destX-filter {
  text-align: center;
  margin-bottom: 30px;
}

.destX-filter button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  background: #444;
  color: #fff;
  cursor: pointer;
}

.destX-filter .active {
  background: #cf3400;
}

/* GRID */
.destX-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.destX-item {
  margin-bottom: 35px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding: 10px;
}

.destX-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-radius: 2px;
}

.destX-item img {
  width: 100%;
  display: block;
  transition: 0.4s;
  margin-bottom: 10px;
  border-radius: 2px;
  position: relative;
}

/* OVERLAY */
.destX-item a:hover{
  text-decoration: none;
}
.destX-item strong{
  display: block;
  font-size: 20px;
  color:#000;
}
.destX-item span{
  color:#cf3400;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding-bottom: 10px;
}
.destX-item p{
  color:#000;
}
.destX-item{
  background-size: contain;
}



/* tour details */
.tourX-section {
  padding: 20px 8%;
}

/* GRID */
.tourX-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 25px;
  align-items: stretch;
}

/* CARD */
.tourX-card {
  background:#f7f7f7;
  border-radius: 2px;
  overflow: hidden;
  transition: 0.35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tourX-section h2{
  background: url(../images/divider.svg) no-repeat left bottom;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: #cf3400;
  margin-bottom: 20px;
  font-weight: bold;
}
/* HOVER */
.tourX-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.tourX-img {
  position: relative;
  height: 220px;
}

.tourX-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TAG */
.tourX-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #cf3400;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  color:#fff;
  font-weight: bold;
}

/* PRICE */
.tourX-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #1e3c2f;
  color: #f0b90e;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
}

/* CONTENT */
.tourX-content {
  padding: 10px;
}

.tourX-content h3 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}

.tourX-desc {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

/* INFO */
.tourX-info {
  font-size: 13px;
  margin-bottom: 10px;
}

/* INCLUDE EXCLUDE */
.tourX-incExc {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}

.tourX-incExc p {
  margin: 0;
}

/* BUTTON */
.tourX-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #cf3400;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.btnView {
    text-align: center;
    padding: 10px;
    background: #cf3400;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-left: 2px;
    margin-right: 2px;
}
.btnBook {
    text-align: center;
    padding: 10px;
    background: #f0b90e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-left: 2px;
    margin-right: 2px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .tourX-grid {
    grid-template-columns: 1fr;
  }
}



/* property llist */

.hotelX-section {
}
.hotelX-section h2{
  background: url(../images/divider.svg) left bottom no-repeat;
  padding-bottom: 20px;
}

/* GRID */
.hotelX-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.hotelX-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.35s;
}

/* HOVER */
.hotelX-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* IMAGE */
.hotelX-img {
  position: relative;
  height: 220px;
}

.hotelX-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TYPE TAG */
.hotelX-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #cf3400;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  color:#fff;
}

/* RATING */
.hotelX-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f0b90e;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* CONTENT */
.hotelX-content {
  padding: 10px;
}

.hotelX-content h3 {
  margin-bottom: 5px;
}

.hotelX-location {
    font-size: 14px;
    color: #cf3400;
}

.hotelX-desc {
  font-size: 13px;
  margin-top: 5px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hotelX-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px){
  .hotelX-grid {
    grid-template-columns: 1fr;
  }
}



/* hotel single */
/* HERO */
.hotelS-hero {
  position: relative;
  height: 30vh;
}

.hotelS-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotelS-overlay {
  position: absolute;
  bottom: 20px;
  left: 10%;
  color: #fff;
}

/* CONTAINER */
.hotelS-container {
  padding: 40px 10%;
}

/* GALLERY */
.hotelS-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.hotelS-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

/* GRID */
.hotelS-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* BOX */
.hotelS-box {
  margin-bottom: 25px;
}
.hotelS-box h1,.hotelS-box h2{
  font-weight: bold;
  background: url(../images/divider.svg) left bottom no-repeat;
  padding-bottom: 20px;
}
.hotelS-box strong{
  background: #f0b90e;
  padding: 5px 10px;
  border-radius: 17px;
  margin-bottom: 10px;
  display: inline-block;
}

/* AMENITIES */
.hotelS-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* ROOM */
.hotelS-room {
  margin-bottom: 10px;
}

/* BOOK */
.hotelS-book {
  padding: 20px 20px 100px;
  border-radius: 10px;
  position: sticky;
  top: 20px;
  background: url(../images/plan-your-trip.png) no-repeat bottom #1e3c2f;
    background-size: contain;
    color:#fff;
}
.hotelS-box li{
  list-style: none;
}

.hotelS-btn {
  width: 100%;
  padding: 12px;
  background: #cf3400;
  border: none;
  color: #fff;
  cursor: pointer;
  margin:10px 0;
}

/* MAP */
.hotelS-map iframe {
  width: 100%;
  height: 300px;
  margin-top: 40px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hotelS-grid {
    grid-template-columns: 1fr;
  }

  .hotelS-gallery {
    grid-template-columns: repeat(2,1fr);
  }
}

.hotelC-gallery {
  margin-bottom: 30px;
}

.hotelC-item {
  overflow: hidden;
  border-radius: 10px;
}

.hotelC-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER */
.hotelC-item:hover img {
  transform: scale(1.05);
}

/* OWL NAV STYLE */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px !important;
  color: #fff !important;
}

.owl-prev { left: 10px; }
.owl-next { right: 10px; }

.owl-dots {
 display: none;
}






/* about us */
.aboutx-single{
  padding:100px 0;
}
.aboutx-img img{
  width: 100%;
}
.aboutx-single h1{
  font-size: 30px;
  font-weight: bold;
}
.aboutx-single strong{
  font-size: 60px;
  color:#cf3400;
  line-height: 60px;
  margin-bottom: 20px;
  display: block;
}

.revealX-text span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* BACKGROUND LAYER */
.revealX-text span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 100%;
  background: #f0b90e;
  z-index: -1;
  transition: 0.5s ease;
}
.revealX-text span::before {
  width: 0;
  animation: revealBg 2s ease infinite;
}

@keyframes revealBg {
  0% {
    width: 0%;
    opacity: 0;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}

.about-quick-cnt{
  font-size: 24px;
}
.about-quick-cnt a{
color:#1e3c2f;
font-weight: bold;
}
.who-we-are .col-lg-4{
  padding:50px;
  height: 450px;
  text-align: center ;
}
.who-we-are .col-lg-4:nth-child(1){
  background:#1e3c2f;
}
.who-we-are .col-lg-4:nth-child(2){
  background:#f0b90e;

}
.who-we-are .col-lg-4:nth-child(2) h2{
  font-weight: bold;
  padding-top: 100px;
}
.who-we-are .col-lg-4:nth-child(3){
  background:#cf3400;
}
.who-we-are img{
  width: 80%;
}
.who-we-are{
overflow: hidden;
}
.mission-vission{
  background: url(../images/mission-bg.svg) repeat-x #F4F0EC;;
  padding:100px 0;
  overflow: hidden;
  text-align: center;
}
.mission-vission span{
  font-size: 30px;
  font-weight: bold;
}

.why-choose-single{
  padding:20px 0;
}
.why-choose-single h3{
  text-align: center;
}
.extrabg{
  background:#1e3c2f;
  padding:30px;
  text-align: center;
}
.extrabg img{
  width: 50%;
}
.why-choose-single strong{
  font-size: 40px;
  color:#cf3400;
  line-height: 40px;
  display: block;
  margin-bottom: 10px;
}
.why-choose-single p,.why-choose-single strong{
  text-align: center;
}
.why-choose-single h3{
  font-weight: bold;
  background: url(../images/divider.svg) no-repeat center bottom;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: block;
}

.why-bhutan{
  padding:100px 0;
  background: url(../images/about-header.svg) repeat-x #F4F0EC;
    background-size: contain;
}
.why-bhutan strong,.why-bhutan p{
  text-align: center;
  display: block;
}
.why-bhutan strong{
  font-size: 30px;
}


.teamX-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.teamX-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
.our-staff{
  position: absolute;
  z-index: 999;
  right: 30px;
  top: 30px;
  background:#1e3c2f;
  color:#fff;
  padding:5px 10px;
  border-radius: 2px;
  font-size: 12px;
}

.teamX-card h3 {
  margin: 10px 0 5px;
}

.teamX-card p {
  color: #777;
}

/* HOVER */
.teamX-card:hover {
  transform: translateY(-5px);
}

/* NAV */
.owl-nav button {
  font-size: 30px !important;
  color: #333 !important;
}

.owl-dots {
  margin-top: 10px;
}


.featX-box {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

/* TOOLTIP */
.featX-tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  width: 220px; /* control width */
}

/* IMAGE AUTO HEIGHT */
.featX-tooltip img {
  width: 100%;
  height: auto; /* ✅ auto height */
  border-radius: 10px;
  display: block;
}

/* SHOW ON HOVER */
.featX-box:hover .featX-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* destinaiton carousel for mobile */
.destM-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.destM-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT OVERLAY */
.destM-item span {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-weight: bold;
}


/* bike rental */
/* HERO */
.bikeX-hero {
  height: 30vh;
  background: url(../images/bike-rental/header.jpg) center/cover;
  position: relative;
}

.bikeX-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

/* CONTAINER */
.bikeX-container {
  padding: 20px 8%;
}

/* GRID */
.bikeX-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
}

/* CARD */
.bikeX-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.bikeX-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* INFO */
.bikeX-info {
  background: #1e3c2f;
  color: #fff;
  padding: 60px;
}

.bikeX-infoGrid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

/* SERVICES */
.bikeX-services {
  padding: 60px;
  background: #f5f5f5;
}

/* WHY */
.bikeX-why {
  padding: 60px;
}

/* CTA */
.bikeX-cta {
  background: #cf3400;
  color: #fff;
  text-align: center;
  padding: 50px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .bikeX-grid {
    grid-template-columns: 1fr;
  }

  .bikeX-infoGrid {
    grid-template-columns: 1fr;
  }
}

.bikeX-card strong{
  padding-top: 10px;
  display: block;
}
.bikeX-card span a{
  background: #cf3400;
  color:#fff;
  border-radius: 2px;
  display: inline;
  padding:3px 8px;
  font-weight: normal;
  font-size: 13px;
}
.bikeX-card span a:hover{
  background: #1e3c2f;
}
.bikeX-card span{
  color:#cf3400;
  font-weight: bold;
}

/* bike single  */
/* MAIN */
.bikeC-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* THUMB */
.bikeC-thumb {
  margin-top: 10px;
}

.bikeC-thumbItem {
  padding: 3px;
  cursor: pointer;
  opacity: 0.6;
}

.bikeC-thumbItem img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

/* ACTIVE */
.bikeC-thumb .current {
  opacity: 1;
  border: 2px solid #cf3400;
}
.bike-rental-single{
  overflow: hidden;
}
.bike-left,.bike-right{
  float: left;
}
.bike-left{
  width: 70%;
}
.bike-right {
    width: 30%;
    
    /*position: sticky;*/
    /* top: 60px; */
    /*height: fit-content;*/
}
.bike-related{
  padding-left: 30px;
}
.bike-highlight img{
  width: 100%;
}
.bike-rental-single{
  padding:30px 0;
}
.bike-highlight span{
  display: block;
  font-weight: bold;
  color:#cf3400;
  margin-bottom: 5px;
}
.bike-highlight  a{
  background:#cf3400;
  font-weight: normal;
  display: inline;
  color:#fff;
  padding:3px 8px;
  font-size: 12px;
}
.bike-highlight a:hover{
  background: #1e3c2f;
  color:#fff;
  text-decoration: none;
}
.bike-highlight{
  overflow: hidden;
  padding-bottom: 10px;
}
.bike-related h3,.bike-left h1{
  background: url(../images/divider.svg) no-repeat left bottom;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
}
.rental-single-higlight li{
  list-style: none;
}
.bike-left .contact-form{
  background:url(../images/bike-rental/bike-bg.png) #1e3c2f;
  color:#fff;
  padding:50px;
}
