    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #111;
      padding: 10px 20px;
      position: relative;
    }

    /* Logo */
    .logo {
      font-size: 1.4rem;
      font-weight: bold;
      color: #fff;
    }

    /* Desktop Menu */
    nav {
      display: flex;
      flex-wrap: wrap; /* अगर items ज्यादा हों तो नई लाइन में */
      gap: 15px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 5px;
      transition: background 0.3s;
      white-space: nowrap;
      font-size: 17px;
    }

    nav a:hover {
      background: rgba(255,255,255,0.1);
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #fff;
      background: none;
      border: none;
    }

    /* Mobile Menu */
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: #111;
      position: absolute;
      top: 60px;
      right: 0;
      width: 70%;
      max-width: 300px;
      height: 100vh;
      padding: 20px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1000000;
      border-radius: 20px 0 0 0;
    }

    .mobile-nav.active {
      display: flex;
      transform: translateX(0);
    }

.mobile-nav a {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 17px;
    }

  
header a{color:white;
        text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav { display: none; }
      .menu-toggle { display: block; }
}

@media (max-width:250px){.header{display:block;padding:5px;text-align:center}.header a{display:none;padding:0}}