* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f9f7;
}

/* HEADER */
.header {
  background: #fff;
  padding: 15px 8%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 22px;
  color: #2c7a7b;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links .active {
  color: #2c7a7b;
}

/* HERO */
.hero {
  height: 300px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("images/ChatGPT Image Mar 25, 2026, 12_58_41 PM.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
}

.hero p {
  margin-top: 10px;
}

/* PROGRAMS */
.programs {
  padding: 60px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.program-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s;
}

.program-card.show {
  transform: translateY(0);
  opacity: 1;
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card .content {
  padding: 20px;
}

.program-card h2 {
  color: #2c7a7b;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.program-card button {
  padding: 10px 18px;
  border: none;
  background: #2c7a7b;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.program-card button:hover {
  background: #225e5f;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #e6f4f1;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta button {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: #2c7a7b;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* HOVER EFFECT */
.program-card:hover {
  transform: scale(1.05);
}