/* =========================
   GLOBAL RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  /* background-color: #f9fafb; */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================
   LINKS
========================= */
a {
  color: #16a34a;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #0f172a;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #16a34a;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.logo-main {
  font-size: 1.4rem;
  margin-right: 6px;
  color: #16a34a;
}

.logo-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.nav a:hover {
  color: #22c55e;
  text-decoration: underline;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-highlights {
  margin-top: 1rem;
  list-style: disc inside;
}

.hero-highlights li {
  margin-bottom: 0.7rem;
}

.hero-card {
  background: #ffffff;
  color: #0f172a;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
  padding: 3.5rem 0;
  text-align: center;
  background: #e2f6ea;
}

.page-header h1 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

/* =========================
   SECTIONS & CARDS
========================= */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #edf7f1;
}

.section-image {
    padding: 2rem 0;
}

.section-image img {
    width: 100%;
    border-radius: 1rem;
}


.card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.07);
}

/* Columns */
.two-cols,
.three-cols {
  display: grid;
  gap: 2rem;
}

.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 0.9rem 1.6rem;
  display: inline-block;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: #16a34a;
  color: #fff;
}

.btn.primary:hover {
  background: #138d40;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn.secondary:hover {
  background: #ffffff26;
  color: #0f172a;
}

/* =========================
   FORMS
========================= */
form {
  margin-top: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #16a34a;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 2.5rem 0;
  text-align: center;
  margin-top: 3rem;
  border-top: 3px solid #16a34a;
}

.site-footer a {
  color: #22c55e;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 0.5rem 0;
}

/* =========================
   TEAM CARD HOVER
========================= */
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}
/* =========================
   TEAM GRID
========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.team-card p {
  margin-bottom: 0.8rem;
  color: #334155; /* softer dark text */
  line-height: 1.5;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .two-cols,
  .three-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .btn.secondary {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
