@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #f6bb17;
  --black-color-primary: #2a2929;
  --black-color-secondary: #777474;
  --black-tertairy-color: #525252;
  --white-color-primary: #ffffff;
  --white-color-secondary: #fffafa;
}

/* === utility styles === */
.object-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ratio-video {
  aspect-ratio: 16/9;
}
.ratio-sqaure {
  aspect-ratio: 1/1;
}
.ratio-square {
  aspect-ratio: 1/1;
}
.rounded-full {
  border: 50%;
}
.text-xs {
  font-size: clamp(12px, 1vw + 8px, 16px);
}

.text-sm {
  font-size: clamp(14px, 1.2vw + 8px, 18px);
}

.text-md {
  font-size: clamp(16px, 1.5vw + 8px, 20px);
}

.text-lg {
  font-size: clamp(16px, 2vw + 8px, 24px);
}

.text-xl {
  font-size: clamp(28px, 4vw + 8px, 40px);
}

.text-2xl {
  font-size: clamp(32px, 5vw + 8px, 64px);
}

.line-80 {
  line-height: 80px;
}
.line-28 {
  line-height: 28px;
}
.line-48 {
  line-height: 48px;
}
.line-24 {
  line-height: 24px;
}
.primary-text {
  color: var(--primary-color);
}
.primary-white-text {
  color: var(--white-color-primary);
}
.secondary-white-text {
  color: var(--white-color-secondary);
}
.primary-black-text {
  color: var(--black-color-primary);
}
.secondary-black-text {
  color: var(--black-color-secondary);
}
.tertiary-black-text {
  color: var(--black-tertairy-color);
}
.list-none {
  list-style: none;
}
.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.font-medium {
  font-weight: 400;
}
.font-bold {
  font-weight: 500;
}
.text-d-none {
  text-decoration: none;
}
.primary-button {
  background-color: var(--primary-color);
  color: var(--black-color-primary);
  padding: 10px 20px;
  border-radius: 4px;
  outline: none;
  border: none;
}
.primary-button:hover {
  color: var(--black-color-primary);
}
.secondary-button {
  color: var(--black-color-primary);
  border: 1px solid var(--black-color-primary);
  padding: 10px 20px;
  border-radius: 4px;
}
.secondary-button:hover {
  color: var(--black-color-primary);
}
.h-screen {
  height: calc(100vh - 90px);
}
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-8 {
  -webkit-line-clamp: 8;
}
.line-clamp-10 {
  -webkit-line-clamp: 10;
}

@media  screen and (max-width:525px) {
  .line-clamp-8{
      -webkit-line-clamp: 3;
  }
  .line-clamp-10{
      -webkit-line-clamp: 3;
  }
}
.hvr:hover {
  color: var(--primary-color);
}
.w-fit {
  width: fit-content;
}
.text-justify {
  text-align: justify;
}
.element {
  overflow: auto; /* or scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Opera) */
.element::-webkit-scrollbar {
  display: none;
}
/* ===header ==== */
.header {
  width: 100%;
  background-color: var(--white-color-primary);
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 99;
}

.logo-container {
  width: 150px;
  height: 75px;
}

.nav-list {
  display: flex;
}
.nav-link {
  color: var(--black-color-primary);
  transition: all 0.3s ease-in;
  color: inherit;
}
.nav-link span {
  color: inherit;
}
.mountain-icon {
  opacity: 0;
  transition: all 0.3s ease-in;
}
.nav-list-item:hover .mountain-icon {
  opacity: 1;
}

.nav-list-item:hover .nav-link {
  color: var(--primary-color);
}

.menu-btn {
  display: none;
  background-color: var(--primary-color);
  padding: 5px 10px;
  outline: none;
  border: none;
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 90px;
  right: 0;
  max-width: 300px;
  width: 100%;
  background: var(--white-color-primary);
  height: 100svh;
  transition: all 0.3s ease-in;
}

.active-menu {
  transition: all 0.3s ease-in;
}
.active-link {
  color: var(--primary-color) !important;
  opacity: 1;
  width: fit-content;
}

@media screen and (max-width: 1224px) {
  .nav-list {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .active-menu {
    display: block;
  }
}

/* ==== hero section === */
.hero-content {
  max-width: 800px;
}
.search-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: none;
  border-radius: 8px;
  background-color: var(--white-color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: var(--black-color-primary);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-input::placeholder {
  color: var(--black-color-secondary);
  font-weight: 400;
}

.search-input:focus {
  box-shadow: 0 0 0 3px rgba(246, 187, 23, 0.4);
}

.search-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black-color-secondary);
  font-size: 18px;
  outline: none;
  border: none;
  background: transparent;
}

/* === package card === */
.package-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.package-image-container {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  position: relative;
}
.tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--white-color-primary);
  border-radius: 4px;
}
.pkg-img {
  transition: 0.3s ease-in;
}
.pkg-title {
  transition: all 0.3s ease-in;
  transform-origin: center;
}
.package-card:hover .pkg-title {
  color: var(--primary-color);
}
.package-card:hover .pkg-img {
  transform: scale(1.3);
}

