/* =========================================
   1. VARIABLES & GLOBAL DEFAULTS
   ========================================= */
:root {
  --primary-color: #ffffff;
  --secondary-color: #D84524;
  --tertiary-color: #f5f5f5;
  --primary-font-color: #ffffff;
  --heading-font-color: #171717;
  --blue-font-color: #00278F;
  --logo-font: #00278f;
  --grey-bg: #f0f0f0;
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Arial", sans-serif;
  --featured-color: #285FF5;
  --border-bg: #525252;
}

.title-left {
  text-align: left;
  margin: 40px 0;
}

.title-left h1 {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 36px;
  /* base desktop size */
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px) {
  .title-left {
    margin: 30px 0;
  }

  .title-left h1 {
    font-size: 30px;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .title-left {
    margin: 24px 0;
  }

  .title-left h1 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .title-left {
    margin: 20px 0;
  }

  .title-left h1 {
    font-size: 22px;
  }
}

/* Small Mobile - 320px */
@media (max-width: 360px) {
  .title-left {
    margin: 16px 0;
  }

  .title-left h1 {
    font-size: 20px;
  }
}

.horizontal-orange-line {
  width: 100px;
  height: 4px;
  background-color: var(--secondary-color);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .horizontal-orange-line {
    width: 80px;
    height: 4px;
  }
}

@media (max-width: 480px) {
  .horizontal-orange-line {
    width: 60px;
    height: 4px;
  }
}

/* Base styles */
.view-all {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 12px 28px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  transition: all 0.3s ease;
}

/* Hover effect */
.view-all:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

/* Responsive - Tablets / Medium screens */
@media (max-width: 768px) {
  .view-all {
    padding: 10px 24px;
    font-size: 16px;
  }
}

/* Responsive - Mobile / Small screens */
@media (max-width: 480px) {
  .view-all {
    padding: 8px 20px;
    font-size: 14px;
    width: 90%;
    /* button fills most of the screen */
    max-width: 300px;
    /* optional limit */
  }
}



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  overflow-x: hidden;
  /* Prevents side scrolling on mobile */
}

/* Helper Classes */
.primary-blue {
  color: var(--primary-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

/* =========================================
   NAVBAR — FULLY RESPONSIVE
   ========================================= */

/* Prevent ANY horizontal overflow on the whole page */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  padding: 20px 80px;
  background: linear-gradient(to right,
      rgb(242, 178, 164) 0%,
      rgba(242, 178, 164, 0) 40%);
  transition: background 0.3s ease, padding 0.3s ease;
  box-sizing: border-box;
  /* padding doesn't cause overflow */
}

/* Logo */
.logo {
  width: 100px;
  height: auto;
  display: block;
}

/* ---- Desktop Menu ---- */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  padding: 8px 12px;
  color: #171717;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.nav-menu li a:hover {
  color: var(--secondary-color);
}

/* Button in Navbar */
.primary-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-btn:hover {
  transform: scale(1.04);
}

/* ---- Hamburger (hidden on desktop) ---- */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 420;
  padding: 4px;
  /* No margin-right — spacing handled by nav padding */
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  border-radius: 3px;
  background-color: #171717;
  transition: all 0.3s ease-in-out;
}

/* Bars → X when active */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Overlay ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 350;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* not clickable while hidden */
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
  /* clickable when open */
}


/* =========================================
   TABLET  (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  nav {
    padding: 18px 40px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu li a {
    font-size: 15px;
    padding: 6px 8px;
  }

  .primary-btn {
    font-size: 15px;
    padding: 8px 12px;
  }
}


/* =========================================
   MOBILE  (max 768px)
   ========================================= */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    /* SOLID background — makes hamburger always visible */
    background: rgb(242, 178, 164);
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Show overlay element */
  .nav-overlay {
    display: block;
  }

  /* Slide-in drawer — starts OFF screen to the RIGHT */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* hidden off-screen — THIS is what was causing the "right side long" */
    width: min(75vw, 300px);
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    padding: 80px 32px 40px;
    background: #fff8f6;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 380;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    /* Critical — the drawer must not add to page width */
    max-width: 100vw;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(242, 178, 164, 0.35);
  }

  .nav-menu li:last-child {
    border-bottom: none;
    margin-top: 16px;
  }

  .nav-menu li a {
    display: block;
    font-size: 18px;
    padding: 14px 4px;
    color: #171717;
    text-shadow: none;
    font-weight: 600;
  }

  .nav-menu li a:hover {
    color: var(--secondary-color, #e07a5f);
    padding-left: 10px;
    transition: padding-left 0.2s ease, color 0.2s ease;
  }

  .primary-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 17px;
    border-radius: 14px;
    text-align: center;
  }

  .logo {
    width: 80px;
  }
}


/* =========================================
   SMALL MOBILE  (max 400px)
   ========================================= */
@media (max-width: 400px) {
  nav {
    padding: 12px 16px;
  }

  .logo {
    width: 70px;
  }

  .nav-menu {
    width: 85vw;
    padding: 70px 24px 32px;
  }
}

/* =========================================
   BANNER
   ========================================= */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
  /* well below nav (400) */
}

.banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

/* All banner children kept below nav */
.banner-article,
.banner-carousel,
.banner-socials,
.banner-dots {
  z-index: 2;
  /* above banner bg image, far below nav */
}

.banner-article {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 592px;
  color: white;
}

.banner-article h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--primary-font);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.article-description {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.article-description img {
  width: 3px;
  height: 80px;
  margin-right: 12px;
  object-fit: cover;
}

.article-description p {
  font-size: 24px;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-btns {
  margin-top: 30px;
  display: flex;
  gap: 32px;
}

.btn-1 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  padding: 12px 24px;
  color: #03233A;
  cursor: pointer;
}

.btn-2 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 24px;
  cursor: pointer;
}

.banner-carousel {
  position: absolute;
  top: 64%;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 768px;
  overflow: hidden;
}

.banner-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
  align-items: flex-end;
}

.banner-carousel-track img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.88);
}

.banner-carousel-track img.active {
  transform: scale(1);
  opacity: 1;
}

.banner-socials {
  position: absolute;
  bottom: 40px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-socials img {
  width: 24px;
  cursor: pointer;
}

.banner-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 5px;
  background-color: var(--primary-color);
}


/* =========================================
   BANNER — Tablet (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .banner-article {
    left: 48px;
    max-width: 480px;
  }

  .banner-article h1 {
    font-size: 36px;
  }

  .article-description p {
    font-size: 18px;
  }

  .btn-1,
  .btn-2 {
    font-size: 18px;
    padding: 10px 20px;
  }

  .banner-carousel {
    width: 512px;
    top: 68%;
    left: 85%;
  }

  .banner-carousel-track img {
    width: 180px;
    height: 180px;
  }
}


/* =========================================
   BANNER — Mobile (max 768px)
   ========================================= */
@media (max-width: 768px) {
  .banner-article {
    left: 24px;
    right: 24px;
    max-width: 100%;
    top: 40%;
    justify-content: center;
  }

  .banner-article h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .article-description img {
    height: 60px;
    display: none;
  }

  .article-description p {
    font-size: 14px;
  }

  .banner-btns {
    gap: 16px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn-1,
  .btn-2 {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* Carousel hidden on mobile */
  .banner-carousel {
    display: none;
  }

  .banner-socials {
    bottom: 24px;
    left: 16px;
    gap: 12px;
  }

  .banner-socials img {
    width: 20px;
  }

  .banner-dots {
    bottom: 24px;
  }
}


/* =========================================
   BANNER — Small Mobile (max 480px)
   ========================================= */
@media (max-width: 480px) {
  .banner {
    min-height: 500px;
  }

  .banner-article {
    left: 16px;
    right: 16px;
    top: 38%;
    margin-top: 20px;
  }

  .banner-article h1 {
    font-size: 22px;
  }

  .article-description {
    align-items: flex-start;
  }

  .article-description img {
    height: 48px;
    margin-right: 8px;
    display: none;
  }

  .article-description p {
    font-size: 12px;
  }

  .banner-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-1,
  .btn-2 {
    font-size: 13px;
    padding: 8px 14px;
    width: fit-content;
  }

  .banner-socials {
    display: none;
  }

  .banner-dots {
    bottom: 16px;
  }
}

/* =========================================
   HERO SECTION (Internal Pages)
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Keep it below navbar (400) */
}

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

.hero-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content h1 {
  position: relative;
  /* Ensure it stays above the image */
  z-index: 2;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  top: -26px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 36px;
    padding: 0 20px;
  }
}

/* =========================================
   ABOUT US SECTION
   ========================================= */

.about-us {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../images/mountain-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-us-title,
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-us-title h1,
.title h1,
.other-activities-title h1 {
  font-size: 48px;
  font-weight: 600;
  font-family: var(--primary-font);
  margin: 0;
}

.about-us-article {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 72px;
}

/* =========================================
   ABOUT IMAGE STACK (dynamic div backgrounds)
   ========================================= */
.abt-imgs {
  position: relative;
  width: 434px;
  height: 393px;
  flex-shrink: 0;
  animation: float2 8s ease-in-out infinite;
}

.abt-imgs:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-20px, 20px);
  }
}

.abt-imgs-card {
  --abt-skew: -9deg;
  --abt-img-scale: 1.16;
  --abt-img-x: 50%;
  --abt-img-y: 50%;
  position: absolute;
  bottom: 0;
  border-radius: 28px;
  border: 2px solid rgba(123, 149, 170, 0.85);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7, 39, 84, 0.18);
  transform-origin: bottom left;
  transform: skewY(var(--abt-skew));
}

.abt-imgs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--abt-img-x) var(--abt-img-y);
  display: block;
  transform: skewY(calc(var(--abt-skew) * -1)) scale(var(--abt-img-scale));
  transform-origin: center;
}

.abt-imgs-card-1 {
  width: 154px;
  height: 192px;
  left: 8px;
  z-index: 1;
  --abt-img-scale: 1.2;
  filter: grayscale(12%) contrast(1.05);
}

.abt-imgs-card-2 {
  width: 210px;
  height: 316px;
  left: 106px;
  z-index: 2;
  --abt-img-scale: 1.16;
}

.abt-imgs-card-3 {
  width: 252px;
  height: 393px;
  left: 217px;
  z-index: 3;
  --abt-img-scale: 1.12;
}

/* =========================================
   TEXT SIDE
   ========================================= */
.about-us-paragraph {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 1.3;
  flex: 1 1 45%;
  max-width: 48%;
  min-width: 0;
}

.about-us-btn {
  align-self: flex-end;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  border: none;
  background-color: transparent;
  color: var(--secondary-color);
  cursor: pointer;
}


/* =========================================
   TABLET LANDSCAPE (max 1024px)
   Scale group to 75%: 520→390, 562→422
   ========================================= */
