body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #eee;
}
.nav .brand {
  font-weight: 700;
  font-size: 1.2rem;
}
.nav .links a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav .links .cta {
  background: #007b5e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.nav .links .active {
  color: #007b5e;
}

/* Hero */
.hero {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #007b5e, #00a878);
  color: white;
  text-align: center;
}
.hero-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Filter Bar */
.filter-bar {
  text-align: center;
  margin: 2rem 0;
}
.filter-btn {
  background: white;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  margin: 0.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: #007b5e;
  color: white;
  border-color: #007b5e;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0 2rem 3rem;
}
.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.project-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.project-content {
  padding: 1rem;
}
.tag {
  display: inline-block;
  background: #e6f5f1;
  color: #007b5e;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
}
.project-content h3 {
  margin: 0.5rem 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 30px;
}
.project-content p {
  font-size: 22px; /* adjust size as you prefer */
  font-family: 'Times New Roman', Times, serif;
}
.more-btn {
  background: none;
  border: none;
  color: #007b5e;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0;
}
.more-btn {
  font-size: 22px;
}
.more-btn p {
  font-size: 22px;
  font-family: 'Times New Roman', Times, serif;
}
.more-info {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #555;
  font-family: 'Times New Roman', Times, serif;
}


/* Section wrapper */
.why-projects {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  font-family: 'Inter', sans-serif;
  width: 100%;
}

/* Heading */
.why-projects h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #1d4ed8;
  font-weight: 800;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
}
.why-projects p{
  font-size: 2rem;
}

/* Grid for program cards */
.programs-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 across like your picture */
  gap: 2rem;
}

/* Program card style */
.program {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.program:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.program h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: #007b5e;
}

.program p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Times New Roman', Times, serif;
  color: #444;
  text-align: justify;
}
