    /* Logo Top Left */
    .header-left {
      position: fixed;
      z-index: 999999;
      top: 20px;
      left: 40px;
      padding: 8px 18px;
      border-radius: 25px;
      background-color: #2d4a5f3c;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .brand-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 70px;
    }

    .brand-text {
      color: rgb(7, 7, 7);
    }

    .brand-name {
      font-weight: 700;
      font-size: 37px;
      line-height: 1.1;
      letter-spacing: 5px;
    }

    .brand-tagline {
      font-size: 12px;
      opacity: 0.9;
      letter-spacing: 3px;
    }

    /* Menu Button Top Right */
    .header-right {
      position: absolute;
      right: 40px;
      top: 28px;
    }

    .nav-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #123233;
      color: #fff;
      border-radius: 28px;
      padding: 5px 6px;
      border: none;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.06);
      position: fixed;
      top: 40px;
      right: 60px;
      z-index: 1000;
      transition: transform 0.4s ease, background-color 0.4s ease;
    }

    .nav-hamburger,
    .nav-close-symbol {
      font-size: 30px;
      font-weight: 600;
      display: inline-block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      line-height: 28px;
      text-align: center;
      background: white;
      color: #123233;
      transition: transform 0.6s ease, opacity 0.4s ease;
    }

    .nav-close-symbol {
      opacity: 0;
      transform: rotate(-360deg) scale(0);
    }

    .nav-toggle[data-open="true"] .nav-hamburger {
      transform: rotate(360deg) scale(1.2);
      opacity: 0;
    }

    .nav-toggle[data-open="true"] .nav-close-symbol {
      opacity: 1;
      transform: rotate(0deg) scale(1.1);
    }

    .nav-toggle:hover .nav-hamburger {
      transform: rotate(360deg);
    }

    /* Fullscreen Animated Menu */
    .nav-overlay {
      position: fixed;
      top: 41%;
      left: 55%;
      width: 75vw;
      max-width: 1900px;
      height: auto;
      background: rgba(18, 50, 51, 0.781);
      backdrop-filter: blur(6px);
      z-index: 999999;
      border-radius: 28px;
      padding: 60px 70px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transform: translate(-5%, -95%) scale(0);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.9s ease, opacity 0.4s ease;
    }

    /* Open State */
    .nav-overlay.open {
      opacity: 1;
      transform: translate(-50%, -40%) scale(1);
      pointer-events: auto;
    }

    /* Animated menu items */
    .nav-left,
    .nav-right {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease 0.2s, transform 0.6s ease 0.2s;
    }

    .nav-overlay.open .nav-left,
    .nav-overlay.open .nav-right {
      opacity: 1;
      transform: translateY(0);
    }

    .nav-close-icon {
      font-size: 30px;
      width: 30px;
      height: 30px;
      font-weight: 300;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.6s ease;
      cursor: pointer;
    }

    .nav-close-icon:hover {
      transform: rotate(360deg);
    }

    /* Left menu */
    .nav-left {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .nav-left a {
      font-size: 50px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      text-decoration: none;
      color: #ffffff;
      transition: 0.25s ease;
    }

    .nav-left a:nth-child(3) {
      color: #f8c94a;
    }

    .nav-left a:hover {
      color: var(--accent-yellow);
      transform: translateX(6px);
    }

    /* Right menu */
    .nav-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: right;
    }

    .nav-right a {
      text-align: end;
      font-size: 18px;
      font-weight: 200;
      text-decoration: none;
      color: #ffffff;
      transition: 0.25s ease;
    }

    .nav-right a:hover {
      color: #f8c94a;
      letter-spacing: 1px;
    }




    /* Right menu */
    .menu-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: right;
    }

    .menu-right a {
      text-align: end;
      font-size: 18px;
      font-weight: 200;
      text-decoration: none;
      color: #ffffff;
      transition: 0.25s ease;
    }

    .menu-right a:hover {
      color: #f8c94a;
      letter-spacing: 1px;
    }



















    /* Responsive */
    @media (max-width: 480px) {
      .header-left {
        top: 20px;
        left: 10px;
      }

      .brand-logo {
        width: 40px;
        height: 40px;
        border-radius: 5px;
      }

      .brand-name {
        font-weight: 600;
        font-size: 17px;
        letter-spacing: 5px;
      }

      .brand-tagline {
        font-size: 10px;
        letter-spacing: 1px;
      }

      .nav-toggle {
        top: 30px;
        right: 10px;
      }

      .nav-overlay.open {
        width: 70%;
        display: grid;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        pointer-events: auto;
        padding: 30px;
      }

      .nav-left a {
        font-size: 30px;
        font-weight: 800;
      }
    }