/* ===================== */
/*        FONTS         */
/* ===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@400;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --gray-dark: #121212;
  --green: #4caf88;       /* softer, muted green */
  --green-dark: #3a8c6b;  /* darker, muted green */
  --gold: #ffd700;
  --white: #ffffff;
  --gray: #bbbbbb;
  --accent: #333;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition: 0.3s ease-in-out;
}

/* ===================== */
/*      BASE + RESET     */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/*body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
}*/


body.light {
  background: #e6e7e0;
  color: #f8ffa6;
}

/* ===================== */
/*       TOPBAR          */
/* ===================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 40px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform var(--transition);
}

.topbar-nav {
  display: flex;
  gap: 30px;
}
.topbar-nav a.link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
  transition: all var(--transition);
}

.topbar-nav a.link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

body.light .topbar-nav a.link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
body.light .topbar-nav a.link:hover::after {
  width: 100%;
}

.topbar-nav a.link:hover::after {
  width: 100%;
}

.theme-toggle,
.menu-btn {
  background: none;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}

body.light .theme-toggle,
body.light.menu-btn {
  background: none;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}
.theme-toggle:hover,
.menu-btn:hover {
  background: var(--green);
  color: var(--black);
}

body.light .theme-toggle:hover,
body.light .menu-btn:hover {
  background: var(--white);
  color: var(--black);
}

/* ===================== */
/*        SIDEBAR        */
/* ===================== */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: var(--gray-dark);
  padding: 100px 24px 24px;
  overflow-y: auto;
  transition: left var(--transition);
  z-index: 998;
  border-right: 1px solid #333;
  font-family: var(--font-body);
}
.sidebar.open {
  left: 0;
}
.sidebar h3 {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.sidebar a,
.sidebar button.dropbtn {
  color: var(--green);
  display: block;
  margin: 12px 0;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}
.sidebar a:hover,
.sidebar button.dropbtn:hover {
  color: var(--gold);
  transform: translateX(6px);
}
.sidebar .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  color: var(--green);
  border: none;
  cursor: pointer;
}
/* Dropdown container (needed to position the dropdown content) */
.sidebar .dropdown {
  position: relative;
}
/* Dropdown content (hidden by default) */
.sidebar .dropdown-content {
  display: none;
  position: relative;
  padding-left: 14px;
  margin-left: 10px;
  border-left: 2px solid var(--green);
  margin-bottom: 12px;
}
/* Show the dropdown content when the dropdown is open */
.sidebar .dropdown.open > .dropdown-content {
  display: block;
}

/* ===================== */
/*        HERO           */
/* ===================== */
.hero-section {
  max-width: 720px;
  margin: 60px auto 80px;
  padding: 0 24px;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}
.hero-section p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.9s ease-out;
}

/* ===================== */
/*        SECTIONS       */
/* ===================== */
section.card, .intro {
  background: var(--gray-dark);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,255,136,0.12);
  margin-bottom: 50px;
  transition: box-shadow var(--transition), transform var(--transition);
  color: var(--white);
  max-width: 100%;
}
section.card:hover, .intro:hover {
  box-shadow: 0 10px 50px rgba(255, 215, 0, 0.15);
  transform: translateY(-3px);
}
section h2, .intro h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 10px;
}

/* Info box content improved layout */
section.card .content, .intro .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #d0f8d0;
}

/* Make paragraphs inside content lighter */
section.card .content p, .intro .content p {
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* ===================== */
/*    PORTFOLIO CARDS    */
/* ===================== */
.portfolio-card {
  background: var(--gray-dark);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
  transition: box-shadow var(--transition), transform var(--transition);
  color: var(--white);
}
.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
  transform: translateY(-6px);
}
.portfolio-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--green);
}
.portfolio-card p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #a9e4b5;
  line-height: 1.5;
}

/* Buttons inside portfolio cards */
.portfolio-card .btn {
  background-color: var(--green);
  color: var(--black);
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-body);
}
.portfolio-card .btn:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ===================== */
/*         TABLE         */
/* ===================== */
.roles-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.roles-table th,
.roles-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #333;
}
.roles-table th {
  background-color: #2c2c2c;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}
.roles-table td {
  color: #ccc;
}

/* ===================== */
/*         FOOTER        */
/* ===================== */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===================== */
/*     LIGHT MODE FIXES  */
/* ===================== */
body.light .topbar {
  background: #e6e7e0;
}
body.light .logo,
body.light .topbar-nav a.link,
body.light .theme-toggle,
body.light .menu-btn {
  color: #000000;
}
body.light .sidebar {
  background: #f0f2f5;
  border-right: 1px solid #ccc;
  color: #005f3f;
  padding-top: 90px;
}
body.light h2 {
  color:#005f3f;
}
body.light h3{
  color: #005f3f;
}
body.light p {
  color: #000000;
}
body.light .achievement-grid{
  color: #1b5e20;

}

body.light .sidebar h3,
body.light .sidebar a,
body.light .sidebar button.dropbtn {
  color: #005f3f;
}
body.light .sidebar a:hover,
body.light .sidebar button.dropbtn:hover {
  color: #1b5e20;
}
body.light .hero-section h1 {
  color: #1f1f1c;
}

body.light .hero-content h1 {
   color: #1f1f1c;
 }
body.light .team-hero .highlight {
   color: #5b5507;
 }

body.light section.card,
body.light .intro {
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
  color: #333;
}
body.light .roles-table th {
  background: #eee;
  color: var(--green-dark);
}
body.light .roles-table td {
  color: #111;
}
body.light .portfolio-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 20px rgba(0, 127, 95, 0.1);
  color: #005f3f;
}
body.light .portfolio-card:hover {
  box-shadow: 0 10px 30px rgba(30, 150, 70, 0.15);
}
body.light .portfolio-card .btn {
  background-color: var(--green-dark);
  color: #fff;
}
body.light .portfolio-card .btn:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ===================== */
/*     ANIMATIONS        */
/* ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== */
/*    RESPONSIVE         */
/* ===================== */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    padding: 12px;
  }
  .topbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-section h1 {
    font-size: 2.4rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  main {
    padding: 0 20px;
  }
  footer {
    padding: 0 20px;
  }
  .hero-section {
    padding: 0 16px;
  }
  section.card, .intro {
    padding: 24px 20px;
  }
  .portfolio-card {
    padding: 18px 22px;
  }
}
@media (max-width: 768px) {
  .topbar {
    flex-direction: row;       /* keep items in a row */
    flex-wrap: wrap;           /* allow wrapping if needed */
    padding: 0 16px;
    height: auto;              /* let it grow naturally */
  }

  .topbar-nav {
    flex-direction: row;       /* keep nav inline */
    gap: 16px;
    flex-wrap: wrap;           /* wrap nav items if space is tight */
    justify-content: center;   /* center nav links */
  }

  .theme-toggle,
  .menu-btn {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}


/* MAIN PAGE WRAPPER */
main {
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 0 32px;
  box-sizing: border-box;
}
/* Dropdown toggle - inline flex with no highlight on hover */
.sidebar-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;    /* no box background */
  border: none;        /* no border */
  color: #00ff88;
  cursor: pointer;
  padding: 0;          /* no padding around text */
  font-size: 1rem;
  font-weight: 500;
  user-select: none;
  text-align: left;
  transition: color 0.2s ease;
}

