
    body {
      background: #f7f7f7;
      color: #333;
       font-family: 'Poppins', sans-serif;
       background-color:  #fff5e6;;
    }

   
  /* ========== NAVBAR BASE ========== */
  #navbar {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .navbar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 20px;
  }

  /* ========== LOGO ========== */
  .logo img {
    height: 70px;
    width: 270px;
    transition: transform 0.3s ease;
  }
  .logo img:hover { transform: scale(1.05); }

  /* ========== NAV LINKS ========== */
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #2e2e2e;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 10px;
    transition: all 0.3s ease;
    border-radius: 6px;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background: linear-gradient(135deg, #b91c1c, #f59e0b);
    color: #fff;
  }

  /* ========== DROPDOWN ========== */
  .dropdown-parent {
    position: relative;
  }
  .dropdown {
    display: none;
    position: absolute;
    background: #ffffff;
    top: 100%;
    left: 0;
    list-style: none;
    min-width: 200px;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .dropdown li a {
    display: block;
    color: #2e2e2e;
    padding: 10px 16px;
  }
  .dropdown li a:hover {
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
  }
  .dropdown-parent:hover .dropdown {
    display: block;
  }

  /* ========== AUTH BUTTON ========== */
  .auth-btn {
    background: linear-gradient(135deg, #b91c1c, #f59e0b);
    color: white !important;
    border-radius: 25px;
    padding: 8px 18px;
  }
  .auth-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #b91c1c);
  }

  /* ========== HAMBURGER MENU ========== */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #b91c1c;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .menu-toggle { display: flex; }

    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background: #ffffff;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 25px;
      padding: 80px 20px;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      transition: right 0.4s ease;
    }

    .nav-links.show {
      right: 0;
    }

    .dropdown-parent:hover .dropdown {
      display: none; /* disable hover on mobile */
    }

    .dropdown-parent .dropdown {
      position: static;
      box-shadow: none;
      padding: 0;
      background: transparent;
    }

    .dropdown-parent.open .dropdown {
      display: block;
    }
  }

  /* Hamburger active animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 900px) {
  .nav-links {
    overflow-y: auto;       /* Allow vertical scroll */
    max-height: 100vh;      /* Prevent content overflow */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
  }
}
