
  /* ----------------------------------------
     BASIC RESET + BODY
  ----------------------------------------- */
  body {
      margin: 0;
      font-family: Arial, sans-serif;
      overflow-x: hidden;
  }

  body.no-scroll {
    overflow: hidden ;
  }

  /* ----------------------------------------
     NAVBAR
  ----------------------------------------- */
  .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: 0.3s ease;
      z-index: 1000;
      padding: 0 5% 0 5%;
  }
  .navbar.scrolled {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  /* Logo */
  .navbar .logo img {
      height: 10vh;
  }

  /* Desktop Menu */
  .menu {
      display: flex;
      align-items: center;
      gap: 25px;
      padding-right: 50px;
  }
  .menu > li {
      list-style: none;
      position: relative;
  }
  .menu > li > a {
      text-decoration: none;
      color: #000;
      font-size: 17px;
      font-weight: 600;
  }

  /* Submenu (desktop hover) */
  .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 180px;
      background: #fff;
      border-radius: 6px;
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      display: none;
      z-index: 2000;
  }
  .menu > li:hover > .submenu {
      display: block;
  }
  .submenu a {
      display: block;
      padding: 10px 20px;
      color: #222;
      text-decoration: none;
  }
  .submenu a:hover {
      background: #f3f3f3;
  }

  /* Multi-level submenu */
  .submenu li {
      position: relative;
  }
  .submenu .submenu {
      top: 0;
      left: 100%;
      margin-left: 5px;
  }

  /* ----------------------------------------
     HAMBURGER BUTTON
  ----------------------------------------- */
  .hamburger {
      display: none;
      cursor: pointer;
      font-size: 30px;
      background: none;
      border: none;
      color: #000;
      padding-right: 20px;
  }
  .hamburger .bar {
      width: 28px;
      height: 3px;
      background: #000;
      margin: 5px 0;
      transition: 0.3s;
  }
  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  /* ----------------------------------------
     MOBILE MENU PANEL
  ----------------------------------------- */
  .mobile-menu {
      position: fixed;
      top: 0;
      left: -310px;
      width: 260px;
      max-width: 75%;
      height: 100vh;
      background: #000;
      padding: 25px;
      padding-top: 25px;
      transition: 0.3s ease;
      z-index: 1500;
      overflow-y: auto;
  }
  .mobile-menu.open {
      left: 0;
  }

  /* Overlay blur */
  .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(4px);
      z-index: 1400;
      display: none;
  }
  .overlay.active {
      display: block;
  }

  /* Mobile menu items */
  .mobile-menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.3);
  }
  .mobile-menu-item:last-child {
      border-bottom: none;
  }

  .mobile-menu-item a {
      color: white;
      text-decoration: none;
      font-size: 20px;
      flex-grow: 1;
  }

  /* arrow icon */
  .toggle-icon {
      font-size: 16px;
      color: white;
      transition: transform 0.25s ease;
  }
  .toggle-icon.rotate {
      transform: rotate(180deg);
  }

  /* Mobile submenu */
  .mobile-submenu {
      display: none;
      padding-left: 20px;
      border-left: 1px dashed rgba(255,255,255,0.3);
      margin-top: 10px;
  }
  .mobile-submenu.open {
      display: block;
  }
  .mobile-submenu a {
      display: block;
      padding: 7px 0;
      color: #ddd;
      font-size: 17px;
  }

  /* ----------------------------------------
     RESPONSIVE
  ----------------------------------------- */
  @media (max-width: 1024px) {
      .menu { display: none; }
      .hamburger { display: block; }
      .navbar .logo img {
          height: 8vh;
      }
  }