/* Remove highlight/background on hover, only change text color slightly */
.sidebar-dropdown .dropdown-toggle:hover,
.sidebar-dropdown .dropdown-toggle:focus {
  background: none;
  color: #55ffaa;
  outline: none;
}

/* Arrow inline, exactly aligned with text baseline */
.sidebar-dropdown .arrow {
  font-size: 1rem;
  margin-left: 6px;  /* small gap between text and arrow */
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-flex;       /* inline with text */
  align-items: center;        /* vertical center */
  line-height: 1;
}

/* Rotate arrow 90 degrees when open */
.sidebar-dropdown.open .arrow {
  transform: rotate(90deg);
}

/* Dropdown content */
.dropdown-content {
  display: none;
  padding-left: 16px;
  margin-top: 6px;
}

/* Show dropdown content when open */
.sidebar-dropdown.open .dropdown-content {
  display: block;
}

/* Dropdown links - no highlight background on hover */
.dropdown-content a {
  display: block;
  color: #00ff88;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

/* On hover/focus - only text color changes */
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: none;
  color: #55ffaa;
  outline: none;
}
.sidebar-dropdown .dropdown-toggle button {
  all: unset;              /* Removes all browser default styles */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;        /* small spacing from text */
  font-size: 1rem;
  color: inherit;          /* inherit text color */
  user-select: none;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.portfolio-card {
  background: #121212; /* dark background */
  border: 1px solid #2a2a2a; /* subtle border */
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 255, 136, 0.15); /* soft green shadow */
  color: #d0f8d0; /* pale green text */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.portfolio-card:hover {
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35);
  transform: translateY(-6px);
}

.portfolio-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: contain;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.1);
}

.portfolio-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #00cc6e; /* muted green */
  user-select: none;
}

.portfolio-award {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #9bdca3; /* lighter green */
}

.portfolio-link a {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  color: #00cc6e; /* muted green */
  border: 1.5px solid #00cc6e;
  border-radius: 24px;
  padding: 10px 28px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.portfolio-link a:hover {
  background-color: #00cc6e;
  color: #121212;
  border-color: #00cc6e;
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* Team Hero */
.team-hero {
  padding: 100px 20px 80px;
  text-align: center;
  color: var(--green-dark);
  background: transparent;
  text-shadow: 0 0 8px rgba(0, 204, 110, 0.6);
}

.team-logo {
  width: 160px;
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green-dark);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px var(--green);
}

.team-hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
  color: var(--green-dark);
}

.team-hero .highlight {
  color: var(--green);
}

.team-hero .tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
  text-shadow: none;
}
body.light .team-hero .tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
  text-shadow: none;
}

/* Team Intro */
.team-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 48px 32px;
  color: var(--white);
}

.intro-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text {
  flex: 1 1 460px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cde6cd;
  font-weight: 500;
}

.intro-image-wrapper {
  flex: 1 1 460px;
  text-align: center;
}

.intro-image {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 204, 110, 0.3);
  transition: box-shadow 0.3s ease;
}

.intro-image:hover {
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.5);
}

/* Achievements Grid */
.team-achievements {
  padding: 48px 32px;
  color: var(--white);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 24px auto 0;
}

.achievement-card {
  background: var(--gray-dark);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: var(--white);
}

body.light .achievement-card {
             background: var(--gray);
             border-radius: 16px;
             padding: 24px 20px;
             box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15);
             text-align: center;
             transition: box-shadow 0.3s ease, transform 0.3s ease;
             color: var(--white);
           }

.achievement-card:hover {
  box-shadow: 0 14px 40px rgba(0, 204, 110, 0.3);
  transform: translateY(-6px);
}

.achievement-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(0, 255, 136, 0.25);
}

body.light .achievement-card h3{
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}

.achievement-card h3 {
  color: var(--dark-gray);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}

.achievement-card p {
  color: #a9e4b5;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}

/* Team Mission */
.team-mission {
  padding: 48px 32px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.team-mission h2 {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.team-mission p {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: #cde6cd;
  max-width: 700px;
  margin: 0 auto 30px;
}

.mission-image-wrapper img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
  transition: box-shadow 0.3s ease;
}

.mission-image-wrapper img:hover {
  box-shadow: 0 12px 48px rgba(0, 255, 136, 0.35);
}

/* CTA Section */
.cta-section {
  background: var(--gray-dark);
  padding: 40px 32px;
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
  transition: box-shadow 0.3s ease;
}

.cta-section:hover {
  box-shadow: 0 14px 45px rgba(0, 204, 110, 0.25);
}

.cta-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--green);
}

.cta-section p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #bde4b8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--green-dark);
  color: var(--black);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 255, 136, 0.4);
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .team-intro .intro-flex {
    flex-direction: column;
    text-align: center;
  }
  .intro-text,
  .intro-image-wrapper {
    flex: 1 1 100%;
  }
  .team-hero h1 {
    font-size: 2.8rem;
  }
  .team-hero .tagline {
    font-size: 1.2rem;
  }
  .achievement-card {
    padding: 20px 16px;
  }
  .achievement-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .team-hero h1 {
    font-size: 2.2rem;
  }
  .team-hero .tagline {
    font-size: 1rem;
  }
  .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Main Outreach link */
.dropdown > .link {
  color: var(--green);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 10px;
  transition: color 0.3s ease;
}

.dropdown > .link:hover {
  color: #55ffaa;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: var(--gray-dark);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(0, 255, 136, 0.1);
  z-index: 1000;
  padding: 8px 0;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #1e1e1e;
  color: #00ffcc;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}

body.light .contact-form label {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: var(--gray-dark);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
body.light .contact-form input,
body.light .contact-form textarea {
  padding: 10px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
}

.contact-form .btn {
  background-color: var(--green);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.contact-form .btn:hover {
  background-color: #00e673;
}
.contact-form ul {
  margin: 10px 0 20px;
  padding-left: 18px;
  color: #a0dca0;
  font-size: 0.95rem;
}

.contact-form select,
.contact-form input[type="file"] {
  background-color: var(--gray-dark);
  color: var(--white);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form select:focus,
.contact-form input[type="file"]:focus {
  border-color: var(--green);
  outline: none;
}
/* Hide default file input */
.custom-file-upload input[type="file"] {
  display: none;
}

/* Styled label that looks like a button */
.custom-file-upload .file-label {
  background-color: var(--green);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s ease;
}

.custom-file-upload .file-label:hover {
  background-color: var(--green-dark);
}

/* Filename display */
#file-name {
  margin-left: 14px;
  font-size: 0.95rem;
  color: #a0dca0;
  font-style: italic;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px; /* Space between buttons */
  margin-top: 24px;
  flex-wrap: wrap; /* Makes sure it wraps on smaller screens */
}

.btn {
  background-color: var(--green);
  color: var(--black);
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group input[type="text"],
.form-group select,
.form-group input[type="file"] {
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #1a1a1a;
  color: var(--white);
  font-family: var(--font-body);
}

body.light .form-group input[type="text"],
body.light .form-group select,
body.light .form-group input[type="file"] {
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 8px;
  background: white;
  color: var(--black);
  font-family: var(--font-body);
}


.form-group input[type="text"]::placeholder {
  color: #888;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
}

body.light .form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.form-group small {
  font-size: 0.8rem;
  color: #aaa;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  background-color: var(--green);
  color: var(--black);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
}
.mentorship-form-section {
  max-width: 1100px; /* Match .contact-form and section.card widths */
  margin: 0 auto 60px;
  background: var(--gray-dark);
  padding: 48px 40px; /* Add more padding for wide layout */
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
  color: var(--white);
  font-family: var(--font-body);
}

body.light .mentorship-form-section {
  max-width: 1100px; /* Match .contact-form and section.card widths */
  margin: 0 auto 60px;
  background: var(--white);
  padding: 48px 40px; /* Add more padding for wide layout */
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
  color: var(--blue);
  font-family: var(--font-body);
}


.mentorship-form-section h2 {
  font-family: var(--font-display);
  color: var(--green);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
}

.mentorship-form-section em {
  font-size: 0.9rem;
  color: #7ac17f;
  margin-bottom: 18px;
  display: block;
}

.mentorship-form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
}

body.light .mentorship-form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}

.mentorship-form input[type="text"],
.mentorship-form input[type="url"],
.mentorship-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background-color: #121212;
  color: var(--black);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 40px;
}

body.light .mentorship-form input[type="text"],
body.light .mentorship-form input[type="url"],
body.light .mentorship-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background-color: white;
  color: var(--black);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 40px;
}

