/* Gramin Mahila Foundation - Custom Utilities & Micro-interactions */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==================== ACTIVITIES SECTION ("Our Work") ==================== */
.activities-section {
  padding: clamp(2.2rem, 3.8vw, 3.8rem) 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.activity-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.activity-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f2;
}

.activity-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.activity-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(15, 61, 36, 0.92);
  color: #ffffff;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

.activity-badge.saffron {
  background: rgba(232, 93, 4, 0.94);
}

.activity-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-primary);
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

.activity-card-desc {
  font-size: 0.94rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.activity-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.btn-activity-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-activity-more:hover {
  background: var(--green-primary);
  color: #ffffff;
}

.btn-activity-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-activity-more:hover svg {
  transform: translateX(3px);
}

/* ==================== ACTIVITY DETAIL MODAL ==================== */
.activity-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(15, 40, 28, 0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.activity-modal.active {
  display: flex;
}

.activity-modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border: 1px solid var(--border-light);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.activity-modal-header {
  padding: 1.5rem 1.8rem 1rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.activity-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink-primary);
  margin-top: 0.3rem;
}

.modal-close-btn {
  background: #f1f5f2;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-secondary);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}

.activity-modal-body {
  padding: 1.5rem 1.8rem;
}

.activity-modal-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
}

.activity-modal-body p {
  font-size: 1rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.activity-modal-details-list {
  background: var(--bg-cream);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.activity-modal-details-list h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.6rem;
}

.activity-modal-details-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-modal-details-list li {
  font-size: 0.92rem;
  color: var(--ink-primary);
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.activity-modal-details-list li::before {
  content: "✔";
  color: var(--green-light);
  font-weight: bold;
}

.activity-modal-footer {
  padding: 1.2rem 1.8rem;
  background: #fafafa;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ==================== DONATION / SUPPORT REFINEMENTS ==================== */
.support-notice-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0;
}

@media (max-width: 640px) {
  .support-channels-grid {
    grid-template-columns: 1fr;
  }
}

.support-channel-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  min-width: 0;
}

.support-channels-grid .support-channel-card:nth-child(3),
.support-channel-card.support-channel-email {
  grid-column: 1 / -1;
  background: #fbfdfc;
  border: 1.5px solid rgba(15, 61, 36, 0.16);
}

.support-channel-card:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.support-channel-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.support-channel-info {
  min-width: 0;
  flex: 1;
}

.support-channel-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin: 0 0 0.25rem 0;
}

.support-channel-info p,
.support-channel-info a {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  text-decoration: none;
  display: inline-block;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.support-channel-info a:hover {
  color: var(--green-primary);
  text-decoration: underline;
}

.support-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .activity-modal-dialog {
    margin: 1rem;
    max-height: 85vh;
  }
  .activity-modal-header,
  .activity-modal-body,
  .activity-modal-footer {
    padding: 1.2rem;
  }
}

/* ==================== VIDEO GALLERY SECTION ==================== */
.video-section {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.video-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.video-player-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000000;
  overflow: hidden;
}

.video-player-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.video-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--green-dark);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.video-badge.saffron {
  background: var(--saffron);
}

.video-badge.maroon {
  background: var(--maroon);
}

.video-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.video-desc {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ==================== GALLERY FILTER BAR ==================== */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0;
}

.gallery-filter-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gallery-filter-btn:hover {
  background: var(--bg-cream);
  color: var(--green-dark);
  border-color: var(--green-light);
}

.gallery-filter-btn.active {
  background: var(--green-dark);
  color: #ffffff;
  border-color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(27, 94, 59, 0.25);
}

/* ==================== LIGHTBOX REFINEMENTS ==================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 20, 15, 0.92);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  max-width: 800px;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 640px) {
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: -40px;
    right: 10px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==================== SUBPAGE HERO & BREADCRUMBS ==================== */
