/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
    padding-top: 120px; /* adjust if navbar height changes */
  color: #1a1a1a;
  padding-bottom: 2rem;
}





/* Navbar */
/* Navbar */
.navbar {
  background-color: #022904;
  color: white;
  padding: 1rem 0;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;
}


.nav-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  color: #222;
}

.logo {
  height: 100px;
  width: auto;
  margin-right: 0.5rem;
  border-radius: 7px;
}

.brand-name {
  font-size: 1.4rem;
  color: #D4AF37;
  font-weight: 700;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  display: none;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a:not(.btn),
.nav-menu button:not(.btn) {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s;
}


.btn:hover {
  opacity: 0.9;
}


.nav-menu a:hover, .nav-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004f6d;
  margin-top: 0.5rem;
  border-radius: 5px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 180px;
}



/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal[hidden] {
  display: none;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}



/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #003f5c;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu.show {
    display: flex;
  }
}











/* Floating Accessibility Button */
#accessibility-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  background: #FFC107;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Accessibility Toolbar */
#accessibility-toolbar {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 280px;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  display: none;
  z-index: 10000;
}

/* Header */
.toolbar-header {
  background: #29AB87;
  color: #fff;
  padding: 12px;
  font-weight: bold;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Content */
.toolbar-content {
  padding: 14px;
}

.toolbar-content label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Close */
#close-accessibility {
  cursor: pointer;
  font-size: 18px;
}

/* Mobile Safe Area */
@media (max-width: 768px) {
  #accessibility-toggle {
    bottom: 16px;
    right: 16px;
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  #accessibility-toolbar {
    right: 16px;
    bottom: 80px;
    width: calc(100% - 32px);
    max-width: 340px;
  }
}



.no-animations * {
  animation: none !important;
  transition: none !important;
}

.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

.readable-font {
  font-family: Arial, Verdana, sans-serif !important;
}

.marked-titles h1,
.marked-titles h2,
.marked-titles h3 {
  outline: 2px dashed #ff9800;
}

.highlight-links a {
  background: yellow;
  color: #000;
}


  

  
  .toolbar-header {
    background: var(--jungle-green);
    color: rgb(155, 120, 120);
    padding: 10px;
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  
  .toolbar-content {
    padding: 10px;
    color: #111;
  }
  
  .toolbar-content label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
  }
  
  .powered {
    padding: 6px;
    font-size: 12px;
    text-align: center;
    background: #f8f8f8;
    border-top: 1px solid var(--accessible-border);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .no-animations *, .no-animations *::before, .no-animations *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .gentle-contrast *:not(img) {
    background-color: #f9f9f9 !important;
    color: #111 !important;
  }
  
  .gentle-contrast header, .gentle-contrast footer {
    background-color: #1e8e6d !important;
  }
  
  .readable-font *:not(img) {
    font-family: Verdana, Arial, sans-serif !important;
  }
  
  .highlight-links a,
  .highlight-links button {
    background-color: #eefcee !important;
    outline: 2px solid #29AB87 !important;
  }
  
  .marked-titles h1,
  .marked-titles h2,
  .marked-titles h3 {
    border-bottom: 2px dashed #29AB87;
    padding-bottom: 4px;
  }











.refined {
  background: #f9fafb;
  padding: 90px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 60px;
  color: #475569;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.team-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.role {
  display: block;
  margin: 8px 0 14px;
  font-weight: 600;
  color: #0f766e;
  font-size: 0.95rem;
}

.summary {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pillars span {
  background: #e6f4f1;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f766e;
  margin-top: 10px;
}

details p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}





























  
  .site-footer {
  background-color: rgb(1, 36, 19);
  color: #f0f0f0;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 360px;
}

.registration-stamp {
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.9;
  border-left: 3px solid #FFD700;
  padding-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 0.4rem;
}

.footer-contact i,
.footer-social i {
  margin-right: 0.5rem;
  color: #1c7ed6;
}

.social-icons a {
  color: #f0f0f0;
  margin-right: 1rem;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1c7ed6;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
}









/* Bottom Buttons Container (floats above footer) */
.bottom-buttons.accessibility-bottom {
  display: flex;
  justify-content: center; /* center horizontally */
  margin-bottom: 20px;     /* space above footer */
}

/* Accessibility Button */
#accessibility-button {
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #FFC107; /* accessible yellow */
  color: #111;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect */
#accessibility-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Accessibility Toolbar */
#accessibility-toolbar {
  width: 280px;
  margin: 10px auto 20px auto; /* center above footer */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: none;
  font-family: inherit;
}

/* Toolbar Header */
.toolbar-header {
  background: #29AB87;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Toolbar Content */
.toolbar-content {
  padding: 10px;
  color: #111;
}

.toolbar-content label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  #accessibility-toolbar {
    width: 90%;
  }
  #accessibility-button {
    width: 80%;
  }
}









  .registration-stamp {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.85;
  font-style: italic;
}
.registration-stamp {
  border-left: 3px solid #FFD700;
  padding-left: 10px;
}