body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #F0F0F3; /* Cloud Ash */
  color: #3C3C3C; /* Text Base */
}

.header-wrapper {
  background: linear-gradient(to right, #11998e, #3AAFF7); /* Midnight Indigo to Electric Blue */
  color: white;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-logo img {
  height: 50px;
  object-fit: contain;
  border-radius: 40px;
}

.header-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #F7B32B; /* Deep Gold */
  font-weight: bold;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #F7B32B; /* Deep Gold */
}

.header-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: #F7B32B;
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  z-index: 1001;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: 130%;
    right: 2px;
    background: #11998e;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    width: max-content;
    min-width: 100px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
  }

  .header-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .header-nav.show {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-toggle {
    display: block;
  }

  .header-nav ul li {
    width: 100%;
  }

  .header-nav ul li a {
    display: block;
  }
}


/*hide text header*/
/* Hide text on small screens */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}
