.site-header {
  position: fixed;       /* keeps it fixed at the top */
  top: 0;
  left: 0;
  width: 100%;           /* full width */
  z-index: 1000;         /* stays above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  padding: 15px 30px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2); /* subtle shadow for depth */
}


.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.2);
}

/* Gear icon hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Base nav styles */
.nav-links {
  display: flex;
  gap: 20px;
}
/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px; /* hidden off-screen */
    width: 220px;
    height: 100%;
    background: #2a5298;
    padding: 60px 20px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 15px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links a {
    display: block;
    margin: 15px 0;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
  }

  .nav-links a:hover {
    transform: translateX(-5px);
  }

  .nav-links.show {
    right: 0; /* slide into view */
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
  }

.menu-toggle.active {
color: #ffcc00;
animation: spin 0.1s;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
}
#content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  text-align: left;
}

#content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1e3c72;
}

#content p, #content li {
  font-size: 1.1rem;
  color: #333;
}

#content ul {
  list-style: none;
  padding: 0;
}

#content li {
  margin: 10px 0;
}

/* Animation setup */
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

