.header {
  width: 100%;
  height: 90px;
  padding: 0 8%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 35px rgba(123, 17, 19, 0.08);
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 105px;
  width: auto;
  object-fit: contain;
}

.navbar {
  display: flex;
  justify-content: center; /* Center menu items */
  align-items: center;
  gap: 12px;

  min-width: 650px; /* Optional */
  background: #ffffff;
  padding: 8px 20px;

  border-radius: 50px;
  border: 1px solid rgba(123, 17, 19, 0.1);
}

.navbar a {
  color: #2b0a0a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 40px;
  transition: 0.3s ease;
}

.navbar a:hover {
  background: #7b1113;
  color: #ffffff;
}

.nav-btn {
  background: linear-gradient(135deg, #7b1113, #a51d22);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(123, 17, 19, 0.25);
  transition: 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(123, 17, 19, 0.35);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #7b1113;
  cursor: pointer;
}