@media (max-width: 1024px) {

  .about-us-title h1,
  .title h1,
  .other-activities-title h1 {
    font-size: 36px;
  }

  .about-us-article {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
    align-items: center;
  }

  .abt-imgs {
    width: 312px;
    height: 337px;
    animation: float2-reduced 8s ease-in-out infinite;
    margin-left: -120px;
  }

  @keyframes float2-reduced {

    0%,
    100% {
      transform: translate(0, 0);
    }

    33% {
      transform: translate(-10px, 15px);
    }
  }

  .abt-imgs-card-1 {
    width: 132px;
    height: 164px;
    left: 0;
  }

  .abt-imgs-card-2 {
    width: 180px;
    height: 271px;
    left: 90px;
  }

  .abt-imgs-card-3 {
    width: 216px;
    height: 337px;
    left: 186px;
  }

  .about-us-paragraph {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.5;
  }

  .about-us-btn {
    align-self: center;
    font-size: 17px;
  }
}


/* =========================================
   TABLET PORTRAIT (max 900px)
   Stack layout. Scale group to 60%: 520→312, 562→337
   ========================================= */
@media (max-width: 900px) {

  .about-us-title h1,
  .title h1,
  .other-activities-title h1 {
    font-size: 36px;
  }

  .about-us-article {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
    align-items: center;
  }

  .abt-imgs {
    width: 312px;
    height: 337px;
    animation: float2-reduced 8s ease-in-out infinite;
    margin-left: -120px;
  }

  @keyframes float2-reduced {

    0%,
    100% {
      transform: translate(0, 0);
    }

    33% {
      transform: translate(-10px, 15px);
    }
  }

  .abt-imgs-card-1 {
    width: 132px;
    height: 164px;
    left: 0;
  }

  .abt-imgs-card-2 {
    width: 180px;
    height: 271px;
    left: 90px;
  }

  .abt-imgs-card-3 {
    width: 216px;
    height: 337px;
    left: 186px;
  }

  .about-us-paragraph {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.5;
  }

  .about-us-btn {
    align-self: center;
    font-size: 17px;
  }
}


/* =========================================
   MOBILE (max 480px)
   Scale group to 35%: 520→182, 562→197
   ========================================= */