.subpage-hero {
  background: linear-gradient(135deg, #103828 0%, #1b5e3b 100%);
  color: #ffffff;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 4, 0.15), transparent 60%);
  pointer-events: none;
}

.subpage-hero-inner {
  position: relative;
  z-index: 2;
}

.subpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.subpage-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.subpage-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.subpage-breadcrumb span {
  opacity: 0.5;
}

.subpage-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.subpage-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  line-height: 1.6;
  margin: 0;
}

/* Subpage Content Section */
.subpage-content {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  background: #ffffff;
}

/* Feature Grid & Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.feature-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--ink-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Detailed Program Cards */
.program-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-bottom: 2.5rem;
  transition: box-shadow 0.3s ease;
}

.program-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.program-detail-img-wrap {
  position: relative;
  min-height: 280px;
  background: #eef2ef;
}

.program-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail-body {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-detail-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.program-detail-body p {
  color: var(--ink-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.program-detail-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.program-detail-points li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--ink-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.program-detail-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 800;
}

@media (max-width: 860px) {
  .program-detail-card,
  .program-detail-card.reverse {
    grid-template-columns: 1fr;
  }
  .program-detail-img-wrap {
    height: 240px;
  }
}

/* Donor Spotlight */
.donor-spotlight-box {
  background: linear-gradient(135deg, #faf7f2 0%, #fdf0e2 100%);
  border: 2px solid #e89868;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.donor-spotlight-badge {
  display: inline-block;
  background: var(--saffron);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.donor-spotlight-box h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.donor-spotlight-box p {
  color: var(--ink-primary);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 800px;
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.news-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  height: 200px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-snippet {
  color: var(--ink-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Transparency Framework Cards */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.transparency-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.transparency-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.transparency-card p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* Subpage Call to Action Strip */
.subpage-cta-banner {
  background: linear-gradient(135deg, #103828 0%, #1b5e3b 100%);
  color: #ffffff;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  text-align: center;
  margin-top: 4rem;
  border-radius: var(--radius-lg);
}

.subpage-cta-banner h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.subpage-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 1.8rem auto;
}

/* Program Grid & Cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.program-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.program-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f2;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.03);
}

.program-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 56, 40, 0.92);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.program-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.program-card-body p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.program-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.program-highlights li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.88rem;
  color: var(--ink-primary);
  margin-bottom: 0.45rem;
  line-height: 1.45;
}

.program-highlights li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: var(--orange-hero);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

/* Values Grid in contact.html & volunteer.html */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.value-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.value-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ==================== AUTHENTIC HUMAN HERO BANNER ==================== */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
/* ==================== COMPACT & PROFESSIONAL HEADER ==================== */
.top-brand-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 56, 40, 0.08);
}

.brand-header-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 0.42rem clamp(1rem, 2.5vw, 2rem) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem !important;
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 0.85rem !important;
}

/* 1. Normal, Professional Logo Sizing */
.main-circle-logo {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(16, 56, 40, 0.1));
  transition: transform 0.2s ease;
}
.brand-logo-link:hover .main-circle-logo {
  transform: scale(1.03);
}

/* 2. Compact Foundation Name Properly Aligned with Logo */
.brand-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-titles .en-name {
  display: none !important; /* Hide duplicate all-caps line to keep header slim and elegant */
}

.brand-titles .gu-name {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: clamp(1.18rem, 1.6vw, 1.35rem) !important;
  font-weight: 800 !important;
  color: #0b3823 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}

.brand-titles .brand-tagline {
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  color: #53695d !important;
  line-height: 1.2 !important;
  margin-top: 2px !important;
  letter-spacing: 0.01em;
}

/* Compact Motto Badge */
.brand-motto-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem !important;
  padding-left: 1rem !important;
}

.motto-leaf-icon {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
}

.motto-line {
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: #11422b !important;
  line-height: 1.2 !important;
}

.motto-swoosh {
  height: 2px !important;
  margin-top: 2px !important;
}

/* Top Super Green Bar (Compact) */
.super-top-bar {
  background-color: #0b2f1e;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.32rem 0 !important;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.super-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.super-top-left {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

.super-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.super-top-motto {
  color: #dbead2;
  font-weight: 500;
  font-size: 0.78rem;
}

.super-top-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-icon-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ==================== 4. COMPACT & CLEAN NAVIGATION ==================== */
.sub-nav-bar {
  background: #faf8f3 !important;
  border-top: 1px solid rgba(16, 56, 40, 0.06) !important;
  border-bottom: 1px solid rgba(16, 56, 40, 0.08) !important;
}

.sub-nav-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 0.3rem clamp(1rem, 2.5vw, 2rem) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 861px) {
  .nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .mobile-toggle-btn {
    display: none !important;
  }
}

.sub-nav-bar .nav-pill {
  background: transparent !important;
  color: #1c3327 !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  padding: 0.32rem 0.62rem !important;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s ease;
  letter-spacing: 0.005em;
}

.sub-nav-bar .nav-pill:hover {
  color: #0b3d25 !important;
  background: transparent !important;
}

.sub-nav-bar .nav-pill.active,
.sub-nav-bar .nav-pill.active-green {
  color: #0b3d25 !important;
  font-weight: 700 !important;
  background: transparent !important;
}

.sub-nav-bar .nav-pill.active::after,
.sub-nav-bar .nav-pill.active-green::after {
  content: "";
  position: absolute;
  bottom: -3px !important;
  left: 0.6rem !important;
  right: 0.6rem !important;
  height: 2.5px !important;
  background-color: #17633c !important;
  border-radius: 2px;
}

/* Compact, proportional Support Us button */
.nav-support-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem !important;
  background-color: #e8590c !important;
  color: #ffffff !important;
  padding: 0.38rem 0.95rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 3px 10px rgba(232, 89, 12, 0.22) !important;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-support-orange:hover {
  background-color: #d14d06 !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(232, 89, 12, 0.3) !important;
}

/* Mobile Toggle Base */
.mobile-toggle-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f1f6f2;
  border: 1px solid rgba(16, 56, 40, 0.15);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.mobile-toggle-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #0b3823;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

/* ==================== 5. BALANCED HERO SECTION ==================== */
.human-hero-section {
  position: relative;
  background-color: #fbf5e9;
  background-image: url('../images/hero/hero-banner.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  min-height: clamp(420px, 36vw, 520px) !important;
  display: flex;
  align-items: center;
  padding: clamp(2.2rem, 3.5vw, 3.2rem) 0 clamp(3rem, 4vw, 3.8rem) 0 !important;
  overflow: hidden;
}

.human-hero-container {
  max-width: 1360px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.65fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.human-hero-left {
  max-width: 520px;
}

.human-hero-script {
  font-family: 'Caveat', cursive, var(--font-script, cursive);
  font-size: 1.45rem !important;
  font-weight: 700;
  color: #7b4f2c;
  margin-bottom: 0.15rem !important;
  letter-spacing: 0.02em;
}

.human-hero-title {
  font-family: 'Plus Jakarta Sans', var(--font-display, sans-serif);
  font-size: clamp(2.1rem, 3.2vw, 2.85rem) !important;
  line-height: 1.14 !important;
  font-weight: 800;
  margin-bottom: 0.75rem !important;
  letter-spacing: -0.02em;
}

.title-green {
  color: #0d3d25;
}

.title-orange {
  color: #e8590c;
}

.human-hero-tagline {
  font-size: 1.02rem !important;
  font-weight: 700;
  color: #172a20;
  margin-bottom: 0.65rem !important;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.human-hero-desc {
  font-size: 0.92rem !important;
  color: #3b4841;
  line-height: 1.62 !important;
  margin-bottom: 1.35rem !important;
  max-width: 470px;
}

.human-hero-buttons {
  display: flex;
  align-items: center;
  gap: 0.85rem !important;
  flex-wrap: wrap;
  margin-bottom: 1.1rem !important;
}

.btn-support-work {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem !important;
  background-color: #e8590c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem !important;
  padding: 0.68rem 1.45rem !important;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(232, 89, 12, 0.25) !important;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-support-work:hover {
  background-color: #d14d06;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 89, 12, 0.35) !important;
}
.btn-heart {
  color: #ffffff;
  font-size: 1rem !important;
}
.btn-arrow {
  font-weight: 800;
  font-size: 1rem !important;
  transition: transform 0.2s;
}
.btn-support-work:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #163e2a !important;
  font-weight: 700;
  font-size: 0.88rem !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: 50px;
  border: 1.5px solid #163e2a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-learn-more:hover {
  background-color: #f3f0e8;
  transform: translateY(-2px);
}

.human-hero-motto {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b3a32;
  margin-top: 0.2rem;
}
.motto-sprout {
  font-size: 1.15rem;
}
.motto-swoop {
  margin-left: 0.3rem;
}

/* Center Spacer leaves the beautiful sewing training scene completely clear */
.human-hero-center-spacer {
  min-height: 100px;
}

/* Right Column: Values & Organic Impact Badge */
.human-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  min-height: 380px;
  padding-right: 1.5rem;
}

.human-values-block {
  text-align: right;
  margin-top: 0.5rem;
}

.values-heart {
  font-size: 2.3rem;
  color: #588e6e;
  margin-bottom: 0.2rem;
  font-weight: 300;
  line-height: 1;
  transform: rotate(-10deg);
  display: inline-block;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: 'Caveat', cursive, var(--font-script, cursive);
  font-size: 1.65rem;
  line-height: 1.25;
  color: #2c3e34;
  font-weight: 700;
}

.human-impact-stamp {
  background: #11422b;
  color: #ffffff;
  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  margin-top: auto;
  margin-bottom: 0.5rem;
  position: relative;
}

.stamp-inner {
  display: flex;
  flex-direction: column;
  font-family: 'Caveat', cursive, var(--font-script, cursive);
  line-height: 1.2;
}

.stamp-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
}

.stamp-sub {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffe3a8;
}

/* ==================== FLOATING PROGRAM CATEGORIES STRIP (COMPACT) ==================== */
.floating-programs-strip {
  position: relative;
  z-index: 10;
  margin-top: -36px;
  padding-bottom: 1.2rem;
}

.programs-strip-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(17, 66, 43, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 0.75rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #172a20;
  padding: 0.35rem 0.4rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.strip-item:hover {
  background-color: #f7f9f7;
  transform: translateY(-2px);
}

.strip-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.strip-item:hover .strip-icon-circle {
  transform: scale(1.06);
}

.strip-icon-circle svg {
  width: 18px;
  height: 18px;
}

/* Icon Palette matching reference */
.icon-pink {
  background: #ffe3e3;
  color: #e03131;
}
.icon-gold {
  background: #fff3bf;
  color: #e67700;
}
.icon-mint {
  background: #c3fae8;
  color: #0ca678;
}
.icon-sky {
  background: #d0ebff;
  color: #1971c2;
}
.icon-green {
  background: #d3f9d8;
  color: #2f9e44;
}
.icon-purple {
  background: #eebefa;
  color: #9c36b5;
}

.strip-label {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1c2e24;
}

/* Donor Recognition Bar below strip */
.hero-donor-strip {
  background: linear-gradient(90deg, #103828 0%, #174d34 50%, #1e5c3e 100%);
  color: #ffffff;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--orange-hero);
  position: relative;
  z-index: 3;
}

.hero-donor-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.donor-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffe0b2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.donor-strip-content {
  flex: 1;
  min-width: 260px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.donor-strip-content strong {
  color: #ffe0b2;
  font-weight: 700;
}

.donor-strip-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.donor-strip-call {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.donor-strip-call:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.donor-strip-btn {
  background-color: var(--orange-hero);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(232, 86, 24, 0.25);
  white-space: nowrap;
}

.donor-strip-btn:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
}

/* ==================== GLOBAL COMPACT TYPOGRAPHY & SECTIONS ==================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem !important;
}

.section-title {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem) !important;
  font-weight: 800 !important;
  color: var(--green-dark) !important;
  line-height: 1.25 !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -0.01em !important;
}

.section-eyebrow {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.3rem !important;
}

.section-lead {
  font-size: 0.94rem !important;
  color: var(--ink-muted) !important;
  line-height: 1.62 !important;
  max-width: 660px !important;
  margin-inline: auto;
}

/* Subpage Hero & Content */
.subpage-hero {
  padding: clamp(1.8rem, 3.2vw, 2.6rem) 0 !important;
}

.subpage-title {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.45rem !important;
}

.subpage-subtitle {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  max-width: 720px !important;
}

.subpage-breadcrumb {
  margin-bottom: 0.65rem !important;
  font-size: 0.82rem !important;
}

.subpage-content {
  padding: clamp(2.2rem, 3.8vw, 3.4rem) 0 !important;
}

/* Activity Cards & Images */
.activities-section {
  padding: clamp(2.5rem, 4vw, 3.6rem) 0 !important;
}

.activities-grid {
  gap: 1.4rem !important;
  margin-top: 1.8rem !important;
}

.activity-card-img-wrap {
  height: 195px !important;
}

.activity-card-body {
  padding: 1.25rem !important;
}

.activity-card-title {
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
  margin-bottom: 0.45rem !important;
}

.activity-card-desc {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: #43544c !important;
}

/* Footer Refinements */
.site-footer {
  padding: 2.8rem 0 1.5rem !important;
}

.footer-desc {
  font-size: 0.86rem !important;
  line-height: 1.58 !important;
}

.footer-col h4 {
  font-size: 0.96rem !important;
  margin-bottom: 0.75rem !important;
}

.footer-links a {
  font-size: 0.85rem !important;
}

.footer-contact-details p {
  font-size: 0.85rem !important;
  line-height: 1.55 !important;
}

/* Subpage Hero with banner background */
.subpage-hero.has-banner-bg {
  background-image: linear-gradient(135deg, rgba(16, 56, 40, 0.90) 0%, rgba(27, 94, 59, 0.82) 100%), url('../images/hero/hero-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* ==================== GLOBAL MOBILE RESILIENCE ==================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE DESIGN BREAKPOINTS ==================== */

/* 1. Large Tablets & Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .programs-strip-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
  .human-hero-container {
    grid-template-columns: 1.2fr 1fr;
  }
  .human-hero-center-spacer {
    display: none;
  }
}

/* 2. Tablets & Medium Screens (<= 991px) */
@media (max-width: 991px) {
  .human-hero-section {
    padding: 2.5rem 0 3.2rem 0 !important;
    background-position: 85% center;
  }
  .human-hero-container {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .human-hero-right {
    align-items: flex-start;
    padding-right: 0;
    min-height: auto;
  }
  .human-values-block {
    text-align: left;
  }
  .programs-strip-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-programs-strip {
    margin-top: 0.8rem;
  }
}

/* 3. Mobile Header & Clean Navigation (<= 860px) */
@media (max-width: 860px) {
  /* Super Top Bar */
  .super-top-bar {
    padding: 0.28rem 0.75rem !important;
  }
  .super-top-inner {
    justify-content: center !important;
  }
  .super-top-left {
    font-size: 0.74rem !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .super-top-right {
    display: none !important;
  }

  /* Compact Brand Header */
  .top-brand-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 56, 40, 0.08);
  }
  .brand-header-inner {
    padding: 0.38rem 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.6rem !important;
  }
  .brand-left {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    min-width: 0 !important;
    flex: 1 1 auto;
  }
  .main-circle-logo {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(16, 56, 40, 0.12));
  }
  .brand-titles {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .brand-titles .en-name {
    display: none !important;
  }
  .brand-titles .gu-name {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem) !important;
    font-weight: 800 !important;
    color: #0b3823 !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    white-space: normal !important;
  }
  .brand-titles .brand-tagline {
    font-size: 0.72rem !important;
    color: #4b6255 !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .brand-motto-badge {
    display: none !important;
  }

  /* Sub Navigation Bar & Toggle */
  .sub-nav-bar {
    position: relative !important;
    z-index: 1000 !important;
    background: #faf8f3 !important;
    border-top: 1px solid rgba(16, 56, 40, 0.06) !important;
    border-bottom: 1px solid rgba(16, 56, 40, 0.08) !important;
  }
  .sub-nav-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0.32rem 0.85rem !important;
    min-height: 44px !important;
  }
  .nav-right-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
    margin-left: auto !important;
  }
  .nav-support-orange {
    height: 36px !important;
    padding: 0 0.85rem !important;
    font-size: 0.80rem !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 8px rgba(232, 89, 12, 0.22) !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(16, 56, 40, 0.18) !important;
    cursor: pointer !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1002 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  }
  .mobile-toggle-btn span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background-color: #0b3823 !important;
    border-radius: 2px !important;
    margin: 2px 0 !important;
    transition: transform 0.24s ease, opacity 0.2s ease !important;
  }
  .mobile-toggle-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }
  .mobile-toggle-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  .mobile-toggle-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  /* Navigation Drawer (Closed by default, smooth animated drop) */
  .nav-links-wrapper {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-top: 1px solid #eef2ed !important;
    border-bottom: 3px solid #165b37 !important;
    box-shadow: 0 14px 32px rgba(11, 47, 30, 0.18) !important;
    flex-direction: column !important;
    padding: 0.65rem 0.85rem 0.85rem !important;
    gap: 0.3rem !important;
    z-index: 9999 !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
  }
  .nav-links-wrapper.open {
    display: flex !important;
    animation: mobileMenuSlideDown 0.22s ease-out forwards !important;
  }
  .sub-nav-bar .nav-pill {
    display: flex !important;
    align-items: center !important;
    padding: 0.72rem 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #172a20 !important;
    border-radius: 6px !important;
    background: #f8faf8 !important;
    border: 1px solid rgba(16, 56, 40, 0.05) !important;
    text-decoration: none !important;
    min-height: 44px !important;
    transition: background 0.15s ease, color 0.15s ease !important;
  }
  .sub-nav-bar .nav-pill:active,
  .sub-nav-bar .nav-pill:hover {
    background: #ebf5ee !important;
    color: #0b3d25 !important;
  }
  .sub-nav-bar .nav-pill.active,
  .sub-nav-bar .nav-pill.active-green {
    background: #0f4d2d !important;
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  .sub-nav-bar .nav-pill.active::after,
  .sub-nav-bar .nav-pill.active-green::after {
    display: none !important;
  }

  /* Hero Section Adaptations */
  .human-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem) !important;
    line-height: 1.16 !important;
  }
  .human-hero-tagline {
    font-size: 0.92rem !important;
  }
  .human-hero-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.1rem !important;
  }
  .human-hero-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.65rem !important;
  }
}

/* 4. One-Column Layouts & Responsive Grids (<= 640px) */
@media (max-width: 640px) {
  .programs-strip-card {
    grid-template-columns: 1fr !important;
  }
  .activities-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .pillars-five-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.1rem !important;
  }
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .contact-strip-inner,
  .quote-banner-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  .contact-strip-left,
  .contact-strip-right {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .form-grid,
  .footer-grid,
  .about-pillars-list {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .donate-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .program-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .transparency-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .donor-process-steps {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .donor-step-box {
    padding: 1.5rem !important;
    margin-top: 2rem !important;
  }
  .donor-spotlight-box {
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
  }
  .subpage-hero {
    padding: 2.2rem 0 !important;
  }
  .subpage-content {
    padding: 2rem 0 !important;
  }
  .subpage-title {
    font-size: 1.7rem !important;
  }
  .subpage-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
  .program-detail-card,
  .program-detail-card.reverse {
    grid-template-columns: 1fr !important;
    margin-bottom: 1.8rem !important;
  }
  .program-detail-img-wrap {
    height: 220px !important;
  }
  .program-detail-body {
    padding: 1.25rem !important;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1.25rem !important;
  }
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
  }

  /* Touch-friendly inputs & prevent iOS automatic zoom */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
    width: 100% !important;
  }

  .four-women-img,
  .about-image-wrapper img,
  .focus-visual img {
    height: 240px !important;
    max-height: 240px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* Compact Floating WhatsApp Button on Mobile */
  .whatsapp-float {
    bottom: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45) !important;
    z-index: 998 !important;
  }
  .whatsapp-float span {
    display: none !important;
  }
  .whatsapp-float .wa-ico,
  .whatsapp-float svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* 5. Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .human-hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  .btn-support-work,
  .btn-learn-more {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.68rem 1.2rem !important;
  }
  .human-hero-title {
    font-size: 1.65rem !important;
  }
  .human-hero-script {
    font-size: 1.22rem !important;
  }
  .container {
    padding-inline: 0.85rem !important;
  }
}

/* 6. iPhone SE & Small Mobile (<= 375px) */
@media (max-width: 375px) {
  .super-top-bar {
    display: none !important;
  }
  .brand-header-inner {
    padding: 0.35rem 0.65rem !important;
    gap: 0.45rem !important;
  }
  .brand-left {
    gap: 0.55rem !important;
  }
  .main-circle-logo {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }
  .brand-titles .gu-name {
    font-size: 0.98rem !important;
    letter-spacing: -0.01em !important;
  }
  .brand-titles .brand-tagline {
    display: none !important; /* Hide tagline on <= 375px to keep header slim */
  }
  .sub-nav-inner {
    padding: 0.28rem 0.65rem !important;
  }
  .nav-support-orange {
    height: 34px !important;
    padding: 0 0.7rem !important;
    font-size: 0.75rem !important;
  }
  .mobile-toggle-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }
  .human-hero-title {
    font-size: 1.5rem !important;
  }
  .activity-card-body {
    padding: 1.1rem !important;
  }
  .impact-stat-number {
    font-size: 1.55rem !important;
  }
}

