/* === NAVIGATION (All screens) === */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}

.hamburger {
  font-size: 1.5em;
  background: none;
  border: none;
  color: white;
  display: none; /* hidden by default */
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1em;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links.show {
  display: flex !important;
  flex-direction: column;
  background-color: #6b8be2;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 1em;
  z-index: 1000;
}
body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #6b8be2;
  color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 80px;
  display: block;
  margin: 0 auto 1em auto;
}

nav a {
  color: white;
  margin-left: 1em;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  padding: 1em;
  background: #e2e8f0;
  font-size: 0.9em;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
  text-align: center;
}

main > p:first-of-type {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section {
  margin-top: 3em;
  margin-bottom: 3em;
}

section:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 2em;
}

ul li {
  margin-bottom: 0.5em;
}

/* Cards & Services */
.card {
  background: #ffffff;
  padding: 2em;
  margin-top: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card h2 {
  text-align: center;
  color: #1E3A8A;
}

.card:hover {
  transform: translateY(-4px);
  transition: all 0.2s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5em;
  margin-top: 1em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.service-card {
  background: #ffffff;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-card h2 {
  margin-top: 0;
  font-size: 1.25em;
  color: #1E3A8A;
}

.service-card p {
  margin-top: 0.5em;
  font-size: 0.95em;
  line-height: 1.5;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  filter: invert(12%) sepia(84%) saturate(2270%) hue-rotate(210deg) brightness(91%) contrast(92%);
  transition: transform 0.2s ease;
}

.service-icon:hover {
  transform: scale(1.1);
}

/* CTA + Buttons */
.cta {
  text-align: center;
  margin-top: 3em;
}

.button {
  display: inline-block;
  background: #1E3A8A;
  color: white;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1em;
}

.button:hover {
  background: #2c5282;
}

/* Certifications */
.certs {
  text-align: center;
  margin-top: 3em;
}

.certs ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1em;
  text-align: center;
}

.badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85em;
  color: #444;
}

.cert-badge {
  height: 60px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  margin-bottom: 0.5em;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.2s ease;
}

.cert-badge:hover {
  transform: scale(1.05);
}

/* Contact Page */
.contact-details p {
  font-size: 1.1em;
  margin-bottom: 0.75em;
}

.form-section {
  margin-top: 3em;
}

.map-section {
  margin-top: 2em;
}

iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 100%;
  display: block;
}

/* Team Section */
.team-photos {
  display: flex;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 2em;
}

.bio-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.bio-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.caption {
  margin-top: 0.5em;
  font-size: 0.95em;
  text-align: center;
}

/* Responsive Layout */
@media (max-width: 600px) {
  .hamburger {
  display: block;
}
.nav-links {
  display: none;
  flex-direction: column;
  text-align: left; 
}
.nav-links.show {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-links a {
  margin: 0.5em 0;
}
  body {
    font-size: 16px;
  }

  main {
    padding: 1.2em;
  }

  header {
    align-items: center;
    text-align: center;
  }

  nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
  nav a {
    display: inline-block;
    margin: 0.25em 0.5em 0 0;
  }
  .cert-badge {
    margin-bottom: 1em;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .service-card {
    padding: 1em;
  }

  p, li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
  }

  h1, h2 {
    font-size: 1.5em;
    line-height: 1.3;
  }

  section {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.full-width-banner {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.centered-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.team-member {
  text-align: center;
  max-width: 250px;
}
header {
  text-align: center;
}
