


/* Reset & Base */
  @font-face {
    font-family: 'HelveticaNeueMedium';
    src: url('./fonts/HelveticaNeueMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'HelveticaNeueBold';
    src: url('./fonts/HelveticaNeueBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: 'Lagency';
    src: url('./Lagency-Regular.woff2') format('woff2'),
        url('./fonts/Lagency-Regular.woff') format('woff'),
        url('.Lagency-Regular.ttf') format('truetype'),
        url('.Lagency-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
    font-family: 'HelveticaNeueMedium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

/* Main Wrapper */
#main {
  width: 100%;
  overflow-x: hidden;
 

}/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 0;
}
.ero h1 {
  font-size: 3em;
  font-weight: bold;
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
  font-family: 'Lagency', serif;
 
}


/* Navigation */
nav {
  padding: 2vw 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  background: rgba(255, 254, 254, 0);
}

.logo {
  width: 120px;
  height: auto;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #0101013c;
  border-radius: 50px;
  font-weight: 500;
  color: #000000d4;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d4a94f;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: 1;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #080707;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #fff;
}

.btn-top {
  background-color: #d4a94f;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
}

  

    .brand {
      position: absolute;
      top: 30px;
      left: 40px;
      color: #fff;
      font-weight: bold;
      font-size: 1.1rem;
    }

    .hero-text {
      max-width: 500px;
      color: white;
      font-size: 4rem;
      font-weight: 700;
      line-height: 1.1;
    }

    .scroll-arrow {
      position: absolute;
      bottom: 40px;
      right: 40px;
      font-size: 2rem;
      color: white;
      cursor: pointer;
    }

    .section {
      display: flex;
      gap: 60px;
      padding: 100px 80px;
      align-items: flex-start;
      justify-content: center;
    }

    .left-col {
      min-width: 150px;
    }

    .section-number {
      font-size: 1rem;
      color: #999;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
    }

    .right-col {
      max-width: 600px;
      font-size: 1rem;
      line-height: 1.7;
      color: #333;
    }

    @media (max-width: 768px) {
      .hero-text {
        font-size: 2.5rem;
      }

      .nav {
        right: 20px;
        top: 20px;
      }

      .brand {
        left: 20px;
        top: 20px;
      }

      .section {
        flex-direction: column;
        padding: 60px 20px;
      }

      .left-col {
        min-width: auto;
      }

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

     .adventure-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 20px;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .adventure-text {
      grid-column: span 2;
      background-image: url('./images/joel-herzog-2Nvfrm2wLQY-unsplash.jpg');
      color: rgb(255, 255, 255);
      padding: 30px;  
      border-radius: 20px;
      background-position: center;
      background-size: cover;
      font-size: 30px;
      font-weight: 900;
    }

    .adventure-text h2 {
      font-size: 24px;
      margin-bottom: 10px;
      color: white;
    }

    .adventure-text p {
      font-size: 16px;
      line-height: 1.5;
    }

    .metric-box {
      background: url('https://images.unsplash.com/photo-1600637468460-1fa84e8eddea?q=80&w=813&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      background-position: center;
      background-size: cover;
    }

    .metric-box h1 {
      font-size: 36px;
      margin: 0;
      color: #ffffff;
    }

    .metric-box p {
      margin-top: 10px;
      font-weight: 600;
      color: #ffffff;
    }

    .met-box {
      background: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?q=80&w=772&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      background-position: center;
      background-size: cover;
    }

    .met-box h1 {
      font-size: 36px;
      margin: 0;
      color: #ffffff;
    }

    .met-box p {
      margin-top: 10px;
      font-weight: 600;
      color: #ffffff;
    }


    .cta-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 20px;
      background: white;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #171414;
    }

    .adventure-img {
      grid-column: span 2;
    }

    .adventure-img img {
      width: 100%;
      height: auto;
      border-radius: 20px;
    }

    .customers {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
    }

    .customers img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
    }

     .ext {
      grid-column: span 2;
      color: rgb(11, 11, 11);
      padding: 30px;  
      border-radius: 20px;
      background-position: center;
      background-size: cover;
    }

    .ext h2 {
      font-size: 24px;
      margin-bottom: 10px;
      align-items: center;
      text-align: center;
    }

    .ext p {
      font-size: 16px;
      line-height: 1.5;
      align-items: center;
      text-align: center;
    }

    .ero{
      background-image: url('https://images.unsplash.com/photo-1626588412481-b0fe9bca3124?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      color: white;
      text-align: center;
      padding: 100px 20px;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    
    }
    .ero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .ero p {
      font-size: 1.2rem;
      color: #ccc;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .ero button {
      padding: 12px 24px;
      background: white;
      color: #0c0c1e;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

     leader {
      background-color: #fff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    leader h1 {
      font-size: 24px;
      font-weight: 800;
    }

    .lero {
      background: url('./IMG_2587.JPG') center/cover no-repeat;
      color: #fff;
      padding: 700px 40px 40px;
      text-align: center;
      position: relative;
      background-size: cover;
      background-position: center;
      width: 85%;
      margin-left: 7.5%;
      border-radius: 40px;
    }

    .lero h2 {
      font-size: 48px;
      font-weight: 800;
      align-items: center;
      text-align: center;
    }

  
    .about {

      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      text-align: center;
    }

    .about h3 {
      font-size: 26px;
      margin-bottom: 16px;
    }

    .about p {
      color: #444;
      margin-bottom: 24px;
    }

    .video-section {
      text-align: center;
      margin: 40px auto;
      height: 50%;
    }

    .video-section video, .video-section img {
      width: 100%;
      border-radius: 12px;
      height: 80vh;
      background-position: center;
      background-size: cover; 
      image-orientation: from-image;
    }

    .numbers {
      background: #fff;
      max-width: 1200px;
      margin: 60px auto;
      padding: 40px 20px;
      border-radius: 12px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .numbers h4 {
      font-size: 20px;
      font-weight: 600;
    }

    .numbers p {
      font-size: 32px;
      font-weight: 800;
      color: #f97316;
    }

    .cta {
      background-color: #f97316;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .cta input[type="email"] {
      padding: 10px;
      border: none;
      border-radius: 6px;
      width: 250px;
      margin-right: 10px;
    }

    .cta button {
      padding: 10px 20px;
      background: #000;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }


     .flip-box-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .flip-box {
      background-color: transparent;
      width: 220px;
      height: 160px;
      perspective: 1000px;
    }

    .flip-box-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-inner {
      transform: rotateY(180deg);
    }

    .flip-box-front, .flip-box-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .flip-box-front {
      background-color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #000;
    }

    .flip-box-front h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #000;
    }

    .flip-box-front span {
      font-size: 28px;
      font-weight: bold;
      color: #f97316; /* Tailwind orange-500 */
    }

    .flip-box-back {
      background-color: #f97316;
      color: white;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .flip-box-back p {
      font-size: 14px;
      padding: 0 10px;
    }

    #page10 {
    min-height: 1vh;
    width: 100%;
    /* background-color: #111; */
    background-color: #fff;
    padding: 1vh 10vw;
}

#page10 > h1 {
    font-size: 5vw;
    color: #000;
    /* background-color: red; */

    line-height: 5.8vw;
    padding-bottom: 5vh;
    border-bottom: 1px solid #000000;
    text-align: center;
    
}

#page10-content {
    /* background-color: red; */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8vh 0;
}

#page10-content #right-10 {
    width: 90%;
    color: #000;
}

#page10-content #right-10 p {
    font-size: 2vw;
    color: #000;
    margin-bottom: 1vh;
    width: 80%;
    text-align: center;
    align-items: center;
    margin-left: 15%;
}






footer {
  background-color: #000;
  color: white;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

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

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.video-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2b3e50;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-box {
  flex: 1 1 300px;
  max-width: 500px;
}

.video-box h3 {
  margin-bottom: 10px;
  color: #333;
}

.video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
    color: white;

}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
    color: white;

}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: white;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
footer a {
  color: #ffffff; /* or your brand color like #F4A261 or #E9C46A */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #F4A261; /* Example hover color */
  text-decoration: underline;
}