
 body {
  margin: 0;
  font-family: sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #99b9fc;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1000;
}

.navbar-inner {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  position: absolute;
  top: -40px; /* lifts it above the navbar */
  left: 0;
  z-index: 1001;
}

.logo img {
  width: 140px;
  height: 140px;
  object-fit: contain; /* keeps proportions clean */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.menu {
  display: flex;
  gap: 20px;
  margin-left: 120px; /* gives room for the logo */
}

.menu a {
  color: #000000;
  text-decoration: none;
  font-size: 1em;
  padding: 8px 10px;
}

.menu a:hover {
  background-color: #cce0ff;
  border-radius: 5px;
}

