/* ====== Page Loader ====== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.dots-loader {
  display: flex;
  gap: 10px;
}

.dots-loader div {
  width: 14px;
  height: 14px;
  background: #63AB45;
  border-radius: 50%;
  animation: bounce 0.6s infinite ease-in-out;
}

.dots-loader div:nth-child(2) {
  animation-delay: 0.15s;
}
.dots-loader div:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-10px); opacity: 1; }
}

/* ====== Top Header ====== */
.top-header {
  background-color: #63AB45;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}
.tour-logo {
    height: 60px;
    width: 100px;
}
.top-header i {
     color: #fff;
    }

.social-circle {
  color: #fff;
  margin-left: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  text-decoration: none !important;
  border-radius: 50%;
  transition: 0.3s;
}
.text-primary{
  color: #63AB45 !important;
}
.social-circle:hover {
  background: #fff;
  color: #63AB45 !important;
  transform: scale(1.1);
}
.tagline {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.tagline i {
  margin: 0 6px;
  font-size: 14px;
}
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 80px;
}



/* ===== Main Header ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.logo h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.logo span {
  color: #63AB45;
}

.menu li {
  position: relative;
  margin: 0 15px;
}
.menu li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #63AB45;
  transition: width 0.3s ease;
}
.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}
.menu li a:hover,
.menu li a.active {
  color: #63AB45;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  top: 120%;
  left: 0;
  border-radius: 6px;
  min-width: 206px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #000;
  font-weight: 500;
}
.dropdown-menu li a:hover {
 
  color: #63AB45;
}

.book-btn {
  background: #63AB45;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.book-btn:hover {
  background: #000;
  color: #63AB45;
}
html, body {
  width: 100%;
  /* overflow-x: hidden;  */
}


body.menu-open {
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.active {
  left: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .close-btn {
  text-align: right;
  font-size: 25px;
  cursor: pointer;
  color: #000;
}
.mobile-menu ul li {
  margin-bottom: 15px;
}
.mobile-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.mobile-menu a:hover {
  color: #ffe86e;
}

.mobile-menu .dropdown-sub {
  display: none;
  padding-left: 20px;
}
.mobile-menu .dropdown-sub.show {
  display: block;
}
.mobile-menu .dropdown > a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.mobile-menu .dropdown.open > a i {
  transform: rotate(180deg);
}

.mobile-toggle {
  font-size: 25px;
  color: #000;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}



/* ===== Hero Carousel Section ===== */
/* ================= Hero Carousel ================= */
#hero-carousel .carousel-item {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

#hero-carousel img,
#hero-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.carousel-caption .tagline {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.carousel-caption .tagline span {
  font-weight: 600;
  color: #63AB45;
  padding-bottom: 5px;
}

.carousel-caption h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.carousel-caption .desc {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 25px;
}

.btn-book {
  background-color: #63AB45;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-book:hover {
  background-color: #fff;
  color: #000;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: #fff;
  border: 2px solid #63AB45;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: #63AB45;
  transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ================= Mobile & Tablet Responsiveness ================= */
@media (max-width: 992px) {
  #hero-carousel .carousel-item {
    height: 75vh;
  }
  .carousel-caption h1 {
    font-size: 32px;
  }
  .carousel-caption .desc {
    font-size: 15px;
    max-width: 90%;
  }
  .btn-book {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #hero-carousel .carousel-item {
    height: 60vh;
  }
  .carousel-caption h1 {
    font-size: 26px;
  }
  .carousel-caption .desc {
    font-size: 14px;
  }
  .carousel-caption .tagline {
    font-size: 18px;
  }
  .btn-book {
    padding: 6px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #hero-carousel .carousel-item {
    height: 50vh;
  }
  .carousel-caption h1 {
    font-size: 22px;
  }
  .carousel-caption .desc {
    font-size: 12px;
  }
  .carousel-caption .tagline {
    font-size: 16px;
  }
  .btn-book {
    padding: 5px 14px;
    font-size: 12px;
  }
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }
}


/* About Section  */
.about-section {
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

.about-badge {
  background: url(../images/title-bg.svg);
  display: inline-block;
    padding: 8px 40px;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  margin-bottom: 3px;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f2f9ee;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #2b7a3d;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.about-image {
    height: auto; max-width: 100%; object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #63AB45;
    padding: 15px 12px;
   width: auto; max-width: 165px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.experience-badge h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .about-image {
        height: 360px;
    }

    .experience-badge {
        padding: 10px 14px;
        right: 10px;
        bottom: 10px;
    }

    .experience-badge h3 {
        font-size: 30px;
    }

    .experience-badge p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }

  .feature-box {
    padding: 14px;
  }
}

/* Popular Packages Section  */
.popular-packages {
    background: url(../images/bg2.jpg);
    background-size: cover;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}
.section-title span {
  color: #63AB45;
}
.section-subtitle {
    font-size: 17px;
    color: #555;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #ececec;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}
.package-img {
    position: relative;
}

.package-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3b30;
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

.package-info-row {
    display: flex;
    align-items: center;
    margin: 10px 0 20px;
    color: #666;
    font-size: 15px;
    gap: 8px;
}

.package-info-row i {
    color: #555;
}

.divider {
    margin: 0 5px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #777;
}

.price {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

/* Tour banner section  */
.tour-banner {
  background: url(../images/img3.jpg) no-repeat center/cover;
  padding: 70px 0;
  border-radius: 0 0 30px 30px;
}

.small-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.banner-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.banner-heading span {
  color: #ffe066;
}

.banner-desc {
  font-size: 17px;
  margin-top: 10px;
  opacity: 0.9;
}

.tour-banner img {
  height: 370px;
}



/* Top Destination section  */



.dest-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  transition: .3s;
}

.dest-img img {
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}




/* Benefit section  */
.benefit-section{
    background: url(../images/bg.jpg);
    background-size: cover;
}
.benefit-section .small-title {
  letter-spacing: 2px;
  font-weight: 600;
}

.benefit-section .main-title {
  font-size: 32px;
}

.benefit-box {
  background: #fff;
  border-radius: 14px;
  transition: 0.3s;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #63AB4520;
  color: #63AB45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: auto;
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/img10.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0,0,0,0.4); */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-box {
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 40px 60px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  display: inline-block;
}

.award-badge {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.award-badge i {
  font-size: 35px;
  margin-bottom: 10px;
}

.stars {
  font-size: 20px;
  margin-top: 5px;
  letter-spacing: 4px;
}

.sub-title {
  font-weight: 600;
  margin-top: 15px;
  font-size: 26px;
}

.main-title {
  font-size: 80px;
  font-weight: 800;
  margin: 10px 0;
  letter-spacing: 8px;
}

.heroline {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}



/* service section  */
.service-subtitle {
  font-size: 40px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}
.service-subtitle span{
  color: #63AB45;
}

.service-title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
}
.service-box .item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.service-box .item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #63AB45;
  margin: 0;
}

.service-box .item .service-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.service-box .item p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-radius: 25px;
}

