.navMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bipro-dark-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
  }
  .sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease-in-out;
  }

  .active {
    background: var(--hover-blue);
    font-weight: bold;
  }
  
  /* 1. Hamburger toggle (hidden on desktop) */
  .hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--bipro-dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    z-index: 1100;
  }

  .hamburgerOpen{
    color: var(--color-white);
  }
  
  /* 2. Link list */
  .navList {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
  }
  .navItem {
    margin: 0;
    height: 100%;
    padding: 0.8rem;
  }
  .navLink {
    display: block;
    padding: 0rem 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.3s;
    height: 100%;
  }
  .navItem:hover {
    background: var(--hover-blue);
    font-weight: bold;
  }
  
  /* 3. Mobile (≤768px) */
  @media (max-width: 768px) {
    /* show the hamburger */
    .hamburger {
      display: block;
    }
  
    /* hide the navList by default */
    .navList {
      display: none;
      flex-direction: column;
      background: var(--bipro-blue);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
    }
  
    /* when navMenu has .open, show the list */
    .open .navList {
      display: flex;
    }
  
    /* stack and full-width items */
    .navItem {
      margin: 0;
    }
    .navLink {
      padding: 1rem;
      text-align: center;
    }
  }