/* 7. Extra Small Devices (<= 320px) */
@media (max-width: 320px) {
  .brand-header-inner {
    padding: 0.3rem 0.5rem !important;
  }
  .brand-left {
    gap: 0.45rem !important;
  }
  .main-circle-logo {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
  .brand-titles .gu-name {
    font-size: 0.90rem !important;
  }
  .nav-support-orange {
    height: 32px !important;
    padding: 0 0.55rem !important;
  }
  .nav-support-orange span {
    font-size: 0.72rem !important;
  }
  .mobile-toggle-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }
  .impact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==================== MODERN BALANCED ABOUT US SECTION ==================== */
.about-premium-section {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  background: linear-gradient(180deg, #fcfbf9 0%, #f6f3ee 100%);
  border-top: 1px solid rgba(15, 61, 36, 0.08);
  border-bottom: 1px solid rgba(15, 61, 36, 0.08);
}

.about-balanced-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: start;
}

/* --- Left Column: Visual Showcase --- */
.about-showcase-col {
  width: 100%;
}

.about-showcase-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 61, 36, 0.12);
  box-shadow: 0 14px 34px -10px rgba(15, 61, 36, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-photo-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fdfbf7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #edf2ee;
}

.about-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.about-showcase-card:hover .about-photo-wrapper img {
  transform: scale(1.015);
}

