
  /* ==================================================
      BASE RESET
  ================================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }


  /* ==================================================
      NAVBAR
  ================================================== */
  .navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
       background: white;
       backdrop-filter: blur(12px); 
    border: none;
    z-index: 1100;
  }

  .nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  /* ==================================================
      LOGO
  ================================================== */
  .nav-left {
    display: flex;
    align-items: center;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 50px;
    width: auto;
    max-width: 302px;
    object-fit: contain;
    display: block;
  }


  /* ==================================================
      RIGHT SECTION (Button + Hamburger)
  ================================================== */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }


  /* ==================================================
      CONNECT BUTTON
  ================================================== */
  .connect-btn {
    color: #5fcf80;
    border: 2px solid #5fcf80;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Helvetica Neue LT Pro";
    transition: background-color 0.2s ease, color 0.2s ease;
    background: transparent;
    white-space: nowrap;
  }

  .connect-btn:hover {
    color: white;
    background: #78d78d;
  }


  /* ==================================================
      HAMBURGER ICON (JS-Controlled)
  ================================================== */
  .icon {
    width: 26px;
    height: 20px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 1200;
  }

  .icon span {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    background: #B8842A;
    transition: all 0.3s ease;
  }

  .icon span:nth-child(1) {
    left: 6px;
  }

  .icon span:nth-child(2) {
    left: 18px;
  }


  /* ==================================================
      HAMBURGER → X TRANSFORMATION (JS Active Class ke through)
  ================================================== */
  .icon.active span:nth-child(1) {
    left: 12px;
    transform: rotate(45deg);
  }

  .icon.active span:nth-child(2) {
    left: 12px;
    transform: rotate(-45deg);
  }


  /* ==================================================
      OVERLAY
  ================================================== */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 800;
    cursor: pointer;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }


  /* ==================================================
      SIDE MENU (JS Active Class ke through slide-in hoga)
  ================================================== */
  .side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #F9F8F5;
    display: flex;
    flex-direction: column;
    padding: 90px 0 0 0;
    gap: 0px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }

  .side-menu.active {
    right: 0;
  }

  .side-menu a {
    text-decoration: none;
    color: #B8842A;
    font-size: 25px;
    padding: 20px 24px;
    letter-spacing: 0.5px;
    font-weight: 100;
    font-family: "Helvetica Neue LT Pro", sans-serif !important;
    display: block;
    width: 100%;
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  }

  .side-menu a:hover {
    background: #f0ede5;
    transform: translateX(4px);
  }


  /* ==================================================
      RESPONSIVE MEDIA QUERIES
  ================================================== */
  @media (max-width: 1024px) {
    .nav-container {
      padding: 16px 20px;
    }
    .side-menu a {
      font-size: 25px;
    }
  }

  @media (max-width: 768px) {
    .side-menu a {
      font-size: 20px;
    }
  }

  @media (max-width: 600px) {
    .nav-container {
      padding: 12px 16px;
    }
    .logo img {
      height: 32px;
      max-width: 130px;
    }
    .connect-btn {
      padding: 6px 12px;
      font-size: 11px;
    }
    .side-menu {
      width: 100%;
      right: -100%;
      padding-top: 80px;
    }
    .side-menu.active {
      right: 0;
    }
    .side-menu a {
      font-size: 18px;
    }
  }