    /* NAVBAR */
    nav {
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0,0,0,0.6);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo {
      font-size: 1.4rem;
      font-weight: bold;
      color: #ffcc00;
    }
    .nav-links {
      display: flex;
      gap: 1rem;
    }
    .nav-links a {
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: #ffcc00; }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
    }
#samsunglogo{
  height: 80px;
  width: 80px;
  border-radius: 80%;
}
/* Navbar base styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav .nav-links {
  display: flex;
  gap: 20px;
}

nav .hamburger {
  display: none; /* hidden by default */
  font-size: 28px;
  cursor: pointer;
}

/* Responsive - small screens */
@media (max-width: 768px) {
  nav .nav-links {
    display: none; /* hide links */
    flex-direction: column;
    
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }

  nav .nav-links.active {
    display: flex; /* show when active */
  }

  nav .hamburger {
    display: block; /* show hamburger */
  }
}