.pkg-bottom {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3vw;
}
/* ==== about section === */
.about-section {
  max-width: 80%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.about-image-container {
  aspect-ratio: 3/3.5;
}
@media screen and (max-width: 525px) {
  .about-section {
    max-width: 100%;
  }
}
/* === activities section==== */
.activities-image-container1 {
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.activity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  transition: all 0.3s ease;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.activity-img {
  transition: all 0.3s ease;
  transform-origin: center;
}
.activities-image-container {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.activity-image-container:hover .activity-img {
  transform: scale(1.3);
}
.activity-image-container:hover .activity-overlay {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.activities-row {
  gap: 16px;
}

.activity-item {
  flex: 0 0 calc(20% - 12.8px);
  margin-bottom: 16px;
}
/* Small screens (sm) */
@media (max-width: 576px) {
  .activities-image-container1 {
    aspect-ratio: 16 / 9;
  }
}

/* Medium screens (md) */
@media (max-width: 768px) {
  .activities-image-container1 {
    aspect-ratio: 16 / 8;
  }
}

/* === static banner == */
.static-banner {
  aspect-ratio: 16/7;
}

/* === testimonial section === */
.testimonial-bg {
  background-color: #edf1f3;
  background-image: url("../asstes/images/banner-image/banner-mountain.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  background-blend-mode: multiply;
}

.testimonial-carousel-wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-card {
  background: var(--white-color-primary);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.user {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}

/* Owl Dots Styles */
.owl-theme .owl-dots {
  position: relative;
  margin-top: 25px;
  text-align: center;
  display: block !important;
}
.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #333;
  width: 30px;
  border-radius: 20px;
}

/* === blog section ===== */
.featured-blog-1 {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  background-color: var(--white-color-primary);
  transition: width 0.3s ease-in;
}
.featured-blog-1:hover .blog-overlay {
  width: 100%;
}
.featured-blog {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.featured-blog-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* === footer banner === */
.footer-banner {
  width: 100%;
  height: 500px;
  position: relative;
  /* height: fit-content !important; */
}
.footer-banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.footer-banner-content {
  max-width: 90%;
}
/* Small screens (sm) */
@media (max-width: 576px) {
  .footer-banner {
    height: 400px;
  }
}
/* == footer static banner === */
.footer-static-banner {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("../asstes/images/banner-image/footer-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.main-footer-section {
  background-color: #0d0d0d;
}
.footer-logo {
  /* width: 20vw; */
  max-width: 150px;
  max-height: 75px;
  height: auto;
}

#affiliation-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  border-radius: 4px;
  background-color: var(--white-color-primary);
}

#affiliation-carousel img {
  width: 100%;
  height: auto;
  max-width: 120px;
  border-radius: 12px;
  object-fit: contain;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  width: 35px;
  height: 35px;
  color: var(--white-color-primary) !important;
  font-size: 20px !important;
}

.owl-nav button:hover {
  background: #f1f1f1 !important;
}

.owl-dots {
  display: none;
}

/* === trekking page === */
.region-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.region-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  transition: all 0.3s ease;
}

/* ===== expediton page ==== */
.static-mounatin-icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.expediton-card1 {
  aspect-ratio: 4/3.1;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.expediton-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  transition: all 0.3s ease;
}
.expediton-icon {
  height: 50px;
  width: 80px;
}
.expediton-card {
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

@media screen and (max-width: 525px) {
  .expediton-card {
    aspect-ratio: 3/3.1;
  }
  .expediton-overlay {
    height: 50%;
  }
}
.expedition-bg {
  background-image: url("../asstes/images/banner-image/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* === activities == */
.activity-card1 {
  aspect-ratio: 16/6;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.activity-card2 {
  aspect-ratio: 3/3.1;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.activity-card3 {
  aspect-ratio: 3/1.5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

@media screen and (max-width: 535px) {
  .activity-card1 {
    aspect-ratio: 3/4;
  }
}

/* === tabs ===  */
/* == team page == */
.tabs-container {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  background-color: var(--white-color-primary);
  width: 100%;
  padding: 8px 0;
}
.sticky {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.tab:hover {
  color: var(--primary-color);
}
.tab span {
  color: inherit;
}
.active-tab {
  color: var(--primary-color);
  position: relative;
}
.active-tab::after {
  content: " ";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  height: 2px;
}
.team-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}
.scroll-top {
  scroll-margin-top: 120px;
}

/* === tab-pen=== */

.tabs-wrapper {
  padding: 10px;
}
/* === Tab Navigation (Buttons) === */
.tabs-nav {
  position: relative;
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.tabs-nav button {
  background: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  outline: none;
  color: var(--black-color-primary);
}

.tabs-nav button.active {
  color: var(--primary-color);
}
.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--primary-color);
  transition: left 0.3s ease, width 0.3s ease;
}
/* === Tab Panels (Content Areas) === */
.tabs-content .tab-content {
  display: none;
  padding: 10px;
}
.tabs-content .tab-content.active {
  display: block;
}
.tab__container {
  background-color: var(--white-color-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
/* === about us / company == */
.about-container {
  background-color: var(--white-color-primary);
}
.about-bg {
  background-image: url("../asstes/images/banner-image/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.counter-card {
  background-color: var(--white-color-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.row > .col-12:nth-child(2) .counter-card {
  background-color: var(--primary-color);
}
.we-card {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 1/1;
}
.we-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  transition: all 0.3s ease;
}

.mission-vision-container {
  background-color: var(--white-color-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

/* === blog page === */
.blog-image-1 {
  aspect-ratio: 3/2.55;
  overflow: hidden;
  border-radius: 4px;
}
.blog-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  background-color: var(--white-color-primary);
}
.blog-image {
  overflow: hidden;
  border-radius: 4px;
}

/* === tab blog === */
.tab-link {
  width: 100%;
  padding: 8px 10px;
  display: block;
  margin: 2px 0;
  border-radius: 4px;
  transition: all 0.3s ease-in;
}
.tab-link:hover {
  color: var(--black-color-primary);
  background-color: var(--primary-color);
}
.active-tab-link {
  background-color: var(--primary-color);
  color: var(--black-color-primary);
  font-weight: 500;
}
/* == pagination == */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #e0e0e0;
  background-color: white;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.pagination-btn:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
}

.pagination-btn.active {
  background-color: #f5b800;
  color: #000;
  border-color: #f5b800;
  font-weight: 600;
}

.pagination-btn.dots {
  border: none;
  background: none;
  cursor: default;
  font-weight: bold;
}

.pagination-btn.dots:hover {
  background: none;
}

.arrow {
  font-size: 20px;
}

/* === gallery image === */
.gallery-card {
  position: relative;
  aspect-ratio: 3/3.5;
}
.gallery-overlay {
  position: absolute;
  /* From https://css.glass */
  background: rgba(40, 34, 34, 0.49);
  width: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  bottom: 0;
}

/* === review page == */

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-grid {
  column-count: 3;
  column-gap: 24px;
}

@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .masonry-grid {
    column-count: 1;
  }
}

.review-card {
  background: var(--white-color-primary);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  break-inside: avoid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==contact page == */
.submit-btn {
  background-color: var(--primary-color);
  outline: none;
  border: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--black-color-primary);
}

/* === faqs page == */
/* Active accordion header background when expanded */

.accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
}

.title-underline {
  position: relative;
  width: fit-content;
}
.title-underline::after {
  content: " ";
  position: absolute;
  bottom: 0;
  transform: translateY(10px);
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: var(--primary-color);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checkmark::after {
  content: "✓";
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.checklist-text {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.crossmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.crossmark::after {
  content: "✕";
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.checklist-text {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.table-container {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.table-responsive {
  overflow-x: auto;
}
.table {
  margin-bottom: 0;
  white-space: nowrap;
}

/* === gallery -= */
.gallery-container {
  max-width: 100%;
  margin: 0 auto;
}

/* Main Display Area */
.main-display {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.main-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.image-overlay {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  padding: 15px 30px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.5s ease;
}

.main-image-wrapper:hover .image-overlay {
  display: flex;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
  left: 30px;
}

.nav-btn.next {
  right: 30px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  /* padding: 20px; */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.thumbnail-container {
  display: inline-flex;
  gap: 15px;
}

.thumbnail-item {
  position: relative;
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 3px solid transparent;
  margin-top: 5px;
}

.thumbnail-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.thumbnail-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

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

@media (max-width: 768px) {
  /* .main-display {
    height: 400px;
  } */

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

  .nav-btn.prev {
    left: 15px;
  }

  .nav-btn.next {
    right: 15px;
  }

  .image-overlay {
    font-size: 16px;
    padding: 10px 20px;
    bottom: 0;
  }

  .thumbnail-item {
    width: 150px;
    height: 110px;
  }
}

.modal-header {
  border-bottom: 2px solid var(--white-color-secondary);
  padding: 20px 30px;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color-primary);
}

.btn-close {
  background-color: var(--black-color-secondary);
  border-radius: 50%;
  color: var(--white-color-secondary) !important;
  opacity: 1;
  width: 30px;
  height: 30px;
}

.modal-body {
  padding: 30px;
}

.section-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-label {
  color: var(--black-color-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-label .text-danger {
  color: #dc3545;
}

.form-control,
.form-select {
  border: 1px solid var(--black-color-secondary);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check-input {
  margin-top: 0.15rem;
}

.form-check-label {
  color: #666;
  font-size: 14px;
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.booking-container {
  max-width: 80%;
}

@media screen and (max-width: 767px) {
  .booking-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 525px) {
  .booking-container {
    max-width: 100%;
  }
}

.training___card {
  background-color: #fcf7e0;
}

/* === page load ==== */
/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  position: relative;
}

.logo-wrapper {
  position: relative;
  width: 400px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(253, 185, 19, 0.3));
}

/* Animated background circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(253, 185, 19, 0.1) 0%,
    transparent 70%
  );
  animation: pulse-circle 3s ease-in-out infinite;
}

.bg-circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

/* Mountain icon animation */
.mountain-icon {
  position: relative;
  opacity: 0;
  animation: mountainAppear 0.8s ease-out 0.3s forwards;
}

/* Yellow triangles */
.triangle-outer {
  stroke: #fdb913;
  stroke-width: 8;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawTriangle 0.8s ease-out 0.5s forwards;
  filter: drop-shadow(0 0 8px rgba(253, 185, 19, 0.6));
}

.triangle-middle {
  stroke: #fdb913;
  stroke-width: 8;
  fill: none;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawTriangle 0.8s ease-out 0.8s forwards;
}

.triangle-inner {
  fill: #fdb913;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.3s forwards;
}

/* Black mountain */
.black-mountain {
  fill: #2d2d2d;
  opacity: 0;
  animation: slideDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

/* Text animations */
.alti-text {
  fill: #fdb913;
  opacity: 0;
  animation: fadeInSlide 0.6s ease-out 1.5s forwards;
}

.nepal-text {
  fill: #e0e0e0;
  opacity: 0;
  animation: fadeInSlide 0.6s ease-out 1.7s forwards;
}

.tagline {
  fill: #a0a0a0;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 2s forwards;
}

.line-left,
.line-right {
  stroke: #2d2d2d;
  stroke-width: 3;
  opacity: 0;
  animation: expandLine 0.5s ease-out 2.2s forwards;
}

/* Progress bar */
.progress-container {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 40px auto 20px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.5s forwards;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fdb913, #ffcd4d);
  border-radius: 10px;
  width: 0%;
  animation: fillProgress 2s ease-out 2.5s forwards;
  box-shadow: 0 0 10px rgba(253, 185, 19, 0.8);
}

.loading-text {
  color: #fdb913;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.5s forwards;
}

.loading-percentage {
  color: #a0a0a0;
  font-size: 24px;
  font-weight: 300;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.5s forwards;
}

@keyframes pulse-circle {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

@keyframes mountainAppear {
  to {
    opacity: 1;
  }
}

@keyframes drawTriangle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo-wrapper {
    width: 100%;
    height: 225px;
  }
}

/* == write review == */

  .review-form-card svg {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .review-form-card svg:hover {
    transform: scale(1.1);
  }
  .review-form-card .active-star {
    color: var(--primary-color);
  }

  .title-underline{
    position: relative;
    width: fit-content;
  }
  .title-underline::after {
    content: " ";
    position: absolute;
    bottom: 0;
    transform: translateY(10px);
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: var(--primary-color);
  }
  .title-underline-center {
    position: relative;
    width: fit-content;
    margin: 0 auto;
  }
  .title-underline-center::after {
    content: " ";
    position: absolute;
    bottom: 0;
    transform: translateY(10px);
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: var(--primary-color);
  }


  /* ==== navbar drop down ==== */
 .mega-drop-down-container {
    display: none;
    width: 100%;
    /* height: 500px; */
    height: fit-content;
    position: fixed;
    /* top: 88px; */
    left: 0;
    right: 0;
    transition: all 0.3s ease-in;
    background-color: var(--white-color-primary);
    /* background-color: green; */

    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;

}
  .drop-down-parent{
    position: relative;
  }
  .drop-down-parent:hover .mega-drop-down-container{
    display: block;
  }
  .nav-link1{
    background: gray !important;
    color: white !important;
  }
    .nav-pills .nav-link.active {
        background-color: #f6bb17 !important;
        color: #000 !important;
    }


    /* Optional: hover color */
    .nav-pills .nav-link:hover {
        background-color: #f6bb17 !important;
        color: #000 !important;
    }
    .global-relation-card{
      aspect-ratio: 1/1;
    }
    .svg-btn{
      transition: all 0.3s ease-in-out;
      animation: anim infinite linear 1s;

    }


    @keyframes anim {
      0%{
        transform: translateY(5px);
      }
      100%{
        transform: translateY(0px);
      }
    }