.about-photo-tag-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(15, 61, 36, 0.90);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.about-photo-caption-bar {
  padding: 1.1rem 1.3rem;
  background: #ffffff;
  border-bottom: 1px solid #edf2ee;
}

.about-photo-role {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #c05621;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.about-photo-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f3d26;
  margin: 0 0 3px 0;
  line-height: 1.25;
}

.about-photo-loc {
  font-size: 0.82rem;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

.about-showcase-footer {
  padding: 1.1rem 1.3rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border-top: 1px solid #edf2ee;
}

.about-footer-org {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  border: 1.5px solid #d4e7db;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.about-footer-text h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f3d26;
  margin: 0;
  line-height: 1.2;
}

.about-footer-text p {
  font-size: 0.76rem;
  color: #6c757d;
  margin: 2px 0 0 0;
  line-height: 1.2;
}

.about-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f7f2;
  color: #0f3d26;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.80rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #c9e4d1;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-quick-btn:hover {
  background: #0f3d26;
  color: #ffffff;
  border-color: #0f3d26;
}

/* --- Right Column: Editorial & Content Cards --- */
.about-editorial-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-header-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c05621;
  background: #fff4eb;
  border: 1px solid #fbd38d;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.about-main-title {
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 800;
  color: #0f3d26;
  line-height: 1.24;
  margin: 0.35rem 0 0.5rem 0;
  letter-spacing: -0.015em;
}

