body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0px;
  margin-right: 50px;
  margin-left: 50px;
  background-color: #13262e;
  border-style: solid;
  border-width: 1px;
  border-radius: 40px;
  border-color: #e68a36;
  padding: 0.3em 2em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
} */

.menu {
  display: flex;
  gap: 4em;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #ffa500;
}

.actions {
  display: flex;
  gap: 1em;
}

.wallet {
  background-color: #ffa500;
  color: #111;
  border: none;
  padding: 0.15em 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
}

.login {
  background-color: #444;
  color: white;
  border: none;
  padding: 0.15em 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.logo-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px 50px;
  background-color: transparent;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Vision Box Styling */
.vision-box {
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
}

.vision-box:hover {
  transform: rotate(0deg) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(229, 138, 55, 0.5), 0 0 30px rgba(229, 138, 55, 0.3);
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }
}
