    /* Global resets (only essentials for these sections) */
    * {
    box-sizing: border-box;
    }
    html, body {
    height: 100%;
    margin: 0;
    font-family: "Hanken Grotesk", sans-serif;
    /* background: #00077B; */
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    }

    /* Container for max-width (used in hero) */
    .container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    }
.fw-700 {
  font-weight: 600;
}

.fw-100{
  font-weight: 100;
}
    /* NAVBAR */
  .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #00077B;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.5); */
  z-index: 10000;
  transition: background-color 1s ease;  /* Increased from 0.4s to 1s for slower fade-back */
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar.navbar-scrolled {
  background-color: rgba(0, 7, 123, 0.5);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left side logo */
.logo-container {
  flex: 1 1 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #51F36F;
  text-decoration: none;
}

.logo span {
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Right side nav and burger */
.nav-links-container {
  flex: 2 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

/* Nav links ul */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-decoration: none;
  padding: 5px 10px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #51F36F;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  user-select: none;
}

.burger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile styles */
@media (max-width: 900px) {
  .nav-links-container {
    gap: 12px;
  }
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background-color: #00077B;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    gap: 20px;
    z-index: 10001;
  }
  .nav-links.nav-active {
    display: flex;
  }
  .burger {
    display: flex;
  }
}
  body {
    margin: 0; 
    height:max-content;
  }
    .nav-links li a:hover,
    .nav-links li a.active {
    color: #51F36F;
    }

    /* Burger menu */
    .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    user-select: none;
    }

    .burger span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
    }

    .burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.toggle span:nth-child(2) {
    opacity: 0;
    }
    .burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile navbar */
    @media (max-width: 900px) {
      .navbar.navbar-scrolled{
            background-color: #00077B;
      }
      .nav-links li a{
        font-size: 1rem;
        font-weight: 200;
        line-height: 3rem;
      }
    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        background-color: #00077B;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        gap: 20px;
        z-index: 10001;
    }
    .nav-links.nav-active {
      height: 100vh;
        display: flex;
    }
    .burger {
        display: flex;
    }
    }

    /* HERO */
.hero {
  z-index: 0;
    position: relative;
    width: 100%;
    min-height: 150vh;
    padding: 150px 30px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    /* Parallax will be applied via JS transform */
    will-change: transform;  /* Hint for performance */
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    /* Initial state: Hidden */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content.animate {
    /* Triggered state: Fade in */
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 75px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.3em;
    /* Initial state: Hidden */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-content.animate h1 {
    /* Triggered state: Slide up and fade in */
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 strong {
    font-weight: 700;
    color: white;
}

.hero-content h2 {
    font-size: 29px;
    font-weight: 300;
    line-height: 30px;
    color: #51F36F;
    margin-bottom: 10px;
    /* Initial state: Hidden */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-content.animate h2 {
    /* Triggered state: Slide up and fade in */
    opacity: 1;
    transform: translateY(0);
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 25px;
    /* Initial state: Hidden */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-content.animate p {
    /* Triggered state: Slide up and fade in */
    opacity: 1;
    transform: translateY(0);
}

.btn-download-hero {
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 50px;
    color: #51F36F;
    border: 1px solid #51F36F;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    /* Initial state: Hidden */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s, background-color 0.3s ease, color 0.3s ease;
}

.hero-content.animate .btn-download-hero {
    /* Triggered state: Slide up and fade in */
    opacity: 1;
    transform: translateY(0);
}

.btn-download-hero:hover {
    background-color: #51F36F;
    color: #000;
    border-color: #51F36F;
    /* Added subtle scale on hover */
    transform: scale(1.05);
}

/* Mobile hero */
@media (max-width: 900px) {
    .hero {
        min-height: 80vh;
        padding: 100px 20px 40px;
    }
    .hero-content h1 {
        font-size: 33px;
        line-height: 44px;
    }
    .hero-content h2 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 15px;
    }
    /* Disable animations on mobile for performance */
    .hero-content,
    .hero-content h1,
    .hero-content h2,
    .hero-content p,
    .btn-download-hero {
        opacity: 1;
        transform: none;
        transition: none;
    }
    /* Disable parallax on mobile */
    .hero-bg {
        will-change: auto;
    }
}

 /* ADDRESS BAR SECTION */
.address-section {
  position: relative;
  z-index: 10; /* Higher than hero-bg (z-index: 1) to prevent overlap */
}

/* ADDRESS BAR */
.address-bar {
  background-color: #51F36F;
  color: #00077B;
  font-weight: 400;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 1.2px;
  font-size: 23px;
  user-select: none;
  width: 100%;
  display: flex;
  height: 80px;
  align-content: space-between;
  justify-content: space-around;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  line-height: 27px;
  text-transform: uppercase;
}

    /* Adjust body margin for fixed navbar */
    /* body > *:not(.navbar) {
    margin-top: 65px;
    } */