@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;



}

/* ---- navbar ---- */

/* ---- navbar ---- */
.navbar {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  z-index: 1000;
  background: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar .logo {
  height: 50px;
  padding: 0px 0px 0px 20px;
}

.nav-links {
  display: flex;
  font-family: 'Poppins', cursive;
  list-style: none;
  gap: 16px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #567C8D;
  font-size: 15px;
  border-radius: 30px;
  padding: 8px 13px;
  transition: color 0.3s ease;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: #161616;
}

.nav-toggle svg {
  fill: currentColor;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    padding: 12px 20px;
    background: #000;
  }

  .nav-links.open { display: flex; }

  .navbar {
    position: fixed;
    border-radius: 0 0 30px 0;
  }
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ---- org chart ---- */
.org-section {
  padding: 5rem 2rem;
;
}








.org-header {
  text-align: center;
  margin-bottom: 3rem;
}

.org-sub {
  font-size: 13px;
  font-weight: 400;
  color: #567C8D;
  margin-bottom: 8px;

}

.org-header h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: #2F4156;
}

.org-level {
  max-width: 1100px;
  margin: 0 auto 1rem;
}

.level-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #567C8D;
  margin: 0 auto 1.25rem;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid #d0e8f0;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
}

.level-toggle:hover {
  background: #567C8D;
  color: #fff;
}

.level-toggle svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.level-toggle.collapsed svg {
  transform: rotate(-90deg);
}

.level-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #567C8D;
  margin-bottom: 1.25rem;
}

.level-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.level-cards.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

/* connector line between levels */
.org-level + .org-level .level-toggle::before {
  content: '';
  display: block;
  width: 2px;
  height: 24px;
  background: #d0e8f0;
  margin: 0 auto 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -28px;
}

.org-card {
  background: #fff;
  border: 0.5px solid #d0e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  width: 160px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(86, 124, 141, 0.15);
}

.org-photo {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: #e8f4f8;
  overflow: hidden;
}

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.org-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #567C8D;
}

.org-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2F4156;
  margin-bottom: 4px;
}

.org-card p {
  font-size: 12px;
  font-weight: 300;
  color: #888;
}

@media (max-width: 600px) {
  .org-card {
    width: 140px;
  }
}

.footer {
background: #020024;
  background: linear-gradient(210deg, #020024 0%, #090979 35%); 
   color: #fff;
  padding: 4rem 2rem 0;
  font-family: 'Poppins', sans-serif;

}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  background: #567C8D;
  color: #fff;
  border-color: #567C8D;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links ul a:hover { color: #fff; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p { max-width: 100%; }
}
