.navbar {
      background: linear-gradient(135deg, #181818e6, #0c0c0c);
      color: white;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: -4px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin: 0 auto;
      font-family: Roboto;
      border-radius: 8px;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    
    .logo span {
      background: linear-gradient(to right, #4da6ff, #00ccff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    /* ===== DESKTOP MENU ===== */
    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }
    
    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
      padding: 8px 4px;
      border-radius: 4px;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .nav-links a:hover, 
    .nav-links a:focus {
      color: #13ba3f;
      background: rgba(255, 255, 255, 0.08);
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #17d767;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .nav-links a:hover::after {
      width: 70%;
    }
    
    .nav-links .active {
      color: #009d00;
      font-weight: 600;
    }
    
    /* ===== HAMBURGER MENU (MOBILE) ===== */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
      transition: background 0.3s;
    }
    
    .hamburger:hover {
      background: rgba(255, 255, 255, 0.15);
    }
    
    .bar {
      display: block;
      width: 28px;
      height: 3px;
      margin: 5px auto;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease-in-out;
    }
    
    /* ===== DROPDOWN (Optional) ===== */
    .dropdown {
      position: relative;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #2c3e50;
      min-width: 200px;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1001;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    
    .dropdown-content a {
      display: block;
      padding: 12px 16px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    
    .dropdown-content a:hover {
      background: rgba(77, 166, 255, 0.15);
      color: #1ad976;
      padding-left: 18px;
    }
       
    /* ===== PAGE CONTENT EXAMPLE ===== */
    .content {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1.5rem;
      text-align: center;
    }
    .content h1 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      color: #2c3e50;
    }
    .content p {
      font-size: 1.2rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto 2rem;
    }

        /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 73px;
        right: -107%;
        flex-direction: column;
        background: linear-gradient(135deg, #1a6c3b, #2c5045);
        width: 85%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: all 0.4s ease;
        box-shadow: -4px 0 15px rgba(0,0,0,0.15);
        border-radius: 12px 0 0 12px;
        gap: 1.8rem;
        height: 364px;
      }
      
      .nav-links.active {
        right: 0;
      }
      
      .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin-top: 8px;
        border-radius: 8px;
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
      
      /* Hamburger animation */
      .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
    }

    @media(max-width:500px){
      .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-weight: 200;
        font-size: 13px;
        padding: 0px 0px;
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
    }

    .dropdown-content {
          position: static;
          display: none;
          opacity: 1;
          transform: none;
          box-shadow: none;
          background: rgba(0, 0, 0, 0.2);
          /* margin-top: 8px; */
          border-radius: 8px;
          padding: 33px;
          padding-top: 23px;
          height: 143px;
          padding-bottom: 0;
      }
    }