/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 40px;
  position: fixed;   /* stays at top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}
.logo img {
  height: 100px;   /* Increased logo height */
  width: auto;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1e50ff;
}

/* Button */
.btn {
  background: #fff;
  color: #000;
  padding: 8px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #1e50ff;
  color: #fff;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 120px; /* Matches navbar height with large logo */
    right: 0;
    background: #000;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 18px;
    display: none;
    border-left: 2px solid #1e50ff;
  }

  .nav-links.active {
    display: flex;
  }

  .btn {
    display: none; /* Hide button on mobile */
  }

  .logo img {
    height: 80px; /* Slightly smaller on mobile */
  }

  .menu-toggle {
    display: block;
  }
}
