/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f7f6;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== Layout Helpers ===== */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #004d40;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00796b;
}

/* ===== Header & Navbar ===== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #004d40;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #00796b, #26a69a);
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #00796b;
  color: #ffffff;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #004d40;
}

/* ===== Hero Section (Home) ===== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0 40px;
}

.hero-badge {
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2f1;
  color: #00796b;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #00332c;
}

.hero-title span {
  color: #00796b;
}

.hero-text {
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.hero-hi {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
  background: #00796b;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 121, 107, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: #00796b;
  border: 1px solid #00796b;
}

.btn-outline:hover {
  background: #e0f2f1;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #555;
}

.hero-meta span strong {
  display: block;
  font-size: 1.1rem;
  color: #004d40;
}

.hero-image-card {
  background: linear-gradient(145deg, #ffffff, #e0f2f1);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-image-inner {
  overflow: hidden;
  border-radius: 18px;
}

/* ===== Cards & Grids ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #004d40;
}

.card p {
  font-size: 0.92rem;
}

.chip {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e0f2f1;
  color: #00796b;
  margin-bottom: 8px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* ===== About Page Extras ===== */
.about-two-column {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.stat-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.stat-card span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00796b;
}

/* ===== Timeline (Programs / Journey) ===== */
.timeline {
  border-left: 3px solid #e0f2f1;
  padding-left: 18px;
}

.timeline-item {
  margin-bottom: 16px;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #00796b;
  border-radius: 50%;
  position: absolute;
  left: -23px;
  top: 6px;
}

/* ===== Get Involved / Forms ===== */
.highlight-section {
  background: linear-gradient(135deg, #e0f2f1, #ffffff);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #004d40;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8dc;
  font-size: 0.92rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #00796b;
  box-shadow: 0 0 0 2px rgba(0, 121, 107, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Contact Info ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
}

.contact-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  font-size: 0.92rem;
}

.contact-list li {
  margin-bottom: 8px;
}

/* ===== Footer ===== */
footer {
  background: #004d40;
  color: #cfd8dc;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: #cfd8dc;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    order: -1;
  }

  .about-two-column,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 5%;
    background: #ffffff;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}