/* =========================
  THEME
========================= */
:root{
  --green:#212F15;
  --green2:#5FA613;
  --ink:#1f2a1f;
  --muted:#5b6b5b;
  --bg:#ffffff;
  --soft:#f6ffe8;
  --card:#ffffff;
  --line: rgba(0,0,0,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-align: center;
}
img{ max-width:100%; display:block; }

.container{
  width: min(1100px, 92%);
  margin-inline: auto;
}

a{ color: inherit; text-decoration: none; }

/* =========================
  TOPBAR
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 14px;
  }

.nav-inner{
  width: min(1100px, 92%);
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.logo{
  height: 80px; /* Change to resize logo */
  width: auto;
}

.menu-btn{
  font-size: 1.3rem;
  border:none;
  background:transparent;
  cursor:pointer;
  margin-left: 5%;
}
.menu-list{
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  position: absolute;
  height: 800px;
  top: 100%;
  width: 100%;
  left: 0;
  align-items: center;
  list-style-type: none;
  font-size: 2em;
  row-gap: 5%;
  padding-top: 25%;
  font-weight: bold;
}

.menu-btn ul{
    list-style-type: none;
    width: 80%;
}
.menu-list a{
  text-decoration: none;
  color: inherit;
}
#menuX{
  display: nones;
}
.logo{
  height: 80px; /* Change to resize logo */
  width: auto;
}
.menu{
  height: 60px; /* Change to resize logo */
  width: auto;
}
#menuX{
  display: nones;
}




/* =========================
  HERO
========================= */
.hero{
  position: relative;
  overflow:hidden;
  padding: 28px 0 18px;
  background: linear-gradient(180deg, var(--soft), #fff 70%);
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .18; /* adjust strength */
  pointer-events:none;
}

.hero-inner{
  position: relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:center;
}

.hero-card{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.kicker{
  display:inline-block;
  padding: 6px 10px;
  background: rgba(63,140,77,.12);
  color: var(--green);
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 10px;
}

.hero-card h1{
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 900;
}

.tagline{
  color: var(--green);
  font-weight: 900;
  margin-bottom: 10px;
}

.lead{
  color: var(--muted);
  font-size: .98rem;
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-primary{
  display:inline-block;
  background: var(--green2);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(47,107,58,.22);
}

.btn-ghost{
  display:inline-block;
  background:#fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--green);
}

.hero-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}

.hero-photo{
  width:100%;
  height: 240px; /* change height */
  object-fit: cover;
}

/* =========================
  SECTIONS
========================= */
.section{
  padding: 28px 0;
}

.section-soft{
  background: var(--soft);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.section-head{
  text-align:center;
  margin-bottom: 16px;
}
.section-head h2{
  font-size: 1.35rem;
  font-weight: 1000;
}
.section-head p{
  color: var(--muted);
  margin-top: 6px;
  max-width: 720px;
  margin-inline:auto;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.grid-2 h2{
  font-size: 1.35rem;
  font-weight: 1000;
  margin-bottom: 10px;
}
.grid-2 p{ color: var(--muted); margin-top: 10px; }

.image-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.image-card img{
  width:100%;
  height: 260px; /* adjust */
  object-fit: cover;
}

/* =========================
  CARDS
========================= */
.cards-3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.card h3{
  font-size: 1.05rem;
  font-weight: 1000;
  margin-bottom: 8px;
}
.card p{ color: var(--muted); }

/* =========================
  SERVICES LIST
========================= */
.list-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.list-item{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  font-weight: 800;
  color: var(--ink);
}

/* =========================
  PILLARS
========================= */
.pillars{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
  
}

.pillar{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  text-align:center;
}

.pillar-icon{
  width: 54px;   /* icon size */
  height: 54px;  /* icon size */
  object-fit: contain;
  margin-bottom: 10px;
  position: relative;
  left: 42%;
}

.pillar h3{
  font-size: 1.05rem;
  font-weight: 1000;
  margin-bottom: 6px;
}
.pillar p{ color: var(--muted); }

/* =========================
  MISSION
========================= */
.mission{
  display:flex;
  justify-content:center;
}

.mission-box{
    text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 900px;
}

.mission-box h2{
  font-size: 1.35rem;
  font-weight: 1000;
  margin-bottom: 10px;
}

.mission-box p{
  color: var(--muted);
}

.mission-note{
  margin-top: 12px;
  background: rgba(63,140,77,.08);
  border: 1px dashed rgba(47,107,58,.25);
  border-radius: 14px;
  padding: 12px;
}

/* =========================
  FOOTER
========================= */
.footer{
  background: var(--green2);
  color: #fff;
  padding: 26px 0 14px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer h3{
  font-size: 1.15rem;
  font-weight: 1000;
}

.footer h4{
  margin-bottom: 6px;
  font-weight: 1000;
}

.footer a{
  display:block;
  margin-top: 6px;
  opacity: .95;
}

.muted{ opacity: .92; }

.footer-bottom{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align:center;
  opacity: .9;
  font-size: .95rem;
}

/* =========================
  RESPONSIVE: Tablet/Desktop
========================= */
@media (min-width: 768px){
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-align: left;
}

  .nav-links{ display:flex; }
  
  .hero-inner{
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
  }

  .hero-photo{ height: 340px; }

  .grid-2{
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
  }

  .cards-3{
    grid-template-columns: repeat(3, 1fr);
  }

  .list-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars{
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid{
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items:start;
  }
.menu-btn{
display: none;
}

.menu-list{
  display: flex;
  flex-direction: row;
  background: none;
  color: var(--green);
  position: static;
  height: 0px;
  top: 100%;
  width: 70%;
  left: 0;
  align-items: center;
  list-style-type: none;
  font-size: 1em;
  row-gap: 0;
  column-gap: 15%;
  padding-top: 0;
  font-weight: bold;
}
.menu-list li{
  cursor: pointer;
}
}