.programs-section {
  padding: 0;
}

.prog-hero {
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, var(--c-primary-mid) 55%, var(--c-primary-soft) 100%);
  padding: 2rem 6vw 2rem;
  position: relative;
  overflow: hidden;
}

.prog-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1.5px solid rgba(125, 232, 138, 0.12);
}

.prog-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(125, 232, 138, 0.08);
}

.prog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--c-program-accent);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-active {
  color: var(--c-program-accent);
}

.prog-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 232, 138, 0.12);
  border: 1px solid rgba(125, 232, 138, 0.3);
  color: var(--c-program-accent);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.prog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.prog-hero h1 span {
  color: var(--c-program-accent);
}

.prog-hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 600px;
}

.prog-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.prog-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.prog-pill:hover,
.prog-pill.active {
  background: var(--c-program-accent);
  border-color: var(--c-program-accent);
  color: var(--c-primary-deep);
  font-weight: 700;
}

.prog-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-program-accent);
  flex-shrink: 0;
}

.prog-pill.active .prog-pill-dot {
  background: var(--c-primary-deep);
}

.programs-grid-wrap {
  padding: 5rem 6vw;
  background: #f0f8f0;
}

.programs-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: #fff;
  border: 1px solid #d4e8d4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  transition: box-shadow 0.3s, transform 0.3s;
  scroll-margin-top: 100px;
}

.program-card:hover {
  box-shadow: 0 12px 48px rgba(45, 122, 58, 0.13);
  transform: translateY(-2px);
}

.program-card:last-child {
  margin-bottom: 0;
}

.prog-card-num {
  background: var(--c-primary-deep);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  position: relative;
}

.prog-card-num::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(125, 232, 138, 0.15);
}

.prog-num-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: rgba(125, 232, 138, 0.35);
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.prog-card-body {
  padding: 2rem 2.5rem;
}

.prog-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.prog-card-title-group {
  flex: 1;
}

.prog-sector-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2d7a3a;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 0.7rem;
}

.prog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2a1a;
  line-height: 1.2;
}

.prog-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.prog-card-desc {
  color: #5a7a5a;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.prog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.prog-highlight-tag {
  background: #f0f8f0;
  border: 1px solid #d4e8d4;
  color: #1a5c20;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* NEW: Styles the heading inside the Read More drop down */
.prog-extra-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a1a;
  margin-bottom: 0.8rem;
}

.prog-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
}

.prog-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: #5a7a5a;
  line-height: 1.5;
}

.cap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d7a3a;
  flex-shrink: 0;
  margin-top: 0.42rem;
}

.prog-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d7a3a;
  font-size: 0.85rem;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 0.8rem;
  padding: 0;
}

.prog-toggle:hover {
  color: var(--c-primary-deep);
}

.prog-toggle svg {
  transition: transform 0.3s;
}

.prog-toggle.open svg {
  transform: rotate(180deg);
}

.prog-extra {
  display: none;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #d4e8d4;
}

.prog-extra.visible {
  display: block;
}

.programs-cta {
  background: var(--c-primary-deep);
  padding: 4rem 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: rgba(125, 232, 138, 0.04);
}

.programs-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.programs-cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}

.programs-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--c-program-accent);
  color: var(--c-primary-deep);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.cta-btn-primary:hover {
  opacity: 0.88;
}

.cta-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.9rem;
}

.cta-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .prog-card-body {
    padding: 1.3rem;
  }
}

@media (max-width: 760px) {
  .prog-hero {
    padding: 1.5rem 1rem 1.5rem;
  }

  .programs-grid-wrap {
    padding: 3rem 1rem;
  }

  .program-card {
    grid-template-columns: 1fr;
  }

  .prog-card-num {
    padding: 0.65rem 0;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .prog-num-text {
    writing-mode: horizontal-tb;
  }
}