body {
  margin: 0;
  padding: 0;
}

/* Header styles */
header {
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

header {
  background: rgb(95 196 255);
}

/* Navigation styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

nav .toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 9999;
}

nav ul {
  display: flex;
  gap: 6px;
}

nav ul a {
  padding: 0.5rem;
  color: #333;
  text-decoration: none;
}

.logo-text {
  font-weight: bold;
  font-size: 1.8rem;
  background: linear-gradient(90deg,
      #00ff00,
      #00ffaa,
      #e5ff00,
      #55ffff,
      #ff00ff,
      #ff5599,
      #ff0000,
      #ff9900,
      #ffff00);
  vertical-align: middle;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Navigation underline animation */
nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /* add breathing room inside */
  box-sizing: border-box;
}

nav.container ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav.container a {
  position: relative;
  color: #333;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

nav.container a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

nav.container a:hover::before {
  transform: scaleX(1);
}

nav .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  /* Your green color */
  font-size: 24px;
  /* Default for large screens 
  font-weight: bold;*/
}

/* Responsive navigation */
@media (max-width: 768px) {
  nav .toggle {
    display: block;
  }

  nav ul li a {
    color: #038323 !important;
    font-weight: bold !important;
    font-size: 16px !important;
    padding: 12px 0px !important;
  }


  nav ul {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    background: #fff;
    flex-direction: column;
    width: 70%;
    height: 100%;
    margin: 0;
    padding: 2rem;
    transition: 0.5s;
    height: 100vh;
  }

  nav ul.menu-active {
    right: 0;
  }

  .logo-text {
    font-size: unset;
  }

  nav .logo a {
    font-size: unset;
    /* Smaller font for tablets & phones */
  }
}