.service-image {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  
}




/* Gallery Section  */


.gallery-section {
  background: #fafafa;
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-subtitle {
  font-size: 16px;
  color: #555;
}

.gallery-img-box {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.08);
}

/* Team section  */

.team-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #63AB45;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-desc {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
}

.team-card {
  background: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all .35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-img {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-img img {
  width: 100%;
  transition: .4s;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.team-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.team-social a {
  margin: 0 6px;
  font-size: 15px;
  color: #63AB45;
  background: #e4fbec;
  padding: 8px 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.team-social a:hover {
  background: #63AB45;
  color: #fff;
}


/* Testimonial section  */

#testimonials {
  background: #f8f9fa;
}

.testimonial-box {
  background: #e7ffef;
  border-radius: 15px;
}
.testimonial-box img{
  height: 70px;
  width: 70px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}
.rating-stars i {
    color: #63AB45;
    font-size: 18px;
    margin-right: 3px;
}

/* Blog Section  */

.blog-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #63AB45;
}

.blog-title {
  font-size: 38px;
  font-weight: 700;
}

.blog-desc {
  max-width: 600px;
  margin: auto;
  color: #555;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}
.blog-img {
  position: relative;
}

.blog-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #63AB45;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}


.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-size: 22px;
  font-weight: 700;
}

.blog-content p {
  color: #666;
  margin: 10px 0;
}

.blog-details img{
  height: 420px;
}

.read-more {
  font-weight: 600;
  color: #63AB45;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  letter-spacing: 1px;
}

/* footer banner section  */

.footer-banner {
  position: relative;
  background: url("../images/footer-banner.jpg") no-repeat center/cover;
  padding: 80px 0;
  background-attachment: fixed;
  border-radius: 0;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
}

.footer-banner-content {
  position: relative;
  z-index: 5;
  color: #050505;
}

.footer-banner-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-banner-text {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}

.footer-banner-btn {
  background: #00aebc;
  padding: 12px 28px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.footer-banner-btn:hover {
  background: #008fa0;
}

/* Footer Section */
.footer {
  background: #141414;
  color: #ccc;
}
.footer-logo img{
  height: 90px;
  width: 112px;
}
.footer .footer-title {
  color: #63AB45;
  font-weight: 600;
}
.footer-title {
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px; 
  height: 3px;       
  background: #63AB45;   
  border-radius: 2px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bbb;
}

.footer-social a {
  margin-right: 8px;
  color: #fff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #63AB45;
}

.footer-links,
.footer-opening,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 4px 0;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #63AB45;
}

.footer-opening li {
  color: #ccc;
  padding: 4px 0;
}

.footer-opening span {
  float: right;
  color: #fff;
}
.footer-opening i {
  margin-right: 8px;
  color: #63AB45;
}
.footer-contact li {
  padding: 6px 0;
  color: #ccc;
}

.footer-contact i {
  margin-right: 8px;
  color: #63AB45;
}

.footer-bottom {
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.footer-map iframe {
  display: block;
}



/* Breadcrumb section  */

.inner-banner {
  background: url('../images/img3.jpg') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.inner-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.45); */
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-breadcrumb {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 500;
}
.inner-breadcrumb span{
  color: #63AB45;
}
.inner-breadcrumb a {
    color: #63AB45 !important;
    text-decoration: none !important;
}


/* destination page  */

.destination-link {
  text-decoration: none;
  color: inherit;
}

.destination-box {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.destination-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.destination-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.destination-hover h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tour-badge {
  background: #6fbf3f;
  color: #fff;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  clip-path: polygon(
    10% 0%, 90% 0%, 100% 50%,
    90% 100%, 10% 100%, 0% 50%
  );
}

.destination-box:hover img {
  transform: scale(1.07);
}

.destination-box:hover .destination-hover {
  opacity: 1;
}

.destination-title {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  z-index: 2;
}

.destination-box:hover .destination-title {
  opacity: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .destination-box {
    height: 300px;
  }
  .destination-hover h3 {
    font-size: 26px;
  }
}


/* Recommended Package */

.recommended-package {
  background: #f9f9f9;
}

.recommended-package-slider {
  transition: transform 0.6s ease;
}


.img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.duration {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}

.location {
  position: absolute;
  top: 55px;
  left: 15px;
  background: #fff;
  color: #333;
  padding: 6px 12px;
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.location i {
  color: #6fbf3f;
}

.content {
  background: #fff;
  padding: 22px;
  border-radius: 0 0 20px 20px;
}

.content h4 {
  font-size: 20px;
  font-weight: 600;
}

.bottom h3 {
  color: #6fbf3f;
  font-weight: 700;
}

.bottom del {
  font-size: 16px;
  color: #999;
}

.book-btn {
  background: #6fbf3f;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
}

.slider-arrows button {
  border: 1px solid #6fbf3f;
  color: #6fbf3f;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}





/* destination details section  */


.destination-details p {
  color: #555;
  line-height: 1.7;
}

.info-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
}

.info-box li {
  padding: 6px 0;
  font-size: 16px;
}

.offer-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.offer-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.offer-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  max-width: 85%;
}

.offer-overlay h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.offer-badge {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.offer-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}
.details img{
  height: 300px;
  width: 250px;
}

/* Mobile */
@media (max-width: 767px) {
  .offer-box img {
    height: 260px;
  }
}



.destination-details ul li {
    font-size: 15px;
    margin-bottom: 6px;
}

.details-info h6 {
    font-size: 16px;
    color: #63AB45;
}
 .itinerary-box {
        background: #ffffff;
        border-radius: 10px;
        padding: 18px 20px;
        border-left: 4px solid #63AB45;
        box-shadow: 0px 4px 15px rgba(0,0,0,0.06);
        transition: 0.3s;
    }

    .itinerary-box:hover {
        transform: translateY(-3px);
        box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
    }

    .itinerary-day {
        font-size: 17px;
        font-weight: 700;
        color: #63AB45;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .itinerary-day i {
        font-size: 18px;
        color: #63AB45;
    }

    .itinerary-desc {
        margin: 0;
        font-size: 15px;
        color: #6c757d;
    }


    .nav-pills .nav-link {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
}
.nav-link {
  color: #28d428;
}
.nav-pills .nav-link.active {
  background-color: #63AB45;
}

/* Gallery */
.gallery-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-overlay i {
  font-size: 34px;
  color: #fff;
}

.gallery-box:hover img {
  transform: scale(1.08);
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
  .gallery-box img {
    height: 220px;
  }
}

/*VIDEO GALLERY SECTION */

.video-gallery {
  background: #ffffff;
}


.video-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  background: #000;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #63AB45;
  color: #ffffff;
  font-weight: 800;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(12, 175, 50, 0.7);
  animation: floatUp 3s ease-in-out infinite, glowPulse 2.5s ease-in-out infinite;
}

.scroll-top:hover {
  background-color: #fff;
  color: #269d27;
  box-shadow: 0 0 25px #28d428;
  transform: scale(1.1);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; 
  right: 25px;
  background-color: #37c572 !important;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
  transition: all 0.3s ease;
  animation: pulseCalls 2s infinite;
}

.whatsapp-float:hover {
  background-color: #fff;
  color: #28a745;
  box-shadow: 0 0 20px rgba(40, 167, 69, 1), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCalls {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}



/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #007bff !important;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(58, 68, 184, 0.8), 0 4px 15px rgba(45, 62, 190, 0.4);
  animation: pulseCall 2s infinite;
  transition: all 0.3s ease;
}

.call-float:hover {
  background-color: #fff;
  color: #2a28a7;
  box-shadow: 0 0 20px rgb(40, 49, 167), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCall {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 82, 202, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Hurry Up section  */

.deals-section{
  background: #f3fff3;
}
.deal-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.tall { height: 480px; }
.short { height: 225px; }

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-content {
  position: absolute;
  inset: 0;
  padding: 30px;
  z-index: 5;
}

.white { color: #fff; }
.black { color: #000; }

.highlight { color: #FFD037; font-weight: 700; }

.discount-circle {
  background: #63AB45;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.1;
}

.shape-bottom-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: #63AB45;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 60% 50%, 30% 60%, 0 50%);
  z-index: 1;
}

.shape-top-orange::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: #C87433;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 60% 50%, 30% 60%, 0 50%);
  z-index: 1;
}

.shape-left-green::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: #2D6A4F;
  clip-path: circle(70% at 30% 50%);
  z-index: 1;
}

.shape-top-yellow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #F4A631;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 80% 55%, 50% 70%, 20% 55%, 0 65%);
  z-index: 1;
}

@media (max-width: 768px) {
  .tall { height: 350px; }
  .short { height: 200px; }
  .deal-content { padding: 20px; }
}

/* counter section  */

.counter-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.counter-box .icon {
  width: 70px;
  height: 70px;
  background: #63AB45;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-box .icon i {
  color: #fff;
  font-size: 28px;
}

.counter-box h4 {
  margin: 0;
  font-size: 18px;
}

.counter-box h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

/* Why Choose */

.sub-title {
  color: #63AB45;
  font-size: 18px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  transition: 0.3s;
  border: 1px solid #eee;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
}

.icon-wrap {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #63AB45;
}

.bg-green { background: #e8f7e9; }
.bg-yellow { background: #fff4db; color: #f7a300 !important; }
.bg-orange { background: #ffece1; color: #ff8b4f !important; }

.why-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.why-card p {
  margin: 0;
  margin-top: 5px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .icon-wrap {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
  
  .why-card {
    padding: 20px;
  }

  .main-title {
    font-size: 32px;
  }
}


/* coupon card section  */

.dual-slider-section img {
    width: 100%;
    border-radius: 12px;
    height: 360px;
}

.left-slide-card {
    position: relative;
}

.left-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 10;
}

.left-slide-card img {
    filter: brightness(65%);
    border-radius: 12px;
}

/* RIGHT SLIDER */
.right-slide-card {
    background: #fff;
    border-radius: 12px;
    gap: 20px;
    align-items: center;
}

.right-img img {
    width: 260px;
    height: 360px;
    border-radius: 12px;
    transition: transform 0.5s ease;
}


/* Diagonal black overlay */
.right-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    transform: translate(-100%, 100%);
    transition: all 0.5s ease;
}

/* Hover animation */
.right-img:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.right-img:hover img {
    transform: scale(1.08);
}


.right-content ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.price span {
    font-size: 24px;
    color: green;
    font-weight: bold;
}

/* MOBILE RESPONSIVE */
@media(max-width: 767px) {
    .right-slide-card {
        flex-direction: column;
        text-align: center;
    }

    .right-img img {
        width: 100%;
    }

    .left-overlay {
        bottom: 10px;
        left: 10px;
    }
}


/* LEFT SIDE TEXT */
.hotspot-title {
    font-size: 26px;
    color: #1eb56f;
    font-weight: 600;
}

.main-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
}

.tourist-section ul li i {
    font-size: 22px;
    color: #1eb56f;
    margin-right: 8px;
}


.image-grid {
    height: 620px;
}

.img-style {
    border-radius: 22px;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    transition: transform .3s ease;
}

.img-style:hover {
    transform: scale(1.05);
}


.img1 {
    width: 50%;
    height: 62%;
    top: 0;
    left: 5%;
}

.img2 {
    width: 43%;
    height: 52%;
    top: 30px;
    right: 0;
}

.img3 {
    width: 48%;
    height: 37%;
    bottom: 0;
    left: 6%;
}

.img4 {
    width: 44%;
    height: 42%;
    bottom: 0px;
    right: 0%;
}


@media (max-width: 767px) {

    .main-heading {
        font-size: 32px;
    }

    .image-grid {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        position: relative;
    }

    .img-style {
        position: relative;
        width: 100% !important;
        height: 200px !important;
    }
}

/* Vacation Section  */

.vacation-section{
  background: #f7fff9;
}
.section-title {
  font-size: 35px;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
}

.vacation-card {
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.vacation-card:hover {
  transform: translateY(-8px);
}

.vacation-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.vac-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.vac-desc {
  color: #555;
  font-size: 15px;
  padding: 0 10px;
}

/* Service Banner  */

.service-banner {
    background-image: url('../images/triplabs-banner.jpg');
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}

.service-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* overlay */
    z-index: 1;
}

.service-banner .container {
    z-index: 2;
}

.service-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.service-banner-subtitle {
    font-size: 1.2rem;
    color: #f1f1f1;
    max-width: 700px;
    margin: 0 auto;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .service-banner-title {
        font-size: 2rem;
    }
    .service-banner-subtitle {
        font-size: 1rem;
    }
    .service-banner {
        height: 60vh;
    }
}

/*package details */

.image-showcase .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-img {
  height: 100%;
  min-height: 480px;
}

.icon-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  background: rgba(0,0,0,0.6);
  color: #ffc107;
  padding: 12px;
  border-radius: 50%;
}

.overlay-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-content span {
  font-size: 36px;
  color: #ffc107;
}

.overlay-content p {
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .big-img {
    min-height: 300px;
  }
}

/*tour details section */

.tour-detail-section {
  background: #fff;
}

.price .current {
  color: #6ab04c;
  font-size: 36px;
  font-weight: 700;
}

.price .old {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 10px;
}

.price small {
  font-size: 16px;
  color: #000;
}

.tour-meta {
  list-style: none;
  padding: 0;
  font-weight: 500;
}

.list-icon {
  list-style: none;
  padding: 0;
}

.list-icon li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 26px;
}

.list-icon.check li::before {
  content: "✔";
  color: #6ab04c;
  position: absolute;
  left: 0;
}

.list-icon.cross li::before {
  content: "✖";
  color: red;
  position: absolute;
  left: 0;
}

.booking-box {
  background: #f6f8ec;
  padding: 30px;
  border-radius: 12px;
}

.booking-box input,
.booking-box textarea {
  border-radius: 6px;
}
.itinerary-section .accordion-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-button {
  background: #fff;
  font-weight: 600;
  gap: 20px;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  box-shadow: none;
}


.day-box {
  background: #6ab04c;
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
}

.accordion-button::after {
  margin-left: auto;
}

.itinerary-list {
  list-style: none;
  padding-left: 0;
}

.itinerary-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.itinerary-list li::before {
  content: "✔";
  color: #6ab04c;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .accordion-button {
    flex-direction: column;
    align-items: flex-start;
  }

  .day-box {
    border-radius: 4px;
    margin-bottom: 8px;
  }
}


.inquiry-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.inquiry-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Green bottom shape */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #6ab04c;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  clip-path: ellipse(120% 100% at 50% 100%);
}

.call-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  color: #6ab04c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.call-text small {
  color: #fff;
  font-size: 14px;
}

.call-text h5 {
  color: #fff;
  margin: 0;
  font-weight: 700;
}

