/* PAGE BANNER */
.page-banner {
  position: relative;
  height: 320px;
  background: url('../images/hero.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.banner-content {
  position: relative;
  color: white;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #F4B400;
}

.banner-content p {
  font-size: 18px;
  color: #eee;
}

/* ACTIVE NAV */
.nav-links a.active {
  color: #ff6b35;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 3px;
}

/* ── SHARED SECTION STYLES ───────────────────────────────── */
.csr-section {
  padding: 80px 80px 60px;
  background: #f9f9f9;
}

.csr-section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 25px;
  margin-bottom: 14px;
}

.ongoing-badge {
  background: #eafaf1;
  color: #27ae60;
}

.ongoing-badge i {
  font-size: 10px;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.upcoming-badge {
  background: #fff0ea;
  color: #F4B400;
}

.team-badge {
  background: #eaf0fb;
  color: #1d3557;
}

.csr-section-heading h2 {
  font-size: 36px;
  color: #1d3557;
  margin: 0 0 10px;
}

.csr-section-heading p {
  font-size: 16px;
  color: #777;
}

/* ── PROJECTS GRID ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* PROJECT CARD */
.project-card {
  background: white;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 4px solid transparent;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(255,107,53,0.14);
  border-bottom-color: #F4B400;
}

.project-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.project-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 36px;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
}

.project-card h3 {
  font-size: 17px;
  color: #1d3557;
  margin: 0;
  line-height: 1.4;
}

.project-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* STATS */
.project-stats {
  display: flex;
  gap: 10px;
  border-top: 1px solid #f5f5f5;
  padding-top: 14px;
}

.pstat {
  flex: 1;
  text-align: center;
}

.pstat-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #F4B400;
}

.pstat-label {
  display: block;
  font-size: 10px;
  color: #aaa;
  margin-top: 2px;
  line-height: 1.3;
}

/* TAGS */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  font-size: 11px;
  font-weight: 600;
  background: #f5f7fa;
  color: #555;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
}

/* ── UPCOMING SECTION ────────────────────────────────────── */
.upcoming-section {
  background: #1d3557;
  padding: 80px 80px 70px;
}

.upcoming-section .csr-section-heading h2 {
  color: white;
}

.upcoming-section .csr-section-heading p {
  color: #aac4e0;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.upcoming-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 30px 24px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.upcoming-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-5px);
}

.upcoming-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,107,53,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #F4B400;
  margin-bottom: 16px;
}

.upcoming-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,107,53,0.15);
  color: #F4B400;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.upcoming-card h3 {
  font-size: 16px;
  color: white;
  margin: 0 0 10px;
}

.upcoming-card p {
  font-size: 13px;
  color: #aac4e0;
  line-height: 1.8;
  margin: 0 0 16px;
}

.upcoming-need {
  font-size: 12px;
  color: #F4B400;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

/* ── COLLABORATE SECTION ─────────────────────────────────── */
.collaborate-section {
  padding: 80px 80px 70px;
  background: #fff8f5;
}

.collab-heading {
  text-align: center;
  margin-bottom: 36px;
}

.collab-heading h2 {
  font-size: 36px;
  color: #1d3557;
  margin: 0 0 10px;
}

.collab-heading p {
  font-size: 16px;
  color: #777;
}

/* COLLAB BUTTONS */
.collab-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.collab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}

.collab-btn-primary {
  background: #F4B400;
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.30);
}

.collab-btn-primary:hover {
  background: #e85a2a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.40);
}

.collab-btn-secondary {
  background: #1d3557;
  color: white;
  box-shadow: 0 4px 16px rgba(29,53,87,0.20);
}

.collab-btn-secondary:hover {
  background: #16293f;
  transform: translateY(-3px);
}

.collab-btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}

.collab-btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}

/* HOW TO COLLABORATE */
.how-collab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.12);
}

.how-card i {
  font-size: 30px;
  color: #F4B400;
  margin-bottom: 14px;
  display: block;
}

.how-card h4 {
  font-size: 15px;
  color: #1d3557;
  margin: 0 0 10px;
}

.how-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ── CSR TEAM SECTION ────────────────────────────────────── */
.csr-team-section {
  padding: 80px 80px 90px;
  background: #f9f9f9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* TEAM CARD */
.team-card {
  background: white;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #F4B400;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(255,107,53,0.14);
}

/* AVATAR */
.team-avatar{
    width:120px;
    height:120px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    background:#f3f5f7;
}

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

.team-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.team-info h3 {
  font-size: 17px;
  color: #1d3557;
  margin: 0;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: #F4B400;
  display: block;
}

.team-org {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}

/* CONTACT LINKS */
.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.team-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Poppins', sans-serif;
}

