.sub-banner {
  width: 100%;
  padding: 60px 48px;
  box-sizing: border-box;
  background: linear-gradient(
    135deg,
    var(--deep-brown) 0%,
    var(--brown-mid) 40%,
    var(--saffron) 100%
  );
}

.sub-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-family: var(--body-font);
  font-size: 13px;
}
.sub-banner__breadcrumb  li {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.sub-banner__breadcrumb  li:hover {
  color: var(--gold-light);
}
.sub-banner__breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}
.sub-banner__breadcrumb .current {
  color: var(--gold-light);
  font-weight: 500;
}

.sub-banner__title {
  font-family: var(--head-font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.sub-banner__subtitle {
  font-family: var(--body-font);
  font-size: 15px;
  color: rgba(255, 248, 238, 0.6);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .sub-banner {
    padding: 40px 20px;
  }
}

/* ── About Section ── */
.about-section {
  background: #fff;
  padding: 88px 56px;
  font-family: var(--body-font);
}

.about-section .container,
.guruji-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared tag / heading / divider */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--head-font);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-divider {
  width: 52px;
  height: 3px;
  background: var(--saffron);
  border: none;
  margin-bottom: 0;
}

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Intro two-column row */
.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

/* Stat pill */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 14px 20px;
}

.stat-pill .num {
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--saffron);
  line-height: 1;
}

.stat-pill .label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Vision & Mission grid */
.about-grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;

  margin-top: 0;
}

.about-card {
  background: #fff;
  padding: 44px 40px;
  position: relative;
}

/* Hover saffron top bar */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--head-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.vision-list li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
  margin-top: 8px;
}

@media (max-width: 700px) {
  .about-section {
    padding: 52px 20px;
  }
  .intro-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 16px;
  }
  .about-card {
    border: 1px solid var(--cream-dark);
  }
}

/* ── Guruji Section ── */
.guruji-section {
  /* background: var(--cream); */
  padding: 88px 56px;
  font-family: var(--body-font);
}

.gs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.gs-heading {
  font-family: var(--head-font);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.gs-divider {
  width: 44px;
  height: 2px;
  background: var(--saffron);
  border: none;
  margin-bottom: 22px;
}

.gs-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.gs-body + .gs-body {
  margin-top: 16px;
}

/* Guruji: image left, text right */
.guruji-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.guruji-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
  border: 1px solid rgba(200, 150, 12, 0.2);
  overflow: hidden;
}

.guruji-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-accent {
  height: 3px;
  width: 72px;
  background: var(--saffron);
}

.name-badge {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--saffron);
}

.name-badge strong {
  display: block;
  font-family: var(--head-font);
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.name-badge span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.guruji-text {
  padding-top: 6px;
}

.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.meta-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--saffron);
  border: 1px solid var(--saffron-light);
  padding: 5px 14px;
}

.cert-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.cert-text {
  padding-top: 6px;
}

.cert-img-wrap {
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  background: var(--cream-dark);
  border: 1px solid rgba(200, 150, 12, 0.2);
  overflow: hidden;
}

.cert-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.cert-img-wrap:hover img {
  transform: scale(1.04);
}

.cert-label {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--gold);
}

.cert-label strong {
  display: block;
  font-family: var(--head-font);
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.cert-label span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

@media (max-width: 760px) {
  .guruji-section {
    padding: 52px 20px;
  }
  .guruji-row,
  .cert-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 
  organization css */

.org-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.org-h2 {
  font-family: var(--head-font);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 14px;
}

.org-bar {
  width: 48px;
  height: 3px;
  background: var(--saffron);
  border: none;
  margin-bottom: 24px;
}

.org-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
}

.org-body + .org-body {
  margin-top: 16px;
}

.org-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.s1-about {
  background: #fff;
  padding: 88px 48px;
  font-family: var(--body-font);
}

.s1-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.s1-img-wrap {
  position: relative;
}

.s1-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
  border: 1px solid rgba(200, 150, 12, 0.18);
  overflow: hidden;
}

.s1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s1-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  min-width: 110px;
}

.s1-badge .bnum {
  display: block;
  font-family: var(--head-font);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.s1-badge .blabel {
  display: block;
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.s1-text {
  padding-bottom: 20px;
}

.s1-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.org-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--saffron);
  border: 1px solid var(--saffron-light);
  padding: 5px 14px;
}

@media (max-width: 700px) {
  .s1-about {
    padding: 52px 20px;
  }
  .s1-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .s1-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 16px;
  }
}

.s2-activities {
  padding: 88px 48px;
  font-family: var(--body-font);
}

.s2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.s2-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}

.act-card {
  background: #fff;
  padding: 32px 28px 36px;
  position: relative;
  transition: background 0.2s;
}

.act-card:hover {
  background: var(--cream);
}

.act-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.act-card:hover::after {
  transform: scaleX(1);
}

.act-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.act-title {
  font-family: var(--head-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.act-body {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .s2-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .s2-activities {
    padding: 52px 20px;
  }
  .s2-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .s2-cards {
    grid-template-columns: 1fr 1fr;
    background: none;
    border: none;
    gap: 12px;
  }
  .act-card {
    border: 1px solid var(--cream-dark);
  }
}

@media (max-width: 480px) {
  .s2-cards {
    grid-template-columns: 1fr;
  }
}

.s3-goal {
  background: #fff;
  padding: 88px 48px;
  font-family: var(--body-font);
}

.s3-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}

/* Dark left panel */
.s3-left {
  background: var(--deep-brown);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s3-left .org-tag {
  color: var(--gold-light);
}
.s3-left .org-h2 {
  color: #fff;
}
.s3-left .org-bar {
  background: var(--gold-light);
}
.s3-left .org-body {
  color: rgba(255, 248, 238, 0.72);
}

/* Numbered goal list */
.s3-right {
  background: #fff;
  padding: 40px 48px;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.goal-item:last-child {
  border-bottom: none;
}

.goal-num {
  flex-shrink: 0;
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream-dark);
  line-height: 1;
  margin-top: 2px;
}

.goal-title {
  font-family: var(--head-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.goal-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .s3-goal {
    padding: 52px 20px;
  }
  .s3-inner {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 12px;
  }
  .s3-left,
  .s3-right {
    padding: 36px 28px;
    border: 1px solid var(--cream-dark);
  }
  .s3-left {
    border-color: var(--deep-brown);
  }
}