.about-intro-lead {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.about-intro-lead strong {
  color: #0f3d26;
}

.about-intro-body {
  font-size: 0.94rem;
  line-height: 1.68;
  color: #4b5563;
  margin: 0;
}

/* Vision & Mission Cards Row */
.about-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.2rem;
}

.about-vm-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid #e2ddd3;
  box-shadow: 0 4px 14px rgba(15, 61, 36, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.about-vm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 61, 36, 0.08);
}

.about-vm-card.vision-card {
  border-top: 3.5px solid #1a5638;
  background: linear-gradient(180deg, #f9fdfa 0%, #ffffff 100%);
}

.about-vm-card.mission-card {
  border-top: 3.5px solid #d96b27;
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.about-vm-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-vm-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vision-card .about-vm-icon {
  background: #eaf4ed;
}

.mission-card .about-vm-icon {
  background: #fef0e6;
}

.about-vm-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f3d26;
  margin: 0;
}

.about-vm-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
}

/* Leena ben Kaushalkumar Patel Profile Card */
.about-leader-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #d4e5da;
  padding: 1.35rem 1.6rem;
  box-shadow: 0 6px 20px rgba(15, 61, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-leader-card:hover {
  box-shadow: 0 10px 26px rgba(15, 61, 36, 0.09);
  border-color: #b8d9c2;
}

.about-leader-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-leader-titles {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-leader-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f3d26;
  background: #eaf4ed;
  border: 1px solid #cce5d4;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

.about-leader-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f3d26;
  margin: 0;
  line-height: 1.25;
}

.about-leader-bio {
  font-size: 0.89rem;
  line-height: 1.62;
  color: #374151;
  margin: 0;
}

.about-leader-quote {
  background: #f4faf6;
  border-left: 3.5px solid #1a5638;
  padding: 0.75rem 1.1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #103828;
  font-style: italic;
  margin: 0;
}

.about-leader-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.4rem;
  border-top: 1px solid #f0f4f1;
}

.about-leader-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.about-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a5638;
  background: #f0f7f2;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #d4e7db;
}

.about-leader-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d96b27;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.about-leader-btn:hover {
  color: #b24d10;
  gap: 7px;
}

/* Responsive Rules for About Us Section */
@media (max-width: 1024px) {
  .about-balanced-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .about-showcase-col {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-cards-row {
    grid-template-columns: 1fr;
  }
  .about-leader-card {
    padding: 1.15rem 1.25rem;
  }
  .about-showcase-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .about-quick-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 1.55rem;
  }
  .about-leader-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}