.email-link {
  background: #fff0ea;
  color: #F4B400;
}

.email-link:hover {
  background: #F4B400;
  color: rgb(0, 0, 0);
}

.phone-link {
  background: #e8f4fd;
  color: #2980b9;
}

.phone-link:hover {
  background: #2980b9;
  color: white;
}

.wa-link {
  background: #eafaf1;
  color: #27ae60;
}

.wa-link:hover {
  background: #25d366;
  color: white;
}

.team-contact-link i {
  font-size: 14px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .projects-grid   { grid-template-columns: repeat(2, 1fr); }
  .upcoming-grid   { grid-template-columns: repeat(2, 1fr); }
  .how-collab      { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .csr-section,
  .upcoming-section,
  .collaborate-section,
  .csr-team-section { padding: 60px 20px; }

  .projects-grid   { grid-template-columns: 1fr; }
  .upcoming-grid   { grid-template-columns: 1fr; }
  .how-collab      { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }

  .collab-options  { flex-direction: column; align-items: center; }
  .collab-btn      { width: 100%; max-width: 320px; justify-content: center; }

  .banner-content h1 { font-size: 36px; }
}
/* ── CLICK HINT ON CARD ──────────────────────────────────── */
.proj-click-hint {
  font-size: 11px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color 0.3s;
}

.project-card:hover .proj-click-hint {
  color: #F4B400;
}

/* ── PROJECT MODAL OVERLAY ───────────────────────────────── */
.proj-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}

.proj-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* MODAL BOX */
.proj-modal-box {
  background: white;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.35s;
}