.mentorship-form textarea {
  min-height: 80px;
}

.mentorship-form input::placeholder,
.mentorship-form textarea::placeholder {
  color: #5a5a5a;
}

body.light .mentorship-form input::placeholder,
body.light .mentorship-form textarea::placeholder {
  color: light-gray;
}


.mentorship-form input:focus,
.mentorship-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background-color: #181818;
}

.mentorship-form small {
  font-weight: 400;
  font-size: 0.85rem;
  color: #7ac17f;
}

.mentorship-form button.btn {
  margin-top: 26px;
  background-color: var(--green);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mentorship-form button.btn:hover {
  background-color: var(--green-dark);
  color: var(--white);
}
.resources-section {
  background-color: #0a0a0a;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

body.light .resources-section {
    background-color: #e6e7e0;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}


.resources-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-align: center;
}

body.light .resources-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
  text-align: center;
}

.resources-subtitle {
  font-size: 1.25rem;
  color: ##95a69b;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  text-align: center;
  line-height: 1.4;
}

body.light .resources-subtitle {
  font-size: 1.25rem;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  text-align: center;
  line-height: 1.4;
}

.resource-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 168, 107, 0.15);
  transition: transform 0.2s ease;
}

body.light .resource-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 168, 107, 0.15);
  transition: transform 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.25);
}

.resource-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}


.resource-info {
  padding: 2rem;
}

.resource-info h2 {
  font-size: 1.8rem;
  color: #ffcc00;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

.resource-info p {
  color: #dcdcdc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.resource-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #00a86b;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.resource-btn:hover {
  background-color: #008f5f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .resource-img {
    height: 200px;
  }

  .resource-info {
    padding: 1.5rem;
  }
}
.resource-img {
  width: 100%;
  height: auto;     /* Keep natural image height */
  display: block;
  object-fit: contain;  /* Show full image without cropping */
}

.resource-info {
  padding: 2rem;
  text-align: center; /* Center all content inside */
}

.resource-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #00a86b;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 auto;  /* center horizontally */
}

.resource-btn:hover {
  background-color: #008f5f;
}
ul {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style-position: outside;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #ffffff;
}
    table.checklist-table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5em 0;
    }

    table.checklist-table th,
    table.checklist-table td {
      border: 1px solid #555;
      padding: 0.6em;
      text-align: left;
      vertical-align: top;
    }

    table.checklist-table th {
      background-color: #1e1e1e;
      color: #00ff99;
    }

    .toggle-group {
      display: flex;
      gap: 5px;
    }

    .btn {
      padding: 0.4em 0.8em;
      border: 1px solid #888;
      background: #333;
      color: white;
      cursor: pointer;
      font-size: 1rem;
      border-radius: 4px;
      transition: 0.2s;
    }

    .btn:hover {
      background-color: #555;
    }

    .btn.active {
      background-color: #2e7d32;
      font-weight: bold;
    }

    .btn.cross.active {
      background-color: #b71c1c;
    }

    td[contenteditable="true"] {
      background-color: #1a1a1a;
    }

    .notes-box {
      width: 100%;
      height: 80px;
      resize: none;
      padding: 0.5em;
      font-family: inherit;
      font-size: 1rem;
      background-color: #1a1a1a;
      border: 1px solid #444;
      color: #fff;
      box-sizing: border-box;
      overflow-y: auto;
    }
.btn.na {
  background-color: #666666;
  color: white;
  border: 1px solid #999999;
  margin-left: 4px;
}