@media (max-width: 480px) {

  .about-us-title h1,
  .title h1,
  .other-activities-title h1 {
    font-size: 26px;
    padding: 0 20px;
  }

  .about-us-article {
    gap: 24px;
    padding: 30px 20px;
    align-items: center;
  }

  .abt-imgs {
    width: 182px;
    height: 197px;
    animation: float2-mobile 8s ease-in-out infinite;
  }

  @keyframes float2-mobile {

    0%,
    100% {
      transform: translate(0, 0);
    }

    33% {
      transform: translate(0, 10px);
    }
  }

  .abt-imgs-card-1 {
    width: 78px;
    height: 96px;
    left: 0;
  }

  .abt-imgs-card-2 {
    width: 106px;
    height: 158px;
    left: 52px;
  }

  .abt-imgs-card-3 {
    width: 124px;
    height: 197px;
    left: 108px;
  }

  .about-us-paragraph {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-us-btn {
    font-size: 15px;
    margin-top: 12px;
  }
}


/* =========================================
   SMALL MOBILE (max 360px)
   Scale group to 28%: 520→146, 562→157
   ========================================= */
@media (max-width: 360px) {

  .about-us-title h1,
  .title h1,
  .other-activities-title h1 {
    font-size: 22px;
    padding: 0 12px;
  }

  .about-us-article {
    gap: 16px;
    padding: 20px 12px;
  }

  .abt-imgs {
    width: 146px;
    height: 157px;
  }

  .abt-imgs-card-1 {
    width: 62px;
    height: 77px;
    left: 0;
  }

  .abt-imgs-card-2 {
    width: 84px;
    height: 127px;
    left: 42px;
  }

  .abt-imgs-card-3 {
    width: 100px;
    height: 157px;
    left: 87px;
  }

  .about-us-paragraph {
    font-size: 14px;
  }

  .about-us-btn {
    font-size: 14px;
  }
}

/* =========================================
   1. BASE STYLES (Mobile First)
   These apply to all devices.
   ========================================= */

.why-choose-us {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
  /* Prevents horizontal scroll on mobile */
}

.about-us-title {
  text-align: center;
  margin-bottom: 20px;
}

/* Container for Image & Text */
.why-choose-img {
  display: flex;
  flex-direction: column;
  /* Stack vertically on mobile */
  align-items: center;
  position: relative;
  /* Creates context for absolute children */
  margin-top: 20px;
  width: 100%;
}

/* The Main Image */
.why-choose-img img.main-img {
  /* --- THE FIX IS HERE --- */
  position: relative;
  /* Necessary for z-index to work */
  z-index: 70;
  /* Places image above the ellipse */
  /* ----------------------- */
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0;
  border-radius: 12px;
}

/* The Ellipse - Hide on mobile */
.ellipse {
  display: none;
}

/* The Icons Container */
.wcu-icons {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 30px 20px;
  z-index: 100;
  /* Text is highest priority */
}

/* Individual Items (Reset margins for mobile) */
.wcu-1,
.wcu-2,
.wcu-3,
.wcu-4,
.wcu-5 {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 0;
  width: 100%;
}

/* Icons */
.wcu-icons img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

/* Text Content */
.wcu-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wcu-content span {
  font-size: 20px;
  font-weight: 600;
  color: #D84524;
  margin: 0;
}

.wcu-content p {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   2. DESKTOP STYLES (Your Original Design)
   Triggered ONLY on screens wider than 1200px
   ========================================= */
@media (min-width: 1200px) {

  .why-choose-us {
    padding-top: 120px;
    overflow: visible;
    /* Let the big circle overflow if needed */
  }

  .about-us-title {
    text-align: left;
    margin-left: 20px;
  }

  .why-choose-img {
    max-width: 600px;
    display: flex;
    justify-content: left;
    margin-top: 80px;
    display: block;
    /* Restore block behavior for absolute positioning */
  }

  .why-choose-img img.main-img {
    /* position: relative and z-index: 70 are inherited from base */
    margin-left: -80px;
    width: auto;
    max-width: none;
    border-radius: 0;
  }

  /* Restore the Ellipse */
  .ellipse {
    display: block;
    position: absolute;
    z-index: 60;
    /* Sits behind image (70) and text (100) */
    width: 1050px;
    height: 1002px;
    background-color: transparent;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    margin: 0;
    /* Your original position */
    top: 0;
  }

  /* Restore Absolute Container */
  .wcu-icons {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 70;
    gap: 40px 0;
    top: 0;
    left: 0;
    padding: 0;

  }

  /* RESTORE YOUR EXACT MARGINS (The "Curve") */
  .wcu-1 {
    margin: 0px 0px 0px 720px;
    align-items: center;
  }

  .wcu-2 {
    margin: 0px 0px 0px 900px;
    align-items: center;
  }

  .wcu-3 {
    margin: 0px 0px 0px 980px;
    align-items: center;
  }

  .wcu-4 {
    margin: 0px 0px 0px 1020px;
    align-items: center;
  }

  .wcu-5 {
    margin: 0px 0px 0px 1020px;
    align-items: center;
  }

  .wcu-content span {
    font-size: 24px;
  }

  .wcu-content p {
    font-size: 16px;
    padding-left: 24px;
  }

  /* Helper to replicate the indentation of the second line */
  .wcu-content p:nth-child(3) {
    padding-left: 32px;
  }

  .wcu-content p:nth-child(4) {
    padding-left: 48px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .wcu-icons {
    align-items: center;
  }

  .wcu-1,
  .wcu-2,
  .wcu-3,
  .wcu-4,
  .wcu-5 {
    justify-content: center;
    width: auto;
  }

  .wcu-content p {
    text-align: left;
    /* keep paragraph text left-aligned for readability */
  }
}

/*--------end of why choose us----------*/
/* =========================================
   EXPEDITION SECTION
   ========================================= */
.expedition {
  position: relative;
  background-image: url("../images/expedition.jpg");
  background-size: cover;
  z-index: 80;
  padding-bottom: clamp(0px, 8vw, 100px);
  overflow: hidden;
}

.title {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(30px, 4vw, 60px);
}

.title h1 {
  color: #000;
}

/* ── Wrapper ── */
.expedition-section-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

/* ── Section — locked at 887px, zoom scales it like an image ── */
.expedition-section {
  position: relative;
  width: 887px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  zoom: min(1, calc(100vw / 1478px));
}

/* ── Dotted path line ── */
.expedition-dots {
  position: relative;
  z-index: 1;
  width: 100%;
}

.expedition-dots img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─────────────────── CARD 1 ─────────────────── */
.expedition-img-1 {
  position: absolute;
  top: 5%;
  left: 70%;
  z-index: 20;
  width: 30%;
  box-sizing: border-box;
  rotate: -20deg;
}

.expedition-img-1-card {
  position: relative;
  margin-left: -140px;
  margin-top: -20px;
  z-index: 2;
}

.expedition-card-img-1 {
  position: absolute;
  z-index: 20;
  top: 60px;
  width: 65%;
  left: 52px;
}

.expedition-img-text-1 {
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 45%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ─────────────────── CARD 2 ─────────────────── */
.expedition-img-2 {
  position: absolute;
  top: 5%;
  left: 70%;
  z-index: 20;
  width: 30%;
  box-sizing: border-box;
  rotate: 5deg;
}

.expedition-img-2-card {
  position: relative;
  margin-left: -200px;
  margin-top: 400px;
  z-index: 2;
}

.expedition-card-img-2 {
  position: absolute;
  z-index: 20;
  top: 60px;
  width: 65%;
  left: 52px;
}

.expedition-img-text-2 {
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 40%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ─────────────────── CARD 3 ─────────────────── */
.expedition-img-3 {
  position: absolute;
  top: 5%;
  left: 70%;
  z-index: 20;
  width: 30%;
  box-sizing: border-box;
  rotate: 30deg;
}

.expedition-img-3-card {
  position: relative;
  margin-left: -500px;
  margin-top: 840px;
  z-index: 2;
}

.expedition-card-img-3 {
  position: absolute;
  z-index: 20;
  top: 60px;
  width: 65%;
  left: 52px;
}

.expedition-img-text-3 {
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 24%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ─────────────────── CAPTION ─────────────────── */
.expedition-caption {
  position: absolute;
  bottom: 0%;
  left: 30%;
  width: 100%;
  color: black;
  font-size: 24px;
  font-weight: 600;
  padding: 10px;
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  box-sizing: border-box;
  rotate: 20deg;
}

.expedition-img-1:hover .expedition-caption {
  animation: slideIn 1s ease forwards;
}

.expedition-img-1:not(:hover) .expedition-caption {
  animation: slideBack 1s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    transform: translateX(30%);
    opacity: 1;
  }
}

@keyframes slideBack {
  0% {
    transform: translateX(30%);
    opacity: 1;
  }

  80% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0;
  }
}

/* =========================================
   TREKKING PACKAGES
   ========================================= */

.trekking-packages {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.trekking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

/* ── invisible link wrapper, breaks no layout ── */
.trekking-card-link {
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc(50% - 20px);
  /* takes the flex sizing so article inside is 100% */
  box-sizing: border-box;
  display: block;
}

/* ── Card ── */
.trekking-card {
  width: 100%;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}

/* ── Image wrapper — card proportions live here ── */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 652 / 320;
  border-radius: 20px;
  overflow: hidden;
}

/* subtle dark gradient so text is always legible */
.image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 40%,
      rgba(0, 0, 0, 0.62) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.image-wrapper .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.trekking-card-link:hover .image {
  transform: scale(1.05);
}

/* ── Text overlay ── */
.card-info {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
}

.card-title {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.card-packages {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

/* ===============================
   TABLET → tighter gap
   =============================== */
@media (max-width: 992px) {
  .trekking-grid {
    gap: 20px;
  }

  .trekking-card-link {
    flex: 0 0 calc(50% - 10px);
  }
}

/* ===============================
   MOBILE → 1 per row
   =============================== */
@media (max-width: 600px) {
  .trekking-grid {
    gap: 16px;
  }

  .trekking-card-link {
    flex: 0 0 100%;
  }

  .card-info {
    bottom: 14px;
    left: 16px;
  }
}


/* =========================================
   7. RESPONSIVE MEDIA QUERIES
   (This makes it work on mobile)
   ========================================= */

/* Tablet & Small Laptop */
@media screen and (max-width: 1024px) {
  .banner-article {
    left: 40px;
  }

  .about-us-article {
    margin: 60px 40px;
  }

  .why-choose-us-content {
    padding-left: 40px;
  }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {

  /* --- BANNER --- */
  .banner-article {
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    top: 50%;
  }

  .banner-article h1 {
    font-size: 32px;
  }

  .article-description {
    justify-content: center;
    flex-direction: column;
    /* Stack line above text */
  }

  .article-description img {
    width: 50px;
    height: 3px;
    /* Horizontal line on mobile */
    margin: 0 0 10px 0;
  }

  .article-description p {
    font-size: 16px;
  }

  .banner-btns {
    justify-content: center;
    flex-direction: column;
    /* Stack buttons */
    gap: 15px;
  }

  .banner-socials {
    display: none;
    /* Hide floating icons on mobile */
  }

  /* --- SECTIONS --- */
  .about-us-title h1,
  .title h1 {
    font-size: 32px;
  }

  .about-us-article {
    flex-direction: column;
    margin: 40px 20px;
    gap: 30px;
  }

  .about-us-article img,
  .about-us-paragraph {
    max-width: 100%;
    width: 100%;
  }

  .about-us-btn {
    align-self: center;
  }

  /* --- EXPEDITION --- */
  .title {
    padding-top: 60px;
  }
}

.macbook-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  position: relative;
  background-color: #ffffff;
  margin: 0 auto;
}

.macbook-pro .frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  flex: 0 0 auto;
}

.macbook-pro .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -3.00px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 48px;
  letter-spacing: 0;
  line-height: normal;
}

.macbook-pro .vector {
  position: relative;
  width: 119px;
  height: 1px;
  margin-bottom: -1.00px;
}

.macbook-pro .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.macbook-pro .frame-2 {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping for responsive layout */
  align-items: center;
  gap: 48px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.macbook-pro .div-2 {
  display: flex;
  flex-direction: column;
  width: calc(50% - 24px);
  /* 2 columns with gap consideration */
  height: 320px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  background-color: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}

.macbook-pro .image-wrapper {
  display: flex;
  flex-direction: column;
  height: 400px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.macbook-pro .image {
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.macbook-pro .image:hover {
  transform: scale(1.05);
}

.macbook-pro .frame-3 {
  display: flex;
  flex-direction: column;
  width: 347px;
  height: 117px;
  align-items: flex-start;
  gap: 4px;
  padding: 32px;
  position: absolute;
  top: 200px;
  left: 0;
}

.macbook-pro .div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7.2px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.macbook-pro .text-wrapper-2 {
  margin: 0;
  position: relative;
  width: fit-content;
  margin-top: -0.60px;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

.macbook-pro .text-wrapper-3 {
  margin: 0;
  position: relative;
  width: fit-content;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.macbook-pro .div-2:hover .image {
  transform: scale(1.05);
}

/* ================= RESPONSIVE RULES ================= */

/* --- Tablet Adjustments (768px - 1024px) --- */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .macbook-pro {
    padding: 40px 30px;
  }

  .macbook-pro .text-wrapper {
    font-size: 40px;
  }

  .macbook-pro .frame-2 {
    gap: 30px;
    /* Reduced gap for tablets */
  }

  .macbook-pro .div-2 {
    width: calc(50% - 15px);
    /* Adjust for 30px gap (half on each side) */
    height: 280px;
    /* Slightly smaller height */
  }

  .macbook-pro .image-wrapper {
    height: 350px;
  }

  .macbook-pro .frame-3 {
    padding: 24px;
    top: 180px;
    max-width: 280px;
  }

  .macbook-pro .text-wrapper-2 {
    font-size: 20px;
  }

  .macbook-pro .text-wrapper-3 {
    font-size: 14px;
  }
}

/* --- Mobile Devices (Phones) -> Force 1x4 --- */
@media screen and (max-width: 768px) {
  .macbook-pro {
    padding: 40px 20px;
  }

  .macbook-pro .text-wrapper {
    font-size: 32px;
  }

  /* STACKING LOGIC FOR MOBILE */
  .macbook-pro .frame-2 {
    flex-direction: column;
    /* Stacks items vertically */
    gap: 30px;
  }

  .macbook-pro .div-2 {
    width: 100%;
    /* Forces 1 item per row */
    height: 280px;
  }

  .macbook-pro .image-wrapper {
    height: 300px;
  }

  .macbook-pro .frame-3 {
    padding: 20px;
    top: 180px;
  }

  .macbook-pro .text-wrapper-2 {
    font-size: 20px;
  }

  .macbook-pro .text-wrapper-3 {
    font-size: 14px;
  }
}

/*---------------*/
/* ── Section ── */
.other-activities {
  width: 100%;
  max-width: 1440px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* ── Grid ── */
.other-activities-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── Each pill card ── */
.other-activities-card {
  position: relative;
  border-radius: 300px;
  overflow: hidden;
  cursor: pointer;
  /* each card takes ~30% of the row — 3 fit, 4th wraps */
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  /* never squish below this */
  max-width: 420px;
  aspect-ratio: 9 / 16;
  transition: border-radius 0.6s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.other-activities-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* dark overlay for legibility */
.other-activities-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.other-activities-card:hover {
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ── Label ── */
.other-activities-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 54px);
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */

/* Large desktop (keeps original 3-col flex) */
@media (min-width: 1200px) {
  .other-activities-grid {
    gap: 48px;
  }
}

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .other-activities-grid {
    gap: 20px;
  }
}

/* Tablet portrait — 3 cols still fit but shorter cards */
@media (max-width: 768px) {
  .other-activities-grid {
    gap: 16px;
  }

  /* Switch to 16:9ish portrait pill for tablet */
  .other-activities-card {
    aspect-ratio: 3 / 5;
    border-radius: 200px;
  }

  .other-activities-card:hover {
    border-radius: 12px;
  }
}

/* Mobile — stack to a single column */
@media (max-width: 540px) {
  .other-activities-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .other-activities-card {
    width: min(340px, 85vw);
    max-width: none;
    flex: none;
    aspect-ratio: 3 / 4;
    border-radius: 180px;
  }

  .other-activities-card:hover {
    border-radius: 12px;
    transform: translateY(-4px);
  }

  .title {
    margin-bottom: 36px;
  }
}

/*--------END of OTHER ACTIVITIES -------*/
/* ==================== PACKAGES SECTION ==================== */
/* ==================== PACKAGES SECTION ==================== */

.other-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 50px;
  justify-items: center;
  align-items: start;
  margin: 0 70px;
}

.other-packages>a {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ==================== CARD ==================== */

.card {
  width: 100%;
  max-width: 380px;
  background: #f8f8f8;
  border-radius: 25px;
  padding: 15px;
  box-shadow: 0 0 0 1px #ddd;
  box-sizing: border-box;
}

/* ==================== IMAGE ==================== */

.card-image {
  border-radius: 20px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ==================== CONTENT OVER IMAGE ==================== */

.card-content {
  position: relative;
  background: transparent;
  margin-top: -45px;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.card-content a {
  text-decoration: none;
  color: white;
}

.card-content img {
  position: absolute;
  width: 100%;
  margin: 8px 0 0 -20px;
  z-index: 10;
}

/* ==================== BOOK BUTTON ==================== */

.book-btn {
  position: absolute;
  top: -16px;
  right: 8px;
  background: #E84C1A;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  z-index: 20;
  font-family: inherit;
  text-decoration: none;
}

/* ==================== UNION ICON ==================== */

.union-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  z-index: 15;
}

/* ==================== CARD DETAILS ==================== */

.card-details h2 {
  position: relative;
  z-index: 20;
  margin-top: -22px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ==================== DETAILS SECTION ==================== */

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
}

/* ==================== DETAIL ITEM ==================== */

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 30;
}

.detail-item .icon img {
  width: 20px;
  height: 20px;
  margin-top: -6px;
}

/* ==================== TEXT ==================== */

.detail-text small {
  display: block;
  font-size: 12px;
  color: #666;
}

.detail-text strong {
  display: block;
  /* removed margin-left, use block instead */
  font-size: 18px;
  font-weight: 600;
}

/* ==================== DIVIDER ==================== */

.divider {
  width: 2px;
  height: 40px;
  background: #E84C1A;
  flex-shrink: 0;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet - 2 cards per row */
@media (max-width: 1024px) {
  .other-packages {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 20px;
  }

  .card {
    max-width: 100%;
  }
}

/* 768px - 1 card per row, centered, comfortable size */
@media (max-width: 768px) {
  .other-packages {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 60px;
    /* side padding keeps card from being full-bleed */
    margin: 0;
  }

  .book-btn {
    right: 12px;
  }

  .card {
    max-width: 480px;
    /* cap width so it looks intentional */
    margin: 0 auto;
    /* center the single card */
  }
}

/* Mobile - 1 card per row, tighter margins */
@media (max-width: 600px) {
  .other-packages {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
    margin: 0;
  }

  .card {
    max-width: 100%;
  }

  .card-content {
    padding: 20px 15px;
  }
}

/* 320px - scale everything down to fit small screens */
@media (max-width: 360px) {
  .other-packages {
    gap: 14px;
    padding: 14px 10px;
  }

  .card {
    padding: 10px;
    border-radius: 18px;
  }

  .card-image {
    border-radius: 14px;
  }

  .card-image img {
    height: 170px;
  }

  .card-content {
    padding: 12px 10px;
    margin-top: -26px;
  }

  .card-details h2 {
    font-size: 15px;
    margin-top: -14px;
    margin-bottom: 5px;
  }

  .detail-text strong {
    font-size: 13px;
  }

  .detail-text small {
    font-size: 10px;
  }

  .detail-item {
    gap: 5px;
  }

  .detail-item .icon img {
    width: 15px;
    height: 15px;
  }

  .divider {
    height: 26px;
  }

  .book-btn {
    padding: 7px 11px;
    font-size: 11px;
    top: -10px;
    right: 14px;
    border-radius: 9px;
  }

  .union-icon {
    width: 28px;
    top: -10px;
    left: 10px;
  }
}

/*---------------------*/
.talk-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
  width: 100%;
  gap: 40px;
}

.talk-cards a {
  text-decoration: none;
  color: #000;
}

.talk-cards a {
  display: block;
}

.card-talk {
  background: white;
  width: 394px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
}

.image-container-talk {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.image-container-talk img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

.orange-border-talk {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 5px solid #D94B28;
  border-radius: 80%;
  border-left-color: transparent;
  transform: rotate(0deg);
}

.talk-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  margin: 0;
  padding: 2px;
}

.talk-img-wrapper img {
  padding: 0;
  margin: 0;
  border: 3px solid #D94B28;
}

.content-talk {
  padding: 20px 30px;
}

.title-talk {
  color: #D94B28;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.description-talk {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.button-group-talk {
  background: #D94B28;
  border: 2px solid white;
  border-radius: 30px;
  display: flex;
  margin: 0 110px;
  align-items: center;
  padding: 0 8px;
  z-index: 2;
  justify-content: center;
}

.divider-talk {
  width: 1px;
  height: 25px;
  background-color: white;
  margin: 0 15px;
}

.button-group-talk a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-decoration: none;
}

.button-group-talk i {
  color: white;
  font-size: 24px;
}

.card-base {
  width: 100%;
  margin-top: -40px;
}

.card-base img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-packages {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.featured-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 12px 28px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  text-decoration: none;
}

/*---responsive styles---*/

/* Large Tablets/Small Laptops (1025px - 1200px) */
@media (max-width: 1200px) {
  .talk-cards {
    gap: 35px;
    padding: 40px 30px;
  }

  .card-talk {
    width: 360px;
  }

  .button-group-talk {
    margin: 0 90px;
  }
}

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .talk-cards {
    gap: 30px;
    padding: 35px 40px;
    justify-content: center;
  }

  .card-talk {
    width: calc(50% - 15px);
    /* 2 cards per row */
    min-width: 320px;
    max-width: 380px;
    border-radius: 50px;
    padding-top: 35px;
  }

  .image-container-talk {
    width: 180px;
    height: 180px;
  }

  .content-talk {
    padding: 18px 25px;
  }

  .title-talk {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .description-talk {
    font-size: 14px;
    line-height: 1.4;
  }

  .button-group-talk {
    margin: 0 80px;
    padding: 0 6px;
  }

  .button-group-talk a {
    width: 45px;
    height: 45px;
  }

  .button-group-talk i {
    font-size: 22px;
  }

  .card-base {
    margin-top: -35px;
  }

  .featured-btn {
    padding: 10px 24px;
    font-size: 16px;
    margin-bottom: 60px;
  }
}

/* Small Tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .talk-cards {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 30px 30px;
  }

  .card-talk {
    width: 85%;
    max-width: 400px;
    border-radius: 50px;
  }

  .image-container-talk {
    width: 180px;
    height: 180px;
  }

  .content-talk {
    padding: 20px 28px;
  }

  .title-talk {
    font-size: 16px;
  }

  .description-talk {
    font-size: 15px;
  }

  .button-group-talk {
    margin: 0 auto;
    width: fit-content;
  }

  .card-base {
    margin-top: -35px;
  }

  .featured-btn {
    padding: 11px 26px;
    font-size: 17px;
    margin-bottom: 70px;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .talk-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 25px 15px;
  }

  .card-talk {
    width: 95%;
    max-width: 350px;
    border-radius: 40px;
    padding-top: 30px;
  }

  .image-container-talk {
    width: 140px;
    height: 140px;
    margin-bottom: 15px;
  }

  .content-talk {
    padding: 15px 20px;
  }

  .title-talk {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .description-talk {
    font-size: 13px;
    line-height: 1.4;
  }

  .button-group-talk {
    margin: 0 60px;
    padding: 0 6px;
  }

  .button-group-talk a {
    width: 42px;
    height: 42px;
  }

  .button-group-talk i {
    font-size: 20px;
  }

  .divider-talk {
    height: 20px;
    margin: 0 10px;
  }

  .card-base {
    margin-top: -30px;
  }

  .featured-btn {
    padding: 10px 22px;
    font-size: 16px;
    margin-bottom: 50px;
  }
}

/*--------------------*/




.testimonial {
  padding-bottom: 60px;
  background-image: url("../images/Group.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* =========================================
   TESTIMONIAL SLIDER
   ========================================= */

.slider {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* ── Each blob card wrapper ── */
.slider-1,
.slider-2,
.slider-3 {
  position: relative;
  display: inline-block;
}

.slider-1 img:first-child,
.slider-2 img:first-child,
.slider-3 img:first-child {
  display: block;
  width: 100%;
}

/* ── Shared content overlay ── */
.testimonial-content-1,
.testimonial-content-2,
.testimonial-content-3 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Poppins, sans-serif;
  /* KEY FIX: constrain height and hide overflow */
  width: 70%;
  max-height: 78%;
  /* never taller than the blob */
  overflow: hidden;
  /* clips overflow text */
}

.testimonial-content-2 {
  width: 84%;
}

/* ── Name ── */
.testimonial-content-1 h2,
.testimonial-content-3 h2 {
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 600;
  color: #525252;
  margin: 0;
}

.testimonial-content-2 h2 {
  font-size: clamp(14px, 1.8vw, 24px);
  font-weight: 600;
  color: #525252;
  margin: 0;
}

/* ── Country ── */
.testimonial-content-1 h3,
.testimonial-content-3 h3 {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
  color: #525252;
  margin: 0;
}

.testimonial-content-2 h3 {
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
  color: #525252;
  margin: 0;
}

/* ── Quote icon ── */
.testimonial-content-1 img,
.testimonial-content-3 img {
  width: clamp(14px, 1.6vw, 22px);
  height: clamp(14px, 1.6vw, 22px);
  margin: 4px 0;
}

.testimonial-content-2 img {
  width: clamp(18px, 2.4vw, 36px);
  height: clamp(18px, 2.4vw, 36px);
  margin: 4px 0;
}

/* ── Quote text — clamp lines ── */
.testimonial-text-1,
.testimonial-text {
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 500;
  color: #525252;
  margin: 0;
  line-height: 1.45;

  /* clamp to 5 lines then hide */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-content-2 .testimonial-text {
  font-size: clamp(10px, 1.1vw, 16px);
  -webkit-line-clamp: 6;
}

/* ── See more link ── */
.see-more {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 600;
  color: #e63e00;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  /* never clipped by overflow */
}

.see-more:hover {
  text-decoration: underline;
}

/* ── Card 3 left offset ── */
.testimonial-content-3 {
  left: 45%;
}

/* =========================================
   SLIDER TRACK & VIEWPORT
   ========================================= */
.slider-viewport {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

/* ── Nav buttons ── */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 24px;
  color: #000;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .slider-viewport {
    max-width: 100%;
  }

  .slider {
    gap: 0;
    padding: 20px 0;
    width: auto;
    justify-content: flex-start;
  }

  .slider-1,
  .slider-2,
  .slider-3,
  .slider-start,
  .slider-content-2 {
    width: 100vw !important;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slider-1 img:first-child,
  .slider-2 img:first-child,
  .slider-3 img:first-child {
    width: 90%;
    margin: 0 auto;
  }

  /* text fits mobile blob */
  .testimonial-content-1,
  .testimonial-content-2,
  .testimonial-content-3 {
    width: 62%;
    max-height: 74%;
  }

  .testimonial-content-1 h2,
  .testimonial-content-3 h2 {
    font-size: 24px;
  }

  .testimonial-content-1 h3,
  .testimonial-content-3 h3 {
    font-size: 18px;
  }

  .testimonial-content-2 h2 {
    font-size: 24px;
  }

  .testimonial-content-2 h3 {
    font-size: 18px;
  }

  .testimonial-text-1,
  .testimonial-text {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }

  .testimonial-content-2 .testimonial-text {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }

  .see-more {
    font-size: 14px;
    margin-top: 4px;
  }

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

@media (max-width: 480px) {

  .testimonial-content-1,
  .testimonial-content-2,
  .testimonial-content-3 {
    width: 58%;
    max-height: 70%;
  }

  .testimonial-text-1,
  .testimonial-text {
    -webkit-line-clamp: 3;
    font-size: 12px;
  }

  .testimonial-content-2 .testimonial-text {
    -webkit-line-clamp: 4;
    font-size: 14px;
  }
}

/*------*/
/*---Latest blog---*/

.latest-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 80px;
}

.blog {
  display: flex;
  flex-direction: row;
  margin: 100%;
}

.blog-card {
  gap: 16px;
  flex: 1;
}

.blog-section {
  padding: 0px 80px;
  margin: 0 auto 40px auto;
  max-width: 1400px;
  /* Add this line */
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}

.blog-container a {
  text-decoration: none;
}

/* ========== FEATURED BLOG (LEFT) ========== */
.featured-blog {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

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

.featured-blog:hover .featured-image img {
  transform: scale(1.05);
}

.featured-content {
  padding: 12px 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.blog-category {
  color: #2e7d32;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
}

.featured-title {
  margin: 12px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.featured-description p {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  margin: 0;
}

/* ========== BLOG LIST (RIGHT) ========== */
.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-card {
  overflow: hidden;
  display: flex;
  padding: 14px 16px;
  cursor: pointer;
  align-items: center;
  border-bottom: .5px solid #999;
}

.blog-card-image {
  flex-shrink: 0;
  width: 127px;
  height: 129px;
  border-radius: 20px;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.blog-card-date {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 4px 0;
}

.blog-card-category {
  color: #2e7d32;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .blog-section {
    padding: 0px 40px;
    margin: 0 auto 35px auto;
  }

  .blog-container {
    gap: 35px;
  }

  .featured-image {
    height: 280px;
  }

  .featured-title {
    font-size: 18px;
    margin: 10px 0;
  }

  .featured-description {
    font-size: 15px;
  }

  .blog-card {
    padding: 20px 12px;
  }

  .blog-card-image {
    width: 110px;
    height: 110px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-date {
    font-size: 13px;
  }

  .blog-category {
    font-size: 12px;
    padding: 3px 10px;
  }

  .blog-card-date {
    font-size: 12px;
  }

  .blog-card-category {
    font-size: 11px;
  }
}

/* Small Tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .blog-section {
    padding: 0px 0px;
    margin: 0 auto 30px auto;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-image {
    height: 280px;
  }

  .featured-content {
    padding: 12px 0px;
  }

  .featured-title {
    font-size: 19px;
    margin: 10px 0;
  }

  .featured-description {
    font-size: 15px;
  }

  .blog-list {
    gap: 0;
  }

  .blog-card {
    padding: 16px 12px;
  }

  .blog-card-image {
    width: 120px;
    height: 120px;
  }

  .blog-card-title {
    font-size: 16px;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .latest-blog {
    margin: 20px 30px;
  }

  .blog-section {
    padding: 0px 20px;
    margin: 0 auto 25px auto;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .featured-image {
    height: 220px;
    border-radius: 16px;
  }

  .featured-content {
    padding: 10px 0px;
  }

  .featured-title {
    font-size: 17px;
    margin: 8px 0;
  }

  .featured-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .blog-meta {
    gap: 8px;
  }

  .blog-date {
    font-size: 12px;
  }

  .blog-category {
    font-size: 11px;
    padding: 3px 8px;
  }

  .blog-list {
    gap: 0;
  }

  .blog-card {
    padding: 14px 0px;
    gap: 12px;
  }

  .blog-card-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }

  .blog-card-content {
    gap: 6px;
  }

  .blog-card-date {
    font-size: 11px;
  }

  .blog-card-title {
    font-size: 15px;
    line-height: 1.3;
    margin: 2px 0;
  }

  .blog-card-category {
    font-size: 10px;
  }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
  .blog-section {
    padding: 0px 0px;
    margin: 0 auto 20px auto;
  }

  .blog-container {
    gap: 20px;
  }

  .featured-image {
    height: 200px;
  }

  .featured-title {
    font-size: 16px;
    margin: 8px 0;
  }

  .featured-description {
    font-size: 13px;
  }

  .blog-card {
    padding: 12px 0px;
    gap: 10px;
  }

  .blog-card-image {
    width: 90px;
    height: 90px;
    border-radius: 14px;
  }

  .blog-card-title {
    font-size: 14px;
  }

  .blog-date {
    font-size: 11px;
  }

  .blog-category {
    font-size: 10px;
    padding: 2px 6px;
  }

  .blog-card-date {
    font-size: 10px;
  }

  .blog-card-category {
    font-size: 9px;
  }
}

/* ========== RESPONSIVE DESIGN ========== */



/*---Latest blog styles end---*/

/*---Footer---*/
/* Base styles (Laptop/Desktop */
.footer {
  position: relative;
  margin-top: 140px;
}

.footer-1 {
  position: absolute;
  width: 100%;
  height: 267px;
  z-index: 2;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1512 267" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M568 47.6691C1015.2 -38.6643 1383.67 11.6969 1512 47.6691V267H0V47.6691C21.5 76.5 120.8 134.002 568 47.6691Z" fill="%231A2B3C"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -120px;
}

.affiliation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 160px;
  margin-top: 40px;
}

.affiliation-logos {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}

.affiliation-bg {
  padding: 2px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}

.affiliation-logos img {
  width: 55px;
  height: 55px;
  margin: 0 10px;
  object-fit: contain;
}

.affiliation h2 {
  color: #fff;
  margin: 0px 236px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}

.footer-2 {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1513 399" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1512.5 23.1274C943.234 192.169 247.231 -75.8376 0.5 23.1274V397.966H1512.5V23.1274Z" fill="%23121212" stroke="%23121212"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 30;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 3;
  margin: 0px 80px;
  padding-top: 80px;
  position: relative;
}

.footer-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  background-color: #fff;
  border-radius: 8px;
  max-width: 120px;
  padding: 10px;
}

.footer-details ul {
  list-style: none;
  padding: 0;
}

.footer-details ul li {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 8px;
  align-items: center;
}

.footer-details ul li img {
  width: 16px;
  height: 16px;
}

.footer-details ul li span {
  color: #fff;
  font-size: 16px;
}

.social-media-icons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.social-media-icons li {
  list-style: none;
}

.social-media-icons li a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-media-icons li a:hover {
  transform: translateY(-3px);
}

.social-media-icons li a img {
  width: 40px;
  height: 40px;
  display: block;
}

.footer-links {
  color: #fff;
}

.footer-links h2 {
  text-decoration: underline;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  color: #fff;
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  list-style: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-red);
}

/* Footer Responsive Styles */
/* Tablet */
@media (max-width: 1024px) {
  .affiliation {
    margin-right: 80px;
  }

  .affiliation h2 {
    margin: 0px 120px 10px 0;
  }

  .footer-content {
    margin: 0px 40px;
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .affiliation-logos img {
    width: 45px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    margin-top: 0px;
  }

  .footer-1 {
    height: auto;
    min-height: 200px;
    margin-top: 48px;
    margin-bottom: 0;
    display: block;
  }

  .footer-1 svg {
    display: block;
    width: 100%;
    height: auto;
  }

  .footer-2 {
    min-height: auto;
    padding-bottom: 30px;
    margin-top: 0;
    display: block;
  }

  .footer-2 svg {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -2px;
    /* Remove any gap between SVGs */
  }

  .affiliation {
    align-items: center;
    margin-right: 0;
    margin-top: 30px;
    padding: 0 20px;
  }

  .affiliation h2 {
    margin: 0 0 15px 0;
    font-size: 14px;
    text-align: center;
  }

  .affiliation-logos {
    flex-wrap: wrap;
    gap: 12px;
  }

  .affiliation-logos img {
    width: 40px;
    margin: 0 5px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-details {
    align-items: center;
    width: 100%;
    padding-top: 160px;
  }

  .footer-details ul li {
    justify-content: flex-start;
  }

  .footer-details ul li span {
    font-size: 14px;
  }

  .footer-links {
    width: 100%;
    text-align: center;
  }

  .footer-links h2 {
    font-size: 16px;
  }

  .footer-links ul {
    text-align: center;
  }

  .social-media-icons {
    justify-content: center;
  }

  .social-media-icons li a img {
    width: 35px;
    height: 35px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-1 {
    min-height: 180px;
    margin-top: 48px;
    margin-bottom: 0;
  }

  .footer-1 svg {
    display: block;
    margin-bottom: -1px;
  }

  .footer-2 {
    margin-top: 0;
  }

  .footer-2 svg {
    display: block;
    margin-top: -3px;
    /* Ensure no gap on small screens */
  }

  .affiliation {
    margin-top: 20px;
  }

  .affiliation h2 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .affiliation-logos {
    gap: 8px;
  }

  .affiliation-logos img {
    width: 35px;
    margin: 0 3px;
  }

  .affiliation-bg {
    padding: 1px;
  }

  .footer-content {
    gap: 30px;
    margin: 0 15px;
  }

  .footer-logo {
    max-width: 100px;
  }

  .footer-details ul li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-details ul li span {
    font-size: 12px;
  }

  .footer-links h2 {
    font-size: 14px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .social-media-icons {
    gap: 10px;
  }

  .social-media-icons li a img {
    width: 30px;
    height: 30px;
  }
}

/*---Footer styles end---*/


/*-----------page about us styles-----------*/

.secondary-page {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.secondary-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%;
  background-image: url('./assets/images/about-us-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0,
      100% 65%,
      95% 62%, 90% 60%, 85% 58.5%, 80% 57.5%, 75% 56.5%,
      70% 55.8%, 65% 55%, 60% 54.5%, 55% 54%, 50% 53.5%,
      45% 54%, 40% 54.5%, 35% 55%, 30% 55.8%, 25% 56.5%,
      20% 57.5%, 15% 58.5%, 10% 60%, 5% 62%,
      0 65%);
  z-index: 0;
}

.secondary-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.secondary-page h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-top: 100px;
}

/* Responsive Styles for About Us Page */

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0,
      100% 100%,
      95% 97%, 90% 95%, 85% 93.5%, 80% 92.5%, 75% 91.5%,
      70% 90.8%, 65% 90%, 60% 89.5%, 55% 89%, 50% 88.5%,
      45% 89%, 40% 89.5%, 35% 90%, 30% 90.8%, 25% 91.5%,
      20% 92.5%, 15% 93.5%, 10% 95%, 5% 97%,
      0 100%);
}


.hero img {
  width: 100%;
  z-index: 2;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.hero-content {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: var(--primary-font);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

/* Photo Gallery */
.photo-gallery {
  max-width: 1020px;
  margin: -190px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  animation: fadeIn 1.2s ease-out 0.3s both;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gallery-item-1 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  width: 240px;
  height: 200px;
}

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

.gallery-item-2 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  background: linear-gradient(135deg, #448DDC 0%, #764ba2 100%);
  width: 240px;
  height: 160px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Stats Section */
.abt-stats-section {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  animation: slideInUp 1s ease-out 0.5s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-stat-card {
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #448DDC, #6DD5FA, #E1F7FF);
}

.abt-stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  transition: transform 0.6s ease;
}

.abt-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.abt-stat-card:hover::before {
  transform: translate(-20%, -20%);
}

.abt-stat-value {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  color: #0056B3;
}

.abt-stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
  position: relative;
  color: #03233A;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 60px;
  animation: fadeIn 1.5s ease-out 0.7s both;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
  max-width: 1352px;
  margin: 0 auto 0px;
  padding: 0 20px;
}

.content-text {
  font-size: 24px;
  color: #03233A;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.8s both;
  font-family: poppins, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.about-content-text {
  font-size: 24px;
  color: #03233A;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.8s both;
  font-family: poppins, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.highlight-text {
  font-weight: 500;
  color: #D84524;
  font-size: 24px;
}

/* Message Section */
.message-section {
  max-width: 1352px;
  margin: 0px auto;
  padding: 0px 30px;
  animation: scaleIn 0.8s ease-out 1s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.message-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
  position: relative;
}

.message-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--light-blue));
  border-radius: 2px;
}

.message-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: start;
}

.founder-image {
  object-fit: cover;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.founder-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.message-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #03233A;
  font-style: italic;
  position: relative;
  padding: 16px 0px;
  font-family: poppins, sans-serif;
}

.founder-info {
  text-align: left;
  margin-left: -130px;
}

.founder-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.founder-title {
  color: #D84524;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Team Section */
.team {
  background: url(../images/mountain-bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.team-section {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 16px 20px;
}

.section-title {
  font-family: 'Poppins', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  position: relative;
  animation: fadeIn 1s ease-out;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--light-blue));
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.team-member {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  animation: fadeInUp 0.8s ease-out both;
}

.team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member-image {
  width: 261px;
  height: 261px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 5px solid var(--light-blue);
  transition: border-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
}

.team-member:hover .team-member-image {
  border-color: var(--primary-red);
  transform: scale(1.05);
}

.member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.member-role {
  color: var(--primary-red);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.member-subtitle {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Legal Documents Section */
.legal-section {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 20px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.document-card {
  border-radius: 20px;
}


.document-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.document-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-title {
  padding: 25px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 42px;
  }

  .photo-gallery {
    margin: -350px auto 60px;
    max-width: 900px;
  }

  .gallery-item-1,
  .gallery-item-2 {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .content-section,
  .message-section {
    max-width: 1100px;
  }

  .content-text,
  .about-content-text,
  .message-text {
    font-size: 22px;
    margin-top: 0px;
  }

  .highlight-text {
    font-size: 22px;
  }

  .team-member-image {
    width: 220px;
    height: 220px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: 300px;
    height: 30vh;
    clip-path: polygon(0 0, 100% 0,
        100% 100%,
        90% 97%, 80% 95%, 70% 94%, 60% 93.5%, 50% 93%,
        40% 93.5%, 30% 94%, 20% 95%, 10% 97%,
        0 100%);
  }

  .hero h1 {
    font-size: 36px;
    margin-top: 30px;
  }

  .photo-gallery {
    margin: -240px auto 50px;
    max-width: 700px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item-1 {
    height: 180px;
  }

  .gallery-item-2 {
    height: 140px;
  }

  .abt-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
  }

  .abt-stat-card {
    padding: 25px 20px;
  }

  .abt-stat-value {
    font-size: 28px;
  }

  .content-text,
  .about-content-text,
  .message-text {
    margin: 30px 0;
    font-size: 20px;
  }

  .highlight-text {
    font-size: 20px;
  }

  .message-content {
    gap: 30px;
  }

  .founder-info {
    margin-left: -100px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .team-member-image {
    width: 200px;
    height: 200px;
  }

  .legal-section {
    margin-bottom: 80px;
  }

  .document-image {
    height: 350px;
  }

  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile Landscape and Small Tablets (600px - 768px) */
@media (max-width: 768px) {
  .hero {
    min-height: 400px;
    height: 45vh;
    clip-path: polygon(0 0, 100% 0,
        100% 100%,
        90% 97%, 80% 95%, 70% 94%, 60% 93.5%, 50% 93%,
        40% 93.5%, 30% 94%, 20% 95%, 10% 97%,
        0 100%);
  }


  .hero::after {
    height: 80px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .photo-gallery {
    margin: -200px auto 40px;
    max-width: 600px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-item-1 {
    height: 160px;
  }

  .gallery-item-2 {
    height: 130px;
  }

  .abt-stats-section {
    margin: 30px auto 60px;
  }

  .abt-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .abt-stat-card {
    padding: 25px 20px;
  }

  .abt-stat-value {
    font-size: 26px;
  }

  .abt-stat-label {
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 15px;
    margin: 30px 0 50px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .content-section {
    padding: 0 15px;
  }

  .content-text {
    font-size: 18px;
    text-align: left;
    margin-top: 0px;
  }

  .about-content-text {
    font-size: 18px;
    text-align: left;
    margin-top: 0px;
  }

  .highlight-text {
    font-size: 18px;
  }

  .message-section {
    padding: 0 15px;
  }

  .message-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .message-content {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .founder-image {
    max-width: 200px;
  }

  .message-text {
    font-size: 18px;
    padding: 10px 0;
  }

  .founder-info {
    margin-left: 0;
    text-align: center;
  }

  .founder-name {
    font-size: 22px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .team-section {
    margin: 40px auto 0;
    padding: 16px 15px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .team-member {
    padding: 20px;
  }

  .team-member-image {
    width: 180px;
    height: 180px;
  }

  .member-name {
    font-size: 1.2rem;
  }

  .legal-section {
    margin-bottom: 60px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .document-image {
    height: 300px;
  }

  .document-title {
    font-size: 20px;
    padding: 20px;
  }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 600px) {
  .hero {
    min-height: 350px;
    height: 40vh;
  }

  .hero h1 {
    font-size: 28px;
    margin-top: -60px;
  }

  .photo-gallery {
    margin: -220px auto 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item-1 {
    height: 140px;
  }

  .gallery-item-2 {
    height: 120px;
  }

  .content-text,
  .about-content-text {
    margin: 30px 0;
    font-size: 16px;
  }

  .highlight-text {
    font-size: 16px;
  }

  .message-text {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-member-image {
    width: 160px;
    height: 160px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0,
        100% 100%,
        90% 97%, 80% 95%, 70% 94%, 60% 93.5%, 50% 93%,
        40% 93.5%, 30% 94%, 20% 95%, 10% 97%,
        0 100%);
  }

  .hero::after {
    height: 60px;
  }

  .hero h1 {
    font-size: 24px;
    margin-top: -40px;
    letter-spacing: 0.5px;
  }

  .photo-gallery {
    margin: -140px auto 25px;
    padding: 0 15px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-item-1 {
    height: 120px;
  }

  .gallery-item-2 {
    height: 100px;
  }

  .abt-stats-section {
    margin: 25px auto 50px;
  }

  .abt-stat-card {
    padding: 20px 15px;
  }

  .abt-stat-value {
    font-size: 24px;
  }

  .abt-stat-label {
    font-size: 0.85rem;
  }

  .social-icons {
    gap: 12px;
    margin: 25px 0 40px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .content-section,
  .message-section {
    padding: 0 15px;
  }

  .content-text {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .about-content-text {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 20px;
  }

  .highlight-text {
    font-size: 15px;
  }

  .message-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .message-content {
    gap: 20px;
  }

  .founder-image {
    max-width: 160px;
  }

  .message-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4;
  }

  .founder-name {
    font-size: 20px;
  }

  .founder-title {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .team-section {
    margin: 30px auto 0;
  }

  .team-member {
    padding: 15px;
  }

  .team-member-image {
    width: 140px;
    height: 140px;
    border: 3px solid var(--light-blue);
  }

  .member-name {
    font-size: 1.1rem;
  }

  .member-role,
  .member-subtitle {
    font-size: 0.85rem;
  }

  .legal-section {
    margin-bottom: 50px;
  }

  .documents-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .document-image {
    height: 360px;
  }

  .document-title {
    font-size: 18px;
    padding: 15px;
  }
}

/* Extra Small Mobile (< 320px) */
@media (max-width: 320px) {
  .hero {
    min-height: 250px;
  }

  .hero h1 {
    font-size: 20px;
    margin-top: -10px;
  }

  .photo-gallery {
    margin: -100px auto 20px;
  }

  .gallery-item-1 {
    height: 100px;
  }

  .gallery-item-2 {
    height: 90px;
  }

  .content-text,
  .about-content-text .message-text,
  .highlight-text {
    font-size: 14px;
    margin-top: 1px;
  }

  .team-member-image {
    width: 120px;
    height: 120px;
  }
}


/*-------activities--------*/

.hero-activities {
  position: relative;
  height: 60vh;
  min-height: 600px;
  background-image: url("../images/activities.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0,
      100% 65%,
      95% 62%, 90% 60%, 85% 58.5%, 80% 57.5%, 75% 56.5%,
      70% 55.8%, 65% 55%, 60% 54.5%, 55% 54%, 50% 53.5%,
      45% 54%, 40% 54.5%, 35% 55%, 30% 55.8%, 25% 56.5%,
      20% 57.5%, 15% 58.5%, 10% 60%, 5% 62%,
      0 65%);
  z-index: 0;
}

.hero-activities::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.hero-activities-content {
  text-align: center;
  color: white;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-activities h1 {
  font-family: var(--primary-font);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-top: -180px;
}


/*===Destination Page=====*/
/*===Destination Page=====*/

.destination-bg {
  position: relative;
  height: 60vh;
  min-height: 600px;
  background-image: url("../images/destination/destination.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0,
      100% 65%,
      95% 62%, 90% 60%, 85% 58.5%, 80% 57.5%, 75% 56.5%,
      70% 55.8%, 65% 55%, 60% 54.5%, 55% 54%, 50% 53.5%,
      45% 54%, 40% 54.5%, 35% 55%, 30% 55.8%, 25% 56.5%,
      20% 57.5%, 15% 58.5%, 10% 60%, 5% 62%,
      0 65%);
  z-index: 0;
}

.destination-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.destination-bg-content {
  text-align: center;
  color: white;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-bg h1 {
  font-family: var(--primary-font);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-top: -180px;
}

.destination {
  display: flex;
  flex-direction: column;
  max-width: 1512px;
  width: 100%;
  align-items: center;
  padding: 0 80px;
  background-color: #ffffff;
  margin: 0 auto;
}

.destination-title {
  padding-top: 40px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.destination-title h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
}

.destination .destination-frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.destination-text-wrapper {
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 48px;
}

.destination-vector {
  width: 119px;
  height: 1px;
}

.destination-div {
  position: relative;
  width: 100%;
  max-width: 1352px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.destination-card {
  position: relative;
  width: calc((100% - 50px) / 3);
  aspect-ratio: 420 / 744;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.destination-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: border-radius 0.4s ease;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  transition: border-radius 1s ease;
}

.destination-card:hover .destination-image-wrapper img {
  filter: brightness(60%);
}

.destination-color-overlay {
  position: absolute;
  inset: 0;
  border-radius: 500px;
  pointer-events: none;
}

.destination-paragliding {
  position: absolute;
  top: 45%;
  width: 100%;
  text-align: center;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 36px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .destination {
    padding: 40px;
  }

  .destination-text-wrapper {
    font-size: 36px;
  }

  .destination-paragliding {
    font-size: 24px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .destination {
    padding: 40px 20px;
  }

  .destination-div {
    aspect-ratio: auto;
    height: auto;
  }

  .destination-card {
    width: 100%;
    height: 400px;
    aspect-ratio: auto;
    margin-bottom: 30px;
  }

  .destination-paragliding {
    font-size: 22px;
  }
}

/*===End Destination Page=====*/

/* ========== BLOG WRAPPER ========== */
.blog {
  margin: 0 80px;
}

/* ========== BLOG CARDS STACK ========== */
.blog-page-cards {
  display: flex;
  flex-direction: column;
  /* cards stack vertically */
  gap: 30px;
  margin: 20px 0;
}

/* ========== BLOG PRIMARY CARD ========== */
.blog-primary {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow: hidden;
  text-decoration: none;

}

.blog-primary-img {
  width: 652px;
  /* fixed image width */
  height: 320px;
  flex-shrink: 0;
  /* never squishes */
  overflow: hidden;
  border-radius: 20px;
}

.blog-primary-img img {
  width: 100%;
  /* fills the container, not a fixed px value */
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-primary-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  min-width: 0;
  /* critical — allows flex child to shrink and respect overflow */
  overflow: hidden;
}

.blog-primary-title {
  margin: 12px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-primary-desc {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* max 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-primary-date,
.blog-primary-tag {
  white-space: nowrap;
  /* never wraps onto next line */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== BLOG META ========== */
.blog-primary-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-primary-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.blog-primary-tag {
  color: #2e7d32;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
}

/* ========== BLOG TITLE & DESC ========== */
.blog-primary-title {
  margin: 12px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.blog-primary-desc {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  margin: 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .blog {
    margin: 0 24px;
  }

  .blog-primary {
    flex-direction: column;
    /* stack image above content on mobile */
  }

  .blog-primary-img {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .blog {
    margin: 0 24px;
  }

  .blog-primary {
    flex-direction: column;
    /* stack image above content on mobile */
  }

  .blog-primary-img {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .blog {
    margin: 0 16px;
  }

  .blog-primary-img {
    height: 190px;
  }

  .blog-primary-title {
    font-size: 17px;
  }

  .blog-primary-desc {
    font-size: 14px;
  }
}

/* ---Blog Details--- */
.blogdetails-container {
  margin: 0 80px;
}

.blogdetails-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.blogdetails-content {
  width: 100%;
}

.blogdetails-picture {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.blogdetails-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogdetails-content p {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  margin: 20px 0;
}

.blogdetails-content span {
  font-size: 24px;
  color: var(--secondary-color);
  font-weight: 500;
  margin: 20px 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .blogdetails-container {
    margin: 0 40px;
  }

  .blogdetails-picture {
    height: 400px;
  }

  .blogdetails-content p,
  .blogdetails-content span {
    font-size: 20px;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .blogdetails-container {
    margin: 0 24px;
  }

  .blogdetails-wrapper {
    margin-top: 30px;
  }

  .blogdetails-picture {
    height: 320px;
    border-radius: 16px;
  }

  .blogdetails-content p,
  .blogdetails-content span {
    font-size: 18px;
    margin: 16px 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .blogdetails-container {
    margin: 0 16px;
  }

  .blogdetails-wrapper {
    margin: 20px 0;
  }

  .blogdetails-picture {
    height: 240px;
    border-radius: 14px;
  }

  .blogdetails-content p,
  .blogdetails-content span {
    font-size: 16px;
    margin: 12px 0;
  }
}

/* Small Mobile - 320px */
@media (max-width: 360px) {
  .blogdetails-container {
    margin: 0 10px;
  }

  .blogdetails-picture {
    height: 200px;
    border-radius: 12px;
  }

  .blogdetails-content p,
  .blogdetails-content span {
    font-size: 14px;
    margin: 10px 0;
  }
}

/*--Testimonials page--*/


/* ========== TESTIMONIALS PAGE SECTION ========== */
.testimonialspage {
  margin: 0 80px;
  padding: 40px 0;
}

/* ========== GRID ========== */
.testimonialspage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ========== CARD ========== */
.testimonialspage-card {
  background: #1a3faa;
  border-radius: 12px 90px 12px 90px;
  /* flat bottom-left corner like in design */
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* ========== STARS ========== */
.testimonialspage-stars {
  display: flex;
  gap: 4px;
}

.testimonialspage-star {
  font-size: 22px;
}

.testimonialspage-star.filled {
  color: #f5c518;
}

.testimonialspage-star.empty {
  color: #ffffff40;
}

/* ========== TEXT ========== */
.testimonialspage-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ========== AUTHOR ========== */
.testimonialspage-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.testimonialspage-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #1a3faa;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonialspage-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonialspage-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testimonialspage-trip {
  font-size: 13px;
  color: #ffffffaa;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .testimonialspage {
    margin: 0 40px;
  }

  .testimonialspage-grid {
    gap: 20px;
  }

  .testimonialspage-card {
    padding: 24px;
  }
}

/* Small Tablet - 768px: 1 column */
@media (max-width: 768px) {
  .testimonialspage {
    margin: 0 24px;
  }

  .testimonialspage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonialspage-text {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .testimonialspage {
    margin: 0 16px;
    padding: 24px 0;
  }

  .testimonialspage-card {
    padding: 20px;
    border-radius: 16px 16px 16px 0;
  }

  .testimonialspage-star {
    font-size: 18px;
  }

  .testimonialspage-text {
    font-size: 13px;
  }

  .testimonialspage-name {
    font-size: 14px;
  }

  .testimonialspage-trip {
    font-size: 12px;
  }
}

/* Small Mobile - 320px */
@media (max-width: 360px) {
  .testimonialspage {
    margin: 0 10px;
    padding: 16px 0;
  }

  .testimonialspage-card {
    padding: 16px;
    gap: 12px;
  }

  .testimonialspage-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .testimonialspage-star {
    font-size: 16px;
  }

  .testimonialspage-text {
    font-size: 12px;
    line-height: 1.6;
  }
}

/*=====Contact us=====*/

.contact-wrapper {
  position: relative;
}

.background-img {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 50%;
}

.contact-us {
  position: relative;
  z-index: 10;
  padding: 0px 20px 180px 0px;
  margin-bottom: -180px;
}

/*===== Contact Us Section =====*/

.contact-container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 60px;
}

/* LEFT FORM CARD */
.contact-form-card {
  flex: 1.8;
  background-color: rgba(194, 100, 85, 0.75);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group .full-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  resize: vertical;
}

.form-group .full-select option {
  color: #333;
  background: #fff;
}

/* Phone input */
.phone-input {
  display: flex;
  gap: 8px;
}

.phone-input select {
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  width: 100px;
}

.phone-input select option {
  color: #333;
  background: #fff;
}

.phone-input input {
  flex: 1;
}

/* Submit button */
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.form-submit button {
  background-color: #e8501f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.form-submit button:hover {
  background-color: #cf4419;
}

/* RIGHT SIDE */
.contact-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-right: 4px;
}

.contact-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Info cards */
.info-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(6px);
  color: #fff;
}

.info-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.info-card ul li img {
  width: 16px;
  height: 16px;
  margin: 0 0 0 20px;
  filter: brightness(0) invert(1);
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 36px;
  height: 36px;
}

/* ===== RESPONSIVE ===== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .contact-container {
    padding: 40px 32px;
    gap: 20px;
  }

  .info-card h3 {
    font-size: 20px;
  }

  .info-card ul li {
    font-size: 14px;
  }
}

/* Tablets */
@media (max-width: 768px) {

  .contact-wrapper {
    margin-bottom: -180px;
  }

  .contact-container {
    flex-direction: column;
    padding: 24px 20px;
  }

  .contact-form-card {
    padding: 24px;
    align-self: center;
  }

  .contact-side {
    width: 100%;
  }

  .info-card h3 {
    font-size: 18px;
  }

  .info-card ul li {
    font-size: 14px;
  }

  .info-card ul li img {
    margin: 0;
  }

  .contact-us {
    padding: 0px 16px 120px 16px;
    margin-bottom: -120px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .contact-container {
    padding: 16px 12px;
    gap: 16px;
  }

  .contact-form-card {
    padding: 16px;
    gap: 12px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea,
  .form-group .full-select {
    font-size: 13px;
    padding: 8px 12px;
  }

  .phone-input select {
    width: 80px;
    font-size: 12px;
  }

  .form-submit button {
    font-size: 14px;
    padding: 10px 32px;
  }

  .info-card {
    padding: 16px;
    margin-bottom: 60px;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card ul li {
    font-size: 13px;
  }

  .info-card ul li img {
    width: 14px;
    height: 14px;
    margin: 0;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }

  .contact-icons img {
    width: 24px;
    height: 24px;
  }

  .contact-us {
    padding: 0px 12px 80px 12px;
    margin-bottom: -80px;
  }
}

/*---booking form---*/

/*===== Booking Form Card =====*/

.booking-form-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
  width: 100%;
  flex: 1.8;
}

.booking-form-card .form-group label {
  color: #fff;
}

.booking-form-card .form-group input,
.booking-form-card .form-group textarea,
.booking-form-card .form-group .full-select,
.booking-form-card .phone-input select {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(26, 26, 26, 0.6);
  color: #1a1a1a;
  opacity: 40%;
}

.booking-form-card .phone-input select {
  width: 90px;
  color: #1a1a1a;
  opacity: 40%;
}

@media (max-width: 480px) {
  .booking-form-card {
    padding: 20px 16px;
  }

  .booking-form-card .phone-input select {
    width: 75px;
  }
}

/*----book now----*/

/*===== Multi Step Form =====*/

.multi-step-form {
  flex: 1.8;
  background-color: rgba(194, 100, 85, 0.75);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.step.hidden {
  display: none;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: background 0.3s;
}

.step-dot.active {
  background: var(--secondary-color);
}

.step-dot.completed {
  background: var(--secondary-color);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  max-width: 80px;
  transition: background 0.3s;
}

.step-line.completed {
  background: var(--secondary-color);
}

/* Step title */
.step-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.btn-next {
  background-color: #e8501f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}

.btn-next:hover {
  background-color: #cf4419;
}

.submit-button {
  background-color: #e8501f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}

.submit-button:hover {
  background-color: #cf4419;

}

.btn-back {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* File upload */
.file-upload {
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.file-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-align: center;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e8501f;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
  .step-title {
    font-size: 18px;
  }

  .btn-next,
  .btn-back {
    font-size: 13px;
    padding: 8px 24px;
  }
}

/*-----FAQs page-----*/
/*===== FAQ Section =====*/

.faq-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
  width: 100%;
  flex: 1.8;
}

/* Search */
.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-search svg {
  color: #999;
  flex-shrink: 0;
}

.faq-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.faq-search input::placeholder {
  color: #aaa;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  gap: 12px;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.03);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #555;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  padding-bottom: 18px;
}

/* Active / open state */
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* No results */
.faq-no-results {
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 20px;
}

.faq-no-results.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section {
    margin-bottom: 60px;
  }

  .faq-search {
    max-width: 100%;
    margin-left: 0;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/*----team-details----*/
/*===== Guide Profile =====*/

.guide-profile {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.guide-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.guide-name h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.guide-name img {
  width: 24px;
  height: 24px;
}

.guide-bio {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.guide-img {
  flex-shrink: 0;
  width: 510px;
}

.guide-img img {
  width: 100%;
  height: 648px;
  object-fit: cover;
  border-radius: 50px;
  display: block;
}

.guide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-text p {
  font-size: 24px;
  line-height: 1.5;
  color: #03233A;
  margin: 0;
  font-weight: 500;
}

/*===== Certificates =====*/

.certificates {
  margin-top: 12px;
}

.certificates .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.certificates .section-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.certificates .section-title img {
  height: 4px;
  width: 80px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cert-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.cert-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cert-card:hover img {
  transform: scale(1.03);
}

.cert-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}

/*===== Lightbox =====*/

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  animation: fadeIn 0.2s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/*===== Responsive =====*/
@media (max-width: 1024px) {
  .guide-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .guide-bio {
    flex-direction: column;
  }

  .guide-img {
    width: 100%;
  }

  .guide-img img {
    height: 600px;
  }

  .guide-name h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .guide-img img {
    height: 380px;
  }

  .guide-text p {
    font-size: 14px;
  }

  .certificates .section-title h2 {
    font-size: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/*-----ussefull info------*/
/*===== Policy Section =====*/

.policy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/*===== Policy Tabs =====*/

.policy-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  border-bottom: none;
  justify-content: center;
}

.policy-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

/* Individual underline per tab — not connected */
.policy-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: #e8501f;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.policy-tab.active {
  color: #1a1a1a;
}

.policy-tab.active::after {
  transform: translateX(-50%) scaleX(1);
}

.policy-tab:hover {
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-tabs {
    gap: 4px;
  }

  .policy-tab {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .policy-tabs {
    gap: 0;
  }

  .policy-tab {
    font-size: 12px;
    padding: 8px 10px;
    flex: 1;
    text-align: center;
    white-space: normal;
  }

  .policy-tab::after {
    width: 60%;
  }
}

.policy-content {
  display: none;
}

.policy-content.active {
  display: block;
}


/* ─── TABS BAR ─── */
.tabs-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 2px solid #eee;
  top: 76px;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}

.tabs-bar::-webkit-scrollbar {
  display: none;
}

.tab-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}

.gear-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}

.tab-link:hover {
  color: #e84c3d;
}

.tab-link.active {
  color: #e84c3d;
  border-bottom-color: #e84c3d;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   PAGE LAYOUT — TWO ZONES:
   Zone 1: two-column (left content + sidebar)
   Zone 2: full-width (gallery + reviews)
   ═══════════════════════════════════════════════ */

/* Zone 1 — sidebar alongside content */
.page-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 40px 0;
  align-items: start;
}

.left-col {
  min-width: 0;
  width: 100%;
}

/* Zone 2 — full-width sections below sidebar */
.full-width-zone {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0px;
  justify-content: center;
}

/* ─── SIDEBAR ─── */
.sidebar {
  position: sticky;
  top: 160px;
  /* nav (76px) + tabs (~48px) + gap */
  height: fit-content;
  align-self: start;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1.5px solid #eee;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.orange {
  background: #fff2ef;
  color: #e84c3d;
}

.stat-icon.blue {
  background: #eff6ff;
  color: #3b82f6;
}

.stat-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.btn-inquire,
.btn-book {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all .2s;
}

.btn-inquire {
  background: #fff;
  border: 2px solid #e84c3d;
  color: #e84c3d;
}

.btn-inquire:hover {
  background: #fff5f4;
}

.btn-book {
  background: #e84c3d;
  border: 2px solid #e84c3d;
  color: #fff;
}

.btn-book:hover {
  background: #c73c2e;
  border-color: #c73c2e;
}

.personalize-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 20px;
  min-height: 200px;
}

.personalize-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.personalize-content {
  position: relative;
  padding: 28px 24px;
  color: #fff;
}

.personalize-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.personalize-content p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 20px;
}

.btn-personalize {
  background: #e84c3d;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.btn-personalize:hover {
  background: #c73c2e;
}

/* ─── DESCRIPTION (Overview) ─── */
.description {
  margin-bottom: 32px;
  width: 100%;
}

.description p {
  font-size: clamp(13px, 2vw, 14.5px);
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.description .red {
  color: #e84c3d;
  font-weight: 600;
}

.description a {
  color: #e84c3d;
  text-decoration: underline;
}

.load-more-wrap {
  margin-bottom: 32px;
}

.btn-load {
  background: transparent;
  border: 2px solid #e84c3d;
  color: #e84c3d;
  padding: 9px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-load:hover {
  background: #e84c3d;
  color: #fff;
}

/* ─── DEPARTURE CARD ─── */
.departure-card {
  background: #fff9f8;
  border: 1.5px solid #fdddd9;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.departure-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.departure-card .note {
  font-size: 12.5px;
  color: #888;
  margin-bottom: 18px;
}

.dates-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.date-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.arrow {
  font-size: 20px;
  color: #e84c3d;
}

.btn-slot {
  background: #e84c3d;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  margin-left: auto;
}

.btn-slot:hover {
  background: #c73c2e;
}

/* ─── ITINERARY ─── */
.itinerary h2 {
  font-size: 21px;
  font-weight: 700;
  color: #e55a2b;
  margin-bottom: 22px;
}

.itin-list {
  list-style: none;
  position: relative;
  padding-left: 0;
  margin: 0;
}

.itin-list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e55a2b;
  z-index: 0;
}

.itin-item {
  position: relative;
  padding-left: 40px;
}

.itin-item::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e55a2b;
  z-index: 1;
}

.itin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #eee;
}

.itin-header:hover .itin-title {
  color: #e55a2b;
}

.itin-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  transition: color .2s;
  padding-right: 10px;
}

.itin-chevron {
  width: 20px;
  height: 20px;
  color: #888;
  flex-shrink: 0;
  transition: transform .3s;
}

.itin-item.open .itin-chevron {
  transform: rotate(180deg);
}

.itin-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.itin-item.open .itin-body {
  max-height: 600px;
}

.itin-body-inner {
  padding: 20px 0 24px 0;
  font-size: 14px;
  line-height: 1.78;
  color: #555;
  border-bottom: 1px solid #eee;
}

/* ─── SECTION HEADINGS ─── */
.section-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ─── MAP ─── */
.route-section {
  margin-bottom: 36px;
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* ─── COST INCLUSION / EXCLUSION ─── */
.cost-section {
  margin-bottom: 32px;
}

.cost-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cost-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
}

.cost-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cost-icon.inc {
  color: #22c55e;
}

.cost-icon.exc {
  color: #e84c3d;
}

/* ─── GALLERY (full-width zone) ─── */
.gallery-section {
  margin-bottom: 40px;
  padding-top: 8px;
}

.gallery-slider-outer {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  animation: scroll-gallery 28s linear infinite;
  width: max-content;
}

.gallery-track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

@keyframes scroll-gallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery-slider-outer:hover .gallery-track {
  animation-play-state: paused;
}

/* ─── REVIEWS (full-width zone) ─── */
.reviews-section {
  margin-bottom: 40px;
}

.reviews-slider-outer {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25, .8, .25, 1);
  will-change: transform;
}

.review-card {
  background: #1a3faa;
  border-radius: 12px 90px 12px 90px;
  padding: 28px 28px 24px;
  flex-shrink: 0;
  width: calc(50% - 10px);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.star {
  font-size: 18px;
}

.star.filled {
  color: #f5c518;
}

.star.empty {
  color: rgba(255, 255, 255, .35);
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  flex: 1;
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.review-trip {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  margin-top: 2px;
}

.reviews-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: #444;
  flex-shrink: 0;
}

.rev-btn:hover {
  border-color: #1a5dc8;
  color: #1a5dc8;
  background: #eef2ff;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* DESKTOP: full-width-zone escapes the left-col constraint */
@media (min-width: 1025px) {

  /* The full-width-zone sits inside left-col (which is a grid cell).
     We escape it by stretching it to the full page width. */
  .full-width-zone {
    /* Reset the padding from the existing rule */
    padding-left: 0;
    padding-right: 0;
    /* Pull left to align with page edge, then span full width */
    margin-left: calc(-40px);
    /* undo page-wrap left padding */
    width: calc(100vw - 17px);
    /* full viewport minus scrollbar */
    /* Internal padding for content breathing room */
    padding: 0 40px 48px;
    box-sizing: border-box;
    position: relative;
  }
}

/* TABLET (1025px and below): switch to flex so we control order */
@media (max-width: 1024px) {
  .page-wrap {
    display: flex;
    flex-direction: column;
    padding: 28px 24px 0;
  }

  .left-col {
    order: 1;
  }

  /* all left-col content first */
  .sidebar {
    order: 3;
    position: static;
  }

  /* sidebar LAST */

  /* full-width-zone is inside left-col so it scrolls with it.
     We need it to visually escape the left-col width. */
  .full-width-zone {
    /* Pull it to full width of the viewport */
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% + 48px);
    box-sizing: border-box;
    padding-bottom: 0;
  }

  /* Stats in a row of 4 on tablet */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {

  .tabs-bar {
    justify-content: flex-start;
  }

  /* Review cards: 1 at a time */
  .review-card {
    width: calc(100vw - 72px);
    /* viewport minus padding and buttons */
    min-width: 260px;
    border-radius: 12px 40px 12px 40px;
  }

  /* Slider outer needs to clip correctly */
  .reviews-slider-outer {
    overflow: hidden;
  }

  .reviews-track {
    gap: 16px;
  }
}

/* MOBILE (640px and below) */
@media (max-width: 640px) {
  .page-wrap {
    padding: 20px 16px 0;
  }

  .full-width-zone {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
  }

  /* Stats: 2 col grid on small mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 12px 10px;
    gap: 8px;
  }

  .stat-value {
    font-size: 12px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* Itinerary title wraps cleanly */
  .itin-title {
    font-size: 13.5px;
    line-height: 1.4;
  }

  /* Departure dates */
  .dates-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .arrow {
    transform: rotate(90deg);
    display: block;
    margin: 0 auto;
  }

  .btn-slot {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  /* Map shorter on mobile */
  .map-frame iframe {
    height: 240px;
  }

  /* Gallery images slightly smaller */
  .gallery-track img {
    width: 210px;
    height: 150px;
  }

  /* Reviews: full-width single card */
  .review-card {
    width: calc(100vw - 56px);
    padding: 18px 16px;
  }

  /* Review nav buttons */
  .rev-btn {
    width: 32px;
    height: 32px;
  }
}

/* MOBILE (480px and below) */
@media (max-width: 480px) {
  .page-wrap {
    padding: 16px 12px 0;
  }

  .full-width-zone {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    width: calc(100% + 24px);
  }

  .gallery-track img {
    width: 190px;
    height: 138px;
  }

  .review-card {
    width: calc(100vw - 48px);
    border-radius: 10px 30px 10px 30px;
  }

  .review-text {
    font-size: 13px;
  }

  .departure-card {
    padding: 16px 14px;
  }

  .personalize-content h3 {
    font-size: 17px;
  }
}

/* VERY SMALL (360px and below) */
@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-track img {
    width: 170px;
    height: 124px;
  }

  .review-card {
    width: calc(100vw - 44px);
    padding: 16px 14px;
  }

  .tab-link {
    padding: 10px 10px;
    font-size: 11px;
  }
}


.left {
  margin: 0;
  padding: 0;
  gap: 100px;
}


.hidden {
  display: none;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  font-size: 60px;
  color: white;
}

.expedition-btn-1 {
  background: #0056B3;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  position: absolute;
  top: -12%;
  left: 59%;
}

.expedition-btn-2 {
  background: #0056B3;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  position: absolute;
  top: 15%;
  left: 38%;
}

.expedition-btn-3 {
  background: #0056B3;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  position: absolute;
  top: 37%;
  left: 15%;
}

/* Expedition grouped canvas: keep image + buttons static as one unit */
.expedition-group {
  --exp-base-width: 1521;
  --exp-base-height: 1080;
  --exp-scale: min(1, calc(100vw / (var(--exp-base-width) * 1px)));
  position: relative;
  width: 100%;
  max-width: 100%;
  height: calc(var(--exp-base-height) * 1px * var(--exp-scale));
  overflow: visible;
  margin: 0 auto 40px;
}

.expedition-page-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(var(--exp-base-width) * 1px);
  transform: translateX(-50%) scale(var(--exp-scale));
  transform-origin: top center;
}

.expedition-page-wrapper img {
  width: 100%;
  display: block;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.iti {
  width: 100%;
}

#phoneInput {
  width: 100%;
}


/* for form validation  */
.invalid-feedback {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}

.is-invalid {
  border-color: red;
}