.proj-modal-overlay.open .proj-modal-box {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.proj-modal-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 100001;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.proj-modal-close:hover {
  background: #F4B400;
}

/* ── SLIDESHOW ───────────────────────────────────────────── */
.proj-slideshow {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.proj-slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.proj-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

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

/* ARROWS */
.proj-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.proj-slide-arrow:hover { background: #F4B400; }
.left-arrow  { left: 20px; }
.right-arrow { right: 20px; }

/* DOTS */
.proj-slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.proj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.proj-dot.active {
  background: #F4B400;
  width: 22px;
  border-radius: 4px;
}

/* COUNTER */
.proj-slide-counter {
  position: absolute;
  top: 16px;
  left: 20px;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── MODAL BODY ──────────────────────────────────────────── */
.proj-modal-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  flex: 1;
}

/* LEFT PANEL */
.proj-modal-left {
  padding: 44px 48px 50px;
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proj-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 25px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.proj-modal-title {
  font-size: 28px;
  color: #1d3557;
  margin: 0;
  line-height: 1.3;
}

.proj-modal-tagline {
  font-size: 15px;
  color: #F4B400;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

/* STATS */
.proj-modal-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.proj-modal-stat {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.proj-ms-num {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #F4B400;
}

.proj-ms-label {
  display: block;
  font-size: 10px;
  color: #aaa;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* INFO BLOCK */
.proj-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proj-info-label {
  font-size: 13px;
  font-weight: 700;
  color: #1d3557;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.proj-info-label i { color: #F4B400; }

.proj-info-text {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin: 0;
  white-space: pre-line;
}

/* PROPOSAL */
.proj-proposal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proj-proposal-row {
  display: flex;
  gap: 12px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px 14px;
  border-left: 3px solid #F4B400;
}

.prop-label {
  font-size: 12px;
  font-weight: 700;
  color: #1d3557;
  min-width: 120px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.prop-value {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* TAGS */
.proj-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proj-modal-tags span {
  font-size: 12px;
  font-weight: 600;
  background: #f0f3f7;
  color: #1d3557;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e0e5ec;
}

/* CTA ROW */
.proj-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.proj-cta-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}

.proj-cta-donate {
  background: #F4B400;
  color: white;
  box-shadow: 0 4px 14px rgba(255,107,53,0.30);
}

.proj-cta-donate:hover {
  background: #e85a2a;
  transform: translateY(-2px);
}

.proj-cta-collab {
  background: #1d3557;
  color: white;
  box-shadow: 0 4px 14px rgba(29,53,87,0.20);
}

.proj-cta-collab:hover {
  background: #F4B400;
  transform: translateY(-2px);
}

/* RIGHT PANEL */
.proj-modal-right {
  padding: 44px 36px 50px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow-y: auto;
}

.proj-right-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proj-right-label {
  font-size: 13px;
  font-weight: 700;
  color: #1d3557;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.proj-right-label i { color: #F4B400; }

/* DOC IMAGE GRID */
.proj-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proj-doc-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.proj-doc-thumb:hover {
  border-color: #F4B400;
  transform: scale(1.03);
}

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

.doc-zoom {
  position: absolute;
  inset: 0;
  background: rgba(29,53,87,0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.proj-doc-thumb:hover .doc-zoom { opacity: 1; }

/* VIDEO */
.proj-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 2px solid #f0f0f0;
}

.proj-video {
  width: 100%;
  max-height: 260px;
  display: block;
  border-radius: 12px;
}

.no-content {
  font-size: 13px;
  color: #bbb;
  font-style: italic;
}

/* ── IMAGE LIGHTBOX ──────────────────────────────────────── */
#imgLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
}

#imgLightbox.lb-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

#imgLbOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#imgLbImg {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#imgLbClose {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#imgLbClose:hover { background: #F4B400; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .proj-modal-body {
    grid-template-columns: 1fr;
  }
  .proj-modal-left {
    padding: 28px 22px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .proj-modal-right {
    padding: 28px 22px;
  }
  .proj-slideshow {
    height: 260px;
  }
  .proj-doc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   GLOBAL MOBILE RESPONSIVE SYSTEM
========================================= */

@media(max-width:900px){

  html,
  body{
    overflow-x:hidden;
  }

  /* SECTION SPACING */
  section,
  .section,
  .page-section{
    padding-left:24px !important;
    padding-right:24px !important;
  }

  /* HERO SECTIONS */
  .hero,
  .page-banner,
  .about-hero,
  .children-hero,
  .csr-hero,
  .ach-hero,
  .contact-hero,
  .donate-hero{
    min-height:auto !important;
    padding:140px 24px 80px !important;
    text-align:center;
  }

  .hero h1,
  .page-banner h1,
  .about-hero h1,
  .children-hero h1,
  .csr-hero h1,
  .ach-hero h1,
  .contact-hero h1,
  .donate-hero h1{
    font-size:clamp(2.3rem,9vw,4rem) !important;
    line-height:1 !important;
  }

  .hero p,
  .page-banner p{
    font-size:.95rem !important;
    line-height:1.8 !important;
  }

  /* NAVBAR */
  .navbar{
    padding:18px 24px !important;
    flex-wrap:wrap !important;
    gap:18px !important;
  }

  .logo-container{
    width:100% !important;
    justify-content:center !important;
  }

  .logo-container span{
    font-size:1rem !important;
  }

  .nav-links{
    width:100% !important;
    overflow-x:auto !important;
    gap:18px !important;
    justify-content:flex-start !important;
    padding-bottom:8px !important;
    scrollbar-width:none;
  }

  .nav-links::-webkit-scrollbar{
    display:none;
  }

  .nav-links a{
    white-space:nowrap;
    font-size:.9rem !important;
  }

  .donate-container{
    width:100%;
  }

  .donate-btn{
    width:100%;
    text-align:center;
  }

  /* ALL GRIDS */
  .tiles-grid,
  .children-grid,
  .ach-grid,
  .csr-grid,
  .projects-grid,
  .footer-container,
  .contact-container,
  .vol-grid,
  .other-projects-grid,
  .detail-four-tiles,
  .detail-three-cta,
  .vol-what-grid,
  .team-grid,
  .donate-grid,
  .impact,
  .stats-grid{
    grid-template-columns:1fr !important;
  }

  /* COMMON CARDS */
  .tile,
  .child-card,
  .ach-card,
  .project-card,
  .vol-tile,
  .contact-card,
  .detail-tile,
  .donate-card,
  .stat-card{
    padding:24px !important;
    border-radius:24px !important;
  }

  /* INTRO / FLEX SECTIONS */
  .intro,
  .about-intro,
  .founder-intro,
  .mission-section,
  .contact-wrap{
    flex-direction:column !important;
    gap:40px !important;
  }

  .intro-content,
  .intro-slider,
  .founder-photo,
  .founder-story,
  .mission-left,
  .mission-right{
    width:100% !important;
  }

  /* FORMS */
  .form-row,
  .vf-row{
    flex-direction:column !important;
  }

  .vf-group,
  .form-group{
    width:100% !important;
  }

  /* FILTER TABS */
  .vol-filter-tabs,
  .filter-tabs{
    overflow-x:auto;
    justify-content:flex-start;
    gap:10px;
    padding-bottom:10px;
    scrollbar-width:none;
  }

  .vol-filter-tabs::-webkit-scrollbar,
  .filter-tabs::-webkit-scrollbar{
    display:none;
  }

  .filter-tab{
    white-space:nowrap;
  }

  /* DETAIL PAGE */
  .detail-title-overlay{
    padding:24px !important;
  }

  .detail-title-overlay h1{
    font-size:2rem !important;
  }

  .detail-img-viewer{
    height:70vh !important;
  }

  /* FOOTER */
  .footer{
    padding:70px 24px 30px !important;
  }

  .footer-container{
    gap:40px !important;
  }

  .footer-section{
    text-align:center !important;
  }

  .social-icons{
    justify-content:center !important;
  }

  .footer-bottom{
    text-align:center !important;
    flex-direction:column !important;
    gap:10px !important;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:600px){

  .hero,
  .page-banner{
    padding:120px 18px 70px !important;
  }

  .hero h1,
  .page-banner h1{
    font-size:2rem !important;
  }

  .hero p,
  .page-banner p{
    font-size:.88rem !important;
  }

  .buttons,
  .banner-buttons,
  .cta-buttons{
    flex-direction:column !important;
    width:100% !important;
    gap:12px !important;
  }

  .btn,
  .banner-btn,
  .cta-btn{
    width:100% !important;
    justify-content:center !important;
  }

  section,
  .section{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .intro-content h2,
  .section-title{
    font-size:1.8rem !important;
  }

  .impact .stat h2{
    font-size:2rem !important;
  }

  .detail-title-overlay h1{
    font-size:1.7rem !important;
  }

  .detail-img-arrow{
    width:42px !important;
    height:42px !important;
  }

}
/* MOBILE NAV OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-overlay a {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
}

.burger {
  display: none; /* only show on mobile */
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

/* SHOW BURGER ON SMALL SCREENS */
@media(max-width:900px){
  .burger { display: flex; }
  .nav-links, .nav-pill { display: none; }

  @media(max-width:900px){

  .navbar{
    width:100%;
    padding:14px 14px;

    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;
  }

  /* LOGO SIDE */
  .logo-container{
    display:flex;
    align-items:center;
    gap:8px;

    flex:1;
    min-width:0;
  }

  .logo-container img{
    height:38px;
    width:auto;
    flex-shrink:0;
  }

  .logo-container span{
    font-size:.82rem;
    font-weight:700;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    max-width:140px;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links{
    display:none !important;
  }

  /* DONATE BUTTON */
  .donate-container{
    margin-left:auto;
    margin-right:46px;

    flex-shrink:0;
  }

  .donate-btn{
    padding:8px 14px;
    font-size:.78rem;

    border-radius:40px;

    white-space:nowrap;
  }

  /* BURGER */
  .burger{
    display:flex;
    flex-direction:column;
    gap:4px;

    position:absolute;
    right:14px;
    top:50%;

    transform:translateY(-50%);

    background:none;
    border:none;

    cursor:pointer;
    z-index:9999;

    flex-shrink:0;
  }

  .burger span{
    width:22px;
    height:2.5px;

    border-radius:10px;
    background:#fff;
  }

}
}

/* FIX MOBILE NAVBAR */

@media(max-width:900px){

  html,
  body{
    overflow-x:hidden;
    width:100%;
  }

  .navbar{
    width:100%;
    padding:16px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
  }

  /* LOGO */
  .logo-container{
    display:flex;
    align-items:center;
    gap:10px;
    width:auto;
    flex:1;
  }

  .logo-container img{
    height:42px;
    width:auto;
  }

  .logo-container span{
    font-size:1rem;
    white-space:nowrap;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links{
    display:none !important;
  }

  /* DONATE BUTTON */
  .donate-container{
    width:auto;
    margin-right:55px; /* leaves space for burger */
  }

  .donate-btn{
    padding:12px 22px;
    font-size:.95rem;
    border-radius:40px;
    white-space:nowrap;
  }

  /* BURGER ICON */
  .burger{
    display:flex;
    flex-direction:column;
    gap:5px;

    position:absolute;
    right:18px;   /* MOVED TO RIGHT */
    top:50%;
    transform:translateY(-50%);

    background:none;
    border:none;
    cursor:pointer;
    z-index:9999;
  }

  .burger span{
    width:26px;
    height:3px;
    border-radius:10px;
    background:#fff;
  }

  /* MOBILE MENU */
  .mobile-overlay{
    position:fixed;
    inset:0;
    background:#000;
    z-index:99999;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;

    transform:translateX(100%);
    transition:.35s ease;
  }

  .mobile-overlay.open{
    transform:translateX(0);
  }

  .mobile-overlay a{
    color:#fff;
    text-decoration:none;
    font-size:1.5rem;
    font-weight:600;
  }

  .mob-close{
    position:absolute;
    top:24px;
    right:24px;

    background:none;
    border:none;

    color:#fff;
    font-size:2rem;
    cursor:pointer;
  }

}

@media (max-width:900px){

    .collab-options{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:14px;
    }

    .collab-btn{
        width:100%;
        max-width:320px;
        box-sizing:border-box;
        justify-content:center;
        text-align:center;
        margin:0;
    }

}