.btn.na.active {
  background-color: #5555aa;
  border-color: #444488;
  color: white;
}

    .card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 1.5em;
      margin: 1em 0;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    th, td {
      border: 1px solid #444;
      padding: 0.5em;
      text-align: left;
    }
    th {
      background-color: #333;
      color: #f5c518;
    }
    td {
      background-color: #222;
      color: #ddd;
    }
    .tip, .important, .example, .warning {
      border-left: 4px solid #f5c518;
      padding: 0.5em 1em;
      margin: 1em 0;
      background-color: #1f1f1f;
    }
    .important { border-color: #e74c3c; }
    .warning { border-color: #f39c12; }
    .example { border-color: #3498db; }
    .icon { display: inline-block; width: 1.2em; text-align: center; margin-right: 0.5em; color: #f5c518; }
/* WHY WE DO THIS */
.why-we-do-this {
  padding: 30px;
  margin: 40px auto;
  text-align: center;
  max-width: 900px;
}
.why-we-do-this h2 {
  color: var(--primary, #00d084);
  margin-bottom: 15px;
}/* ===================== */
 /*        FONTS         */
 /* ===================== */
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@400;600;700&display=swap');

 :root {
   --black: #0a0a0a;
   --gray-dark: #121212;
   --green: #4caf88;       /* softer, muted green */
   --green-dark: #3a8c6b;  /* darker, muted green */
   --gold: #ffd700;
   --white: #ffffff;
   --gray: #bbbbbb;
   --accent: #333;
   --font-body: 'Inter', sans-serif;
   --font-display: 'Outfit', sans-serif;
   --transition: 0.3s ease-in-out;
 }

 /* ===================== */
 /*      BASE + RESET     */
 /* ===================== */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
 html {
   scroll-behavior: smooth;
 }
 body {
   font-family: var(--font-body);
   background: var(--black);
   color: var(--white);
   line-height: 1.7;
   transition: background var(--transition), color var(--transition);
 }

 body.light {
   background: #e6e7e0;
   color: #f8ffa6;
 }

 /* ===================== */
 /*       TOPBAR          */
 /* ===================== */
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 70px;
   padding: 0 40px;
   background: rgba(10,10,10,0.9);
   backdrop-filter: blur(8px);
   border-bottom: 1px solid #222;
   position: sticky;
   top: 0;
   z-index: 1000;
   transition: all var(--transition);
 }

 .logo {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.8rem;
   color: var(--green);
   text-decoration: none;
   letter-spacing: 1px;
   transition: transform var(--transition);
 }

 .topbar-nav {
   display: flex;
   gap: 30px;
 }
 .topbar-nav a.link {
   color: var(--white);
   font-weight: 500;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   text-decoration: none;
   position: relative;
   transition: all var(--transition);
 }

 .topbar-nav a.link::after {
   content: "";
   position: absolute;
   bottom: -6px;
   left: 0;
   width: 0%;
   height: 2px;
   background: var(--green);
   transition: width 0.3s;
 }

 body.light .topbar-nav a.link::after {
   content: "";
   position: absolute;
   bottom: -6px;
   left: 0;
   width: 0%;
   height: 2px;
   background: var(--gold);
   transition: width 0.3s;
 }
 body.light .topbar-nav a.link:hover::after {
   width: 100%;
 }

 .topbar-nav a.link:hover::after {
   width: 100%;
 }

 .theme-toggle,
 .menu-btn {
   background: none;
   border: 1px solid var(--green);
   color: var(--green);
   padding: 6px 14px;
   border-radius: 6px;
   cursor: pointer;
   font-weight: 600;
   transition: all var(--transition);
 }

 body.light .theme-toggle,
 body.light.menu-btn {
   background: none;
   border: 1px solid var(--black);
   color: var(--black);
   padding: 6px 14px;
   border-radius: 6px;
   cursor: pointer;
   font-weight: 600;
   transition: all var(--transition);
 }
 .theme-toggle:hover,
 .menu-btn:hover {
   background: var(--green);
   color: var(--black);
 }

 body.light .theme-toggle:hover,
 body.light .menu-btn:hover {
   background: var(--white);
   color: var(--black);
 }

 /* ===================== */
 /*        SIDEBAR        */
 /* ===================== */
 .sidebar {
   position: fixed;
   top: 0;
   left: -260px;
   width: 260px;
   height: 100vh;
   background: var(--gray-dark);
   padding: 100px 24px 24px;
   overflow-y: auto;
   transition: left var(--transition);
   z-index: 998;
   border-right: 1px solid #333;
   font-family: var(--font-body);
 }
 .sidebar.open {
   left: 0;
 }
 .sidebar h3 {
   font-size: 0.85rem;
   color: var(--gray);
   text-transform: uppercase;
   margin-bottom: 1rem;
   letter-spacing: 1px;
 }
 .sidebar a,
 .sidebar button.dropbtn {
   color: var(--green);
   display: block;
   margin: 12px 0;
   text-decoration: none;
   font-weight: 600;
   background: none;
   border: none;
   cursor: pointer;
   width: 100%;
   text-align: left;
   padding: 8px 0;
   font-size: 1rem;
   transition: color var(--transition), transform var(--transition);
 }
 .sidebar a:hover,
 .sidebar button.dropbtn:hover {
   color: var(--gold);
   transform: translateX(6px);
 }
 .sidebar .close-btn {
   position: absolute;
   top: 16px;
   right: 16px;
   font-size: 1.5rem;
   background: none;
   color: var(--green);
   border: none;
   cursor: pointer;
 }
 /* Dropdown container (needed to position the dropdown content) */
 .sidebar .dropdown {
   position: relative;
 }
 /* Dropdown content (hidden by default) */
 .sidebar .dropdown-content {
   display: none;
   position: relative;
   padding-left: 14px;
   margin-left: 10px;
   border-left: 2px solid var(--green);
   margin-bottom: 12px;
 }
 /* Show the dropdown content when the dropdown is open */
 .sidebar .dropdown.open > .dropdown-content {
   display: block;
 }

 /* ===================== */
 /*        HERO           */
 /* ===================== */
 .hero-section {
   max-width: 720px;
   margin: 60px auto 80px;
   padding: 0 24px;
   text-align: center;
   background: transparent !important;
   border: none !important;
   box-shadow: none !important;
 }
 .hero-section h1 {
   font-family: var(--font-display);
   font-size: 3.5rem;
   color: var(--green);
   margin-bottom: 20px;
   animation: fadeInUp 0.6s ease-out;
 }
 .hero-section p {
   font-size: 1.2rem;
   color: #ccc;
   max-width: 700px;
   margin: 0 auto;
   animation: fadeInUp 0.9s ease-out;
 }

 /* ===================== */
 /*        SECTIONS       */
 /* ===================== */
 section.card, .intro {
   background: var(--gray-dark);
   padding: 36px 32px;
   border-radius: 16px;
   box-shadow: 0 6px 30px rgba(0,255,136,0.12);
   margin-bottom: 50px;
   transition: box-shadow var(--transition), transform var(--transition);
   color: var(--white);
   max-width: 100%;
 }
 section.card:hover, .intro:hover {
   box-shadow: 0 10px 50px rgba(255, 215, 0, 0.15);
   transform: translateY(-3px);
 }
 section h2, .intro h2 {
   font-family: var(--font-display);
   font-size: 1.8rem;
   color: var(--green);
   margin-bottom: 20px;
   border-bottom: 2px solid var(--green);
   padding-bottom: 10px;
 }

 /* Info box content improved layout */
 section.card .content, .intro .content {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 1rem;
   line-height: 1.5;
   color: #d0f8d0;
 }

 /* Make paragraphs inside content lighter */
 section.card .content p, .intro .content p {
   color: #FFFFFF;
   margin-bottom: 8px;
 }

 /* ===================== */
 /*    PORTFOLIO CARDS    */
 /* ===================== */
 .portfolio-card {
   background: var(--gray-dark);
   border-radius: 14px;
   padding: 24px 28px;
   margin-bottom: 32px;
   box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
   transition: box-shadow var(--transition), transform var(--transition);
   color: var(--white);
 }
 .portfolio-card:hover {
   box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
   transform: translateY(-6px);
 }
 .portfolio-card h3 {
   font-family: var(--font-display);
   font-size: 1.6rem;
   margin-bottom: 14px;
   color: var(--green);
 }
 .portfolio-card p {
   font-size: 1rem;
   margin-bottom: 18px;
   color: #a9e4b5;
   line-height: 1.5;
 }

 /* Buttons inside portfolio cards */
 .portfolio-card .btn {
   background-color: var(--green);
   color: var(--black);
   border: none;
   padding: 12px 26px;
   border-radius: 12px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s ease;
   text-decoration: none;
   display: inline-block;
   font-family: var(--font-body);
 }
 .portfolio-card .btn:hover {
   background-color: var(--gold);
   color: var(--black);
 }

 /* ===================== */
 /*         TABLE         */
 /* ===================== */
 .roles-table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 20px;
   box-shadow: 0 2px 12px rgba(255, 215, 0, 0.1);
   border-radius: 8px;
   overflow: hidden;
 }
 .roles-table th,
 .roles-table td {
   padding: 14px 20px;
   text-align: left;
   border-bottom: 1px solid #333;
 }
 .roles-table th {
   background-color: #2c2c2c;
   color: var(--gold);
   font-size: 0.9rem;
   text-transform: uppercase;
 }
 .roles-table td {
   color: #ccc;
 }

 /* ===================== */
 /*         FOOTER        */
 /* ===================== */
 footer {
   text-align: center;
   padding: 40px 0;
   font-size: 0.9rem;
   color: var(--gray);
 }

 /* ===================== */
 /*     LIGHT MODE FIXES  */
 /* ===================== */
 body.light .topbar {
   background: #e6e7e0;
 }
 body.light .logo,
 body.light .topbar-nav a.link,
 body.light .theme-toggle,
 body.light .menu-btn {
   color: #000000;
 }
 body.light .sidebar {
   background: #f0f2f5;
   border-right: 1px solid #ccc;
   color: #005f3f;
   padding-top: 90px;
 }
 body.light h2 {
   color:#005f3f;
 }
 body.light h3{
   color: #005f3f;
 }
 body.light p {
   color: #000000;
 }
 body.light .achievement-grid{
   color: #1b5e20;

 }

 body.light .sidebar h3,
 body.light .sidebar a,
 body.light .sidebar button.dropbtn {
   color: #005f3f;
 }
 body.light .sidebar a:hover,
 body.light .sidebar button.dropbtn:hover {
   color: #1b5e20;
 }
 body.light .hero-section h1 {
   color: #1f1f1c;
 }

 body.light .hero-content h1 {
    color: #1f1f1c;
  }
 body.light .team-hero .highlight {
    color: #5b5507;
  }

 body.light section.card,
 body.light .intro {
   background: #ffffff;
   border: 1px solid #ddd;
   box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
   color: #333;
 }
 body.light .roles-table th {
   background: #eee;
   color: var(--green-dark);
 }
 body.light .roles-table td {
   color: #111;
 }
 body.light .portfolio-card {
   background: #fff;
   border: 1px solid #ddd;
   box-shadow: 0 6px 20px rgba(0, 127, 95, 0.1);
   color: #005f3f;
 }
 body.light .portfolio-card:hover {
   box-shadow: 0 10px 30px rgba(30, 150, 70, 0.15);
 }
 body.light .portfolio-card .btn {
   background-color: var(--green-dark);
   color: #fff;
 }
 body.light .portfolio-card .btn:hover {
   background-color: var(--gold);
   color: var(--black);
 }

 /* ===================== */
 /*     ANIMATIONS        */
 /* ===================== */
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* ===================== */
 /*    RESPONSIVE         */
 /* ===================== */
 @media (max-width: 768px) {
   .topbar {
     flex-direction: column;
     padding: 12px;
   }
   .topbar-nav {
     flex-direction: column;
     align-items: center;
     gap: 12px;
   }
   .hero-section h1 {
     font-size: 2.4rem;
   }
   .hero-section p {
     font-size: 1rem;
   }
   main {
     padding: 0 20px;
   }
   footer {
     padding: 0 20px;
   }
   .hero-section {
     padding: 0 16px;
   }
   section.card, .intro {
     padding: 24px 20px;
   }
   .portfolio-card {
     padding: 18px 22px;
   }
 }
 @media (max-width: 768px) {
   .topbar {
     flex-direction: row;       /* keep items in a row */
     flex-wrap: wrap;           /* allow wrapping if needed */
     padding: 0 16px;
     height: auto;              /* let it grow naturally */
   }

   .topbar-nav {
     flex-direction: row;       /* keep nav inline */
     gap: 16px;
     flex-wrap: wrap;           /* wrap nav items if space is tight */
     justify-content: center;   /* center nav links */
   }

   .theme-toggle,
   .menu-btn {
     padding: 6px 10px;
     font-size: 0.9rem;
   }
 }


 /* MAIN PAGE WRAPPER */
 main {
   max-width: 1100px;
   margin: 80px auto 40px;
   padding: 0 32px;
   box-sizing: border-box;
 }
 /* Dropdown toggle - inline flex with no highlight on hover */
 .sidebar-dropdown .dropdown-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: none;    /* no box background */
   border: none;        /* no border */
   color: #00ff88;
   cursor: pointer;
   padding: 0;          /* no padding around text */
   font-size: 1rem;
   font-weight: 500;
   user-select: none;
   text-align: left;
   transition: color 0.2s ease;
 }

 /* Remove highlight/background on hover, only change text color slightly */
 .sidebar-dropdown .dropdown-toggle:hover,
 .sidebar-dropdown .dropdown-toggle:focus {
   background: none;
   color: #55ffaa;
   outline: none;
 }

 /* Arrow inline, exactly aligned with text baseline */
 .sidebar-dropdown .arrow {
   font-size: 1rem;
   margin-left: 6px;  /* small gap between text and arrow */
   flex-shrink: 0;
   transition: transform 0.3s ease;
   display: inline-flex;       /* inline with text */
   align-items: center;        /* vertical center */
   line-height: 1;
 }

 /* Rotate arrow 90 degrees when open */
 .sidebar-dropdown.open .arrow {
   transform: rotate(90deg);
 }

 /* Dropdown content */
 .dropdown-content {
   display: none;
   padding-left: 16px;
   margin-top: 6px;
 }

 /* Show dropdown content when open */
 .sidebar-dropdown.open .dropdown-content {
   display: block;
 }

 /* Dropdown links - no highlight background on hover */
 .dropdown-content a {
   display: block;
   color: #00ff88;
   text-decoration: none;
   font-size: 0.95rem;
   font-weight: 400;
   margin-bottom: 6px;
   transition: color 0.2s ease;
 }

 /* On hover/focus - only text color changes */
 .dropdown-content a:hover,
 .dropdown-content a:focus {
   background: none;
   color: #55ffaa;
   outline: none;
 }
 .sidebar-dropdown .dropdown-toggle button {
   all: unset;              /* Removes all browser default styles */
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   margin-left: 6px;        /* small spacing from text */
   font-size: 1rem;
   color: inherit;          /* inherit text color */
   user-select: none;
 }


 .portfolio-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1100px;
   margin: 40px auto;
   padding: 0 20px;
   box-sizing: border-box;
 }

 .portfolio-card {
   background: #121212; /* dark background */
   border: 1px solid #2a2a2a; /* subtle border */
   border-radius: 12px;
   padding: 24px 20px;
   box-shadow: 0 2px 12px rgba(0, 255, 136, 0.15); /* soft green shadow */
   color: #d0f8d0; /* pale green text */
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   font-family: 'Inter', sans-serif;
   cursor: pointer;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
 }

 .portfolio-card:hover {
   box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35);
   transform: translateY(-6px);
 }

 .portfolio-image {
   width: 100%;
   max-width: 200px;
   height: auto;
   border-radius: 8px;
   margin-bottom: 20px;
   object-fit: contain;
   box-shadow: 0 0 8px rgba(0, 255, 136, 0.1);
 }

 .portfolio-title {
   font-weight: 700;
   font-size: 1.3rem;
   margin-bottom: 8px;
   color: #00cc6e; /* muted green */
   user-select: none;
 }

 .portfolio-award {
   font-weight: 400;
   font-size: 1rem;
   margin-bottom: 20px;
   color: #9bdca3; /* lighter green */
 }

 .portfolio-link a {
   display: inline-block;
   font-weight: 600;
   font-size: 1rem;
   color: #00cc6e; /* muted green */
   border: 1.5px solid #00cc6e;
   border-radius: 24px;
   padding: 10px 28px;
   text-decoration: none;
   transition: background-color 0.3s ease, color 0.3s ease;
   user-select: none;
 }

 .portfolio-link a:hover {
   background-color: #00cc6e;
   color: #121212;
   border-color: #00cc6e;
 }

 /* Responsive for smaller screens */
 @media (max-width: 1024px) {
   .portfolio-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
   }
 }
 @media (max-width: 600px) {
   .portfolio-grid {
     grid-template-columns: 1fr;
     gap: 16px;
   }
 }
 /* Team Hero */
 .team-hero {
   padding: 100px 20px 80px;
   text-align: center;
   color: var(--green-dark);
   background: transparent;
   text-shadow: 0 0 8px rgba(0, 204, 110, 0.6);
 }

 .team-logo {
   width: 160px;
   border-radius: 50%;
   box-shadow: 0 0 14px var(--green-dark);
   margin-bottom: 30px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .team-logo:hover {
   transform: scale(1.1);
   box-shadow: 0 0 24px var(--green);
 }

 .team-hero h1 {
   font-family: var(--font-display);
   font-size: 3.8rem;
   font-weight: 700;
   margin-bottom: 15px;
   line-height: 1.1;
   color: var(--green-dark);
 }

 .team-hero .highlight {
   color: var(--green);
 }

 .team-hero .tagline {
   font-size: 1.4rem;
   font-weight: 500;
   color: var(--gray);
   max-width: 620px;
   margin: 0 auto;
   font-style: italic;
   text-shadow: none;
 }
 body.light .team-hero .tagline {
   font-size: 1.4rem;
   font-weight: 500;
   color: var(--black);
   max-width: 620px;
   margin: 0 auto;
   font-style: italic;
   text-shadow: none;
 }

 /* Team Intro */
 .team-intro {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   align-items: center;
   padding: 48px 32px;
   color: var(--white);
 }

 .intro-flex {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   justify-content: center;
   align-items: center;
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
 }

 .intro-text {
   flex: 1 1 460px;
   font-size: 1.1rem;
   line-height: 1.6;
   color: #cde6cd;
   font-weight: 500;
 }

 .intro-image-wrapper {
   flex: 1 1 460px;
   text-align: center;
 }

 .intro-image {
   width: 100%;
   max-width: 460px;
   border-radius: 14px;
   box-shadow: 0 6px 20px rgba(0, 204, 110, 0.3);
   transition: box-shadow 0.3s ease;
 }

 .intro-image:hover {
   box-shadow: 0 12px 30px rgba(0, 255, 136, 0.5);
 }

 /* Achievements Grid */
 .team-achievements {
   padding: 48px 32px;
   color: var(--white);
 }

 .achievements-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 32px;
   max-width: 1100px;
   margin: 24px auto 0;
 }

 .achievement-card {
   background: var(--gray-dark);
   border-radius: 16px;
   padding: 24px 20px;
   box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15);
   text-align: center;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
   color: var(--white);
 }

 body.light .achievement-card {
              background: var(--gray);
              border-radius: 16px;
              padding: 24px 20px;
              box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15);
              text-align: center;
              transition: box-shadow 0.3s ease, transform 0.3s ease;
              color: var(--white);
            }

 .achievement-card:hover {
   box-shadow: 0 14px 40px rgba(0, 204, 110, 0.3);
   transform: translateY(-6px);
 }

 .achievement-card img {
   max-width: 100%;
   border-radius: 12px;
   margin-bottom: 18px;
   box-shadow: 0 6px 16px rgba(0, 255, 136, 0.25);
 }

 body.light .achievement-card h3{
   color: var(--white);
   margin-bottom: 12px;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.4rem;
 }

 .achievement-card h3 {
   color: var(--dark-gray);
   margin-bottom: 12px;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.4rem;
 }

 .achievement-card p {
   color: #a9e4b5;
   font-weight: 500;
   font-size: 1rem;
   line-height: 1.4;
 }

 /* Team Mission */
 .team-mission {
   padding: 48px 32px;
   color: var(--white);
   max-width: 900px;
   margin: 0 auto 60px;
   text-align: center;
 }

 .team-mission h2 {
   color: var(--green);
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 2rem;
   margin-bottom: 20px;
 }

 .team-mission p {
   font-size: 1.15rem;
   font-weight: 500;
   line-height: 1.6;
   color: #cde6cd;
   max-width: 700px;
   margin: 0 auto 30px;
 }

 .mission-image-wrapper img {
   width: 100%;
   max-width: 600px;
   border-radius: 16px;
   box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
   transition: box-shadow 0.3s ease;
 }

 .mission-image-wrapper img:hover {
   box-shadow: 0 12px 48px rgba(0, 255, 136, 0.35);
 }

 /* CTA Section */
 .cta-section {
   background: var(--gray-dark);
   padding: 40px 32px;
   border-radius: 16px;
   max-width: 720px;
   margin: 0 auto 80px;
   text-align: center;
   color: var(--white);
   box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
   transition: box-shadow 0.3s ease;
 }

 .cta-section:hover {
   box-shadow: 0 14px 45px rgba(0, 204, 110, 0.25);
 }

 .cta-section h3 {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 2rem;
   margin-bottom: 15px;
   color: var(--green);
 }

 .cta-section p {
   font-size: 1.1rem;
   font-weight: 500;
   margin-bottom: 25px;
   color: #bde4b8;
   max-width: 520px;
   margin-left: auto;
   margin-right: auto;
 }

 .btn-primary {
   background-color: var(--green-dark);
   color: var(--black);
   font-weight: 700;
   padding: 14px 36px;
   border-radius: 12px;
   font-size: 1.1rem;
   text-decoration: none;
   transition: background-color 0.3s ease;
   display: inline-block;
 }

 .btn-primary:hover {
   background-color: var(--green);
   color: var(--white);
   box-shadow: 0 6px 16px rgba(0, 255, 136, 0.4);
 }

 /* Responsive adjustments */
 @media (max-width: 960px) {
   .team-intro .intro-flex {
     flex-direction: column;
     text-align: center;
   }
   .intro-text,
   .intro-image-wrapper {
     flex: 1 1 100%;
   }
   .team-hero h1 {
     font-size: 2.8rem;
   }
   .team-hero .tagline {
     font-size: 1.2rem;
   }
   .achievement-card {
     padding: 20px 16px;
   }
   .achievement-card h3 {
     font-size: 1.25rem;
   }
 }

 @media (max-width: 480px) {
   .team-hero h1 {
     font-size: 2.2rem;
   }
   .team-hero .tagline {
     font-size: 1rem;
   }
   .btn-primary {
     padding: 12px 24px;
     font-size: 1rem;
   }
 }
 /* Dropdown container */
 .dropdown {
   position: relative;
   display: inline-block;
 }

 /* Main Outreach link */
 .dropdown > .link {
   color: var(--green);
   font-weight: 500;
   font-size: 1rem;
   text-decoration: none;
   padding: 6px 10px;
   transition: color 0.3s ease;
 }

 .dropdown > .link:hover {
   color: #55ffaa;
 }

 /* Dropdown menu */
 .dropdown-content {
   display: none;
   position: absolute;
   top: 120%;
   left: 0;
   background-color: var(--gray-dark);
   border: 1px solid #2a2a2a;
   border-radius: 10px;
   min-width: 220px;
   box-shadow: 0 10px 24px rgba(0, 255, 136, 0.1);
   z-index: 1000;
   padding: 8px 0;
 }

 /* Dropdown links */
 .dropdown-content a {
   display: block;
   padding: 10px 18px;
   color: var(--green);
   font-size: 0.95rem;
   font-weight: 500;
   text-decoration: none;
   transition: background 0.2s ease, color 0.2s ease;
 }

 .dropdown-content a:hover {
   background-color: #1e1e1e;
   color: #00ffcc;
 }

 /* Show dropdown on hover */
 .dropdown:hover .dropdown-content {
   display: block;
 }
 .contact-form {
   max-width: 600px;
   margin: 0 auto;
   text-align: left;
 }

 .contact-form form {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }

 .contact-form label {
   font-weight: 600;
   color: var(--green);
   font-size: 0.95rem;
 }

 body.light .contact-form label {
   font-weight: 600;
   color: var(--black);
   font-size: 0.95rem;
 }

 .contact-form input,
 .contact-form textarea {
   padding: 10px 14px;
   border: 1px solid #333;
   border-radius: 8px;
   background-color: var(--gray-dark);
   color: var(--white);
   font-size: 1rem;
   font-family: var(--font-body);
   transition: border-color 0.2s;
 }
 body.light .contact-form input,
 body.light .contact-form textarea {
   padding: 10px 14px;
   border: 1px solid #333;
   border-radius: 8px;
   background-color: var(--white);
   color: var(--black);
   font-size: 1rem;
   font-family: var(--font-body);
   transition: border-color 0.2s;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
   border-color: var(--green);
   outline: none;
 }

 .contact-form .btn {
   background-color: var(--green);
   color: var(--black);
   border: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s ease;
   width: fit-content;
 }

 .contact-form .btn:hover {
   background-color: #00e673;
 }
 .contact-form ul {
   margin: 10px 0 20px;
   padding-left: 18px;
   color: #a0dca0;
   font-size: 0.95rem;
 }

 .contact-form select,
 .contact-form input[type="file"] {
   background-color: var(--gray-dark);
   color: var(--white);
   border: 1px solid #333;
   border-radius: 8px;
   padding: 10px 14px;
   font-family: var(--font-body);
   font-size: 1rem;
 }

 .contact-form select:focus,
 .contact-form input[type="file"]:focus {
   border-color: var(--green);
   outline: none;
 }
 /* Hide default file input */
 .custom-file-upload input[type="file"] {
   display: none;
 }

 /* Styled label that looks like a button */
 .custom-file-upload .file-label {
   background-color: var(--green);
   color: var(--black);
   padding: 10px 22px;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
   display: inline-block;
   transition: background 0.3s ease;
 }

 .custom-file-upload .file-label:hover {
   background-color: var(--green-dark);
 }

 /* Filename display */
 #file-name {
   margin-left: 14px;
   font-size: 0.95rem;
   color: #a0dca0;
   font-style: italic;
 }
 .button-wrapper {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 16px; /* Space between buttons */
   margin-top: 24px;
   flex-wrap: wrap; /* Makes sure it wraps on smaller screens */
 }

 .btn {
   background-color: var(--green);
   color: var(--black);
   padding: 12px 28px;
   border: none;
   border-radius: 10px;
   font-weight: 600;
   text-decoration: none;
   font-family: var(--font-body);
   font-size: 1rem;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.3s ease;
   text-align: center;
 }

 .btn:hover {
   background-color: var(--green-dark);
   transform: translateY(-2px);
 }
 .form {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 20px;
 }

 .form-group {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .form-group input[type="text"],
 .form-group select,
 .form-group input[type="file"] {
   padding: 10px 14px;
   border: 1px solid #444;
   border-radius: 8px;
   background: #1a1a1a;
   color: var(--white);
   font-family: var(--font-body);
 }

 body.light .form-group input[type="text"],
 body.light .form-group select,
 body.light .form-group input[type="file"] {
   padding: 10px 14px;
   border: 1px solid #444;
   border-radius: 8px;
   background: white;
   color: var(--black);
   font-family: var(--font-body);
 }


 .form-group input[type="text"]::placeholder {
   color: #888;
 }

 .form-group label {
   font-weight: 600;
   font-size: 0.95rem;
   color: var(--green);
 }

 body.light .form-group label {
   font-weight: 600;
   font-size: 0.95rem;
   color: var(--black);
 }

 .form-group small {
   font-size: 0.8rem;
   color: #aaa;
 }

 .button-wrapper {
   display: flex;
   justify-content: center;
   margin-top: 20px;
 }

 .btn {
   background-color: var(--green);
   color: var(--black);
   padding: 12px 24px;
   border: none;
   border-radius: 8px;
   font-weight: 600;
   text-decoration: none;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }

 .btn:hover {
   background-color: var(--green-dark);
   transform: translateY(-2px);
 }
 .mentorship-form-section {
   max-width: 1100px; /* Match .contact-form and section.card widths */
   margin: 0 auto 60px;
   background: var(--gray-dark);
   padding: 48px 40px; /* Add more padding for wide layout */
   border-radius: 16px;
   box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
   color: var(--white);
   font-family: var(--font-body);
 }

 body.light .mentorship-form-section {
   max-width: 1100px; /* Match .contact-form and section.card widths */
   margin: 0 auto 60px;
   background: var(--white);
   padding: 48px 40px; /* Add more padding for wide layout */
   border-radius: 16px;
   box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
   color: var(--blue);
   font-family: var(--font-body);
 }


 .mentorship-form-section h2 {
   font-family: var(--font-display);
   color: var(--green);
   font-weight: 700;
   font-size: 2rem;
   margin-bottom: 16px;
 }

 .mentorship-form-section em {
   font-size: 0.9rem;
   color: #7ac17f;
   margin-bottom: 18px;
   display: block;
 }

 .mentorship-form label {
   display: block;
   margin: 14px 0 6px;
   font-weight: 600;
   color: var(--green);
   font-size: 1rem;
 }

 body.light .mentorship-form label {
   display: block;
   margin: 14px 0 6px;
   font-weight: 600;
   color: var(--black);
   font-size: 1rem;
 }

 .mentorship-form input[type="text"],
 .mentorship-form input[type="url"],
 .mentorship-form textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #2a2a2a;
   background-color: #121212;
   color: var(--black);
   font-size: 1rem;
   font-family: var(--font-body);
   transition: border-color 0.3s ease;
   resize: vertical;
   min-height: 40px;
 }

 body.light .mentorship-form input[type="text"],
 body.light .mentorship-form input[type="url"],
 body.light .mentorship-form textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #2a2a2a;
   background-color: white;
   color: var(--black);
   font-size: 1rem;
   font-family: var(--font-body);
   transition: border-color 0.3s ease;
   resize: vertical;
   min-height: 40px;
 }

 .mentorship-form textarea {
   min-height: 80px;
 }

 .mentorship-form input::placeholder,
 .mentorship-form textarea::placeholder {
   color: #5a5a5a;
 }

 body.light .mentorship-form input::placeholder,
 body.light .mentorship-form textarea::placeholder {
   color: light-gray;
 }


 .mentorship-form input:focus,
 .mentorship-form textarea:focus {
   outline: none;
   border-color: var(--green);
   background-color: #181818;
 }

 .mentorship-form small {
   font-weight: 400;
   font-size: 0.85rem;
   color: #7ac17f;
 }

 .mentorship-form button.btn {
   margin-top: 26px;
   background-color: var(--green);
   color: var(--black);
   padding: 14px 32px;
   font-weight: 700;
   font-size: 1.1rem;
   border: none;
   border-radius: 12px;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }

 .mentorship-form button.btn:hover {
   background-color: var(--green-dark);
   color: var(--white);
 }
 .resources-section {
   background-color: #0a0a0a;
   padding: 4rem 2rem;
   max-width: 900px;
   margin: 0 auto;
 }

 body.light .resources-section {
     background-color: #e6e7e0;
     padding: 4rem 2rem;
     max-width: 900px;
     margin: 0 auto;
 }


 .resources-title {
   font-size: 2.8rem;
   font-weight: 700;
   color: #FFFFFF;
   margin-bottom: 0.5rem;
   text-align: center;
 }

 body.light .resources-title {
   font-size: 2.8rem;
   font-weight: 700;
   color: black;
   margin-bottom: 0.5rem;
   text-align: center;
 }

 .resources-subtitle {
   font-size: 1.25rem;
   color: ##95a69b;
   max-width: 600px;
   margin: 0 auto 2rem auto;
   text-align: center;
   line-height: 1.4;
 }

 body.light .resources-subtitle {
   font-size: 1.25rem;
   color: var(--black);
   max-width: 600px;
   margin: 0 auto 2rem auto;
   text-align: center;
   line-height: 1.4;
 }

 .resource-card {
   background-color: #1a1a1a;
   border-radius: 16px;
   overflow: hidden;
   margin-bottom: 3rem;
   box-shadow: 0 8px 24px rgba(0, 168, 107, 0.15);
   transition: transform 0.2s ease;
 }

 body.light .resource-card {
   background-color: white;
   border-radius: 16px;
   overflow: hidden;
   margin-bottom: 3rem;
   box-shadow: 0 8px 24px rgba(0, 168, 107, 0.15);
   transition: transform 0.2s ease;
 }

 .resource-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 30px rgba(0, 168, 107, 0.25);
 }

 .resource-img {
   width: 100%;
   height: 260px;
   object-fit: cover;
   display: block;
 }


 .resource-info {
   padding: 2rem;
 }

 .resource-info h2 {
   font-size: 1.8rem;
   color: #ffcc00;
   margin-bottom: 0.75rem;
   font-family: 'Outfit', sans-serif;
 }

 .resource-info p {
   color: #dcdcdc;
   font-size: 1rem;
   margin-bottom: 1.5rem;
   font-family: 'Inter', sans-serif;
 }

 .resource-btn {
   display: inline-block;
   padding: 0.6rem 1.4rem;
   background-color: #00a86b;
   color: white;
   border-radius: 8px;
   font-weight: 600;
   text-decoration: none;
   transition: background-color 0.3s ease;
 }

 .resource-btn:hover {
   background-color: #008f5f;
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
   .resource-img {
     height: 200px;
   }

   .resource-info {
     padding: 1.5rem;
   }
 }
 .resource-img {
   width: 100%;
   height: auto;     /* Keep natural image height */
   display: block;
   object-fit: contain;  /* Show full image without cropping */
 }

 .resource-info {
   padding: 2rem;
   text-align: center; /* Center all content inside */
 }

 .resource-btn {
   display: inline-block;
   padding: 0.6rem 1.4rem;
   background-color: #00a86b;
   color: white;
   border-radius: 8px;
   font-weight: 600;
   text-decoration: none;
   transition: background-color 0.3s ease;
   margin: 0 auto;  /* center horizontally */
 }

 .resource-btn:hover {
   background-color: #008f5f;
 }
 ul {
   padding-left: 24px;
   margin-bottom: 16px;
   list-style-position: outside;
 }

 li {
   margin-bottom: 8px;
   line-height: 1.6;
   color: #ffffff;
 }
     table.checklist-table {
       width: 100%;
       border-collapse: collapse;
       margin: 1.5em 0;
     }

     table.checklist-table th,
     table.checklist-table td {
       border: 1px solid #555;
       padding: 0.6em;
       text-align: left;
       vertical-align: top;
     }

     table.checklist-table th {
       background-color: #1e1e1e;
       color: #00ff99;
     }

     .toggle-group {
       display: flex;
       gap: 5px;
     }

     .btn {
       padding: 0.4em 0.8em;
       border: 1px solid #888;
       background: #333;
       color: white;
       cursor: pointer;
       font-size: 1rem;
       border-radius: 4px;
       transition: 0.2s;
     }

     .btn:hover {
       background-color: #555;
     }

     .btn.active {
       background-color: #2e7d32;
       font-weight: bold;
     }

     .btn.cross.active {
       background-color: #b71c1c;
     }

     td[contenteditable="true"] {
       background-color: #1a1a1a;
     }

     .notes-box {
       width: 100%;
       height: 80px;
       resize: none;
       padding: 0.5em;
       font-family: inherit;
       font-size: 1rem;
       background-color: #1a1a1a;
       border: 1px solid #444;
       color: #fff;
       box-sizing: border-box;
       overflow-y: auto;
     }
 .btn.na {
   background-color: #666666;
   color: white;
   border: 1px solid #999999;
   margin-left: 4px;
 }

 .btn.na.active {
   background-color: #5555aa;
   border-color: #444488;
   color: white;
 }

     .card {
       background-color: #1a1a1a;
       border-radius: 10px;
       padding: 1.5em;
       margin: 1em 0;
       box-shadow: 0 0 10px rgba(0,0,0,0.5);
     }

     th, td {
       border: 1px solid #444;
       padding: 0.5em;
       text-align: left;
     }
     th {
       background-color: #333;
       color: #f5c518;
     }
     td {
       background-color: #222;
       color: #ddd;
     }
     .tip, .important, .example, .warning {
       border-left: 4px solid #f5c518;
       padding: 0.5em 1em;
       margin: 1em 0;
       background-color: #1f1f1f;
     }
     .important { border-color: #e74c3c; }
     .warning { border-color: #f39c12; }
     .example { border-color: #3498db; }
     .icon { display: inline-block; width: 1.2em; text-align: center; margin-right: 0.5em; color: #f5c518; }
 /* WHY WE DO THIS */
 .why-we-do-this {
   padding: 30px;
   margin: 40px auto;
   text-align: center;
   max-width: 900px;
 }
 .why-we-do-this h2 {
   color: var(--primary, #00d084);
   margin-bottom: 15px;
 }

 /* GALLERY */
 .meeting-gallery {
   padding: 30px;
   margin: 40px auto;
   text-align: center;
   max-width: 1000px;
 }
 .meeting-gallery h2 {
   color: var(--primary, #00d084);
   margin-bottom: 25px;
 }
 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 20px;
 }
 .gallery-grid img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 12px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.3);
   transition: transform 0.3s ease;
 }
 .gallery-grid img:hover {
   transform: scale(1.05);
 }


/* GALLERY */
.meeting-gallery {
  padding: 30px;
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
}
.meeting-gallery h2 {
  color: var(--primary, #00d084);
  margin-bottom: 25px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}



/* SPONSORS SECTION */
.sponsors-section {
  padding: 70px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-section h2 {
  font-size: 2.5rem;
  color: var(--primary, #00d084);
  margin-bottom: 15px;
}

.sponsor-tagline {
  font-size: 1.1rem;
  color: var(--text, #ccc);
  margin-bottom: 45px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.sponsor img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.sponsor img:hover {
  filter: none;
  transform: scale(1.05);
}

