/* ==== NAVIGATION ADJUSTMENT ==== */
nav {
  background: transparent;
  text-align: center;
  margin-top: 16px;         /* Push it down under the header content */
  margin-bottom: 24px;      /* Space below nav so it doesn’t overlap */
  position: relative;
  z-index: 2;
}

.section {
  padding-top: 8px;         /* Small buffer so content never hides behind nav */
}

/* Optional: re-spacing for nav items */
nav ul li {
  margin: 0 16px;           /* More breathing room between menu items */
}



/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
header {
  background: url('gg.jpg') center center/cover no-repeat, #004080;
  color: white;
  padding: 20px 0;
  min-height: 320px;
  position: relative;
}
header::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 32, 80, 0.40);
  z-index: 1;
}
header > .container,
header h1,
header .tagline,
header .mission-vision {
  position: relative;
  z-index: 2;
}
header h1 {
  margin-bottom: 10px;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  background: #e0efff;
  text-align: center;
  padding: 60px 0;
}
.hero h2 {
  color: #003366;
  font-size: 2.5em;
}
.section {
  padding: 40px 0;
  background-color: white;
  margin-top: 20px;
}
h3 {
  color: #004080;
  margin-bottom: 10px;
}
ul li {
  margin: 10px 0;
}
form {
  margin-top: 20px;
}
input[type="file"] {
  margin: 10px 0;
}
button {
  background: #004080;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}
footer {
  background: #00254d;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h2 {
    font-size: 1.8em;
  }
}

.site-contact h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.contact-container a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #0d6efd;
  font-size: 1rem;
  transition: color .2s;
}
.contact-container a i {
  margin-right: .5rem;
}
.contact-container a:hover {
  color: #003366;
}
