/*
 * Sahaj Infotech Pvt. Ltd. -- AWHO Website
 * awho.css -- Brand tokens + components shared across all public pages
 * Will be extracted to wwwroot/css/awho.css when Razor scaffold lands in Phase 1.
 */

/* SAHAJM: brand tokens -- single source of truth */
:root {
  --awho-green-900: #143E2A;
  --awho-green-800: #1F5B3D;   /* primary deep green */
  --awho-green-700: #2C7349;
  --awho-green-600: #3A7D3E;   /* secondary green */
  --awho-green-100: #E6EFE3;
  --awho-green-50:  #F4F6F1;   /* pale background */
  --awho-gold-600:  #E0A02A;
  --awho-gold-500:  #F4B23F;   /* accent gold */
  --awho-gold-100:  #FFEFC9;
  --awho-cream:     #FBFAF3;
  --awho-ink-900:   #1A1A1A;
  --awho-ink-700:   #404040;
  --awho-ink-500:   #6B6B6B;
  --awho-ink-300:   #C7C7C7;
  --awho-line:      #E5E5E0;
  --awho-danger:    #C0392B;
  --awho-success:   #2D8657;
  --awho-info:      #2A6DBA;
  --awho-radius-sm: .375rem;
  --awho-radius:    .625rem;
  --awho-radius-lg: 1rem;
  --awho-shadow-sm: 0 1px 2px rgba(20,62,42,.06), 0 1px 3px rgba(20,62,42,.05);
  --awho-shadow:    0 4px 12px rgba(20,62,42,.08);
  --awho-shadow-lg: 0 12px 32px rgba(20,62,42,.12);
  --awho-font-head: 'Playfair Display', Georgia, serif;
  --awho-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* SAHAJM: base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--awho-font-body);
  color: var(--awho-ink-900);
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* SAHAJM: make <header> transparent to layout so the sticky `.awho-nav` inside it
   uses the body as its containing block -- nav now stays pinned for the entire page
   scroll, not just while the header element is in view. `display: contents` keeps
   the semantic `banner` landmark for assistive tech. */
body > header { display: contents; }
h1, h2, h3, h4, h5, h6, .h-serif { font-family: var(--awho-font-head); font-weight: 600; color: #106536; letter-spacing: -.01em; }
.h-serif { color: #000; font-size: 20px; }
h1 { font-size: clamp(1.75rem, 2.5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 1.5vw, 2rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
a { color: var(--awho-green-700); text-decoration: none; }
a:hover { color: var(--awho-green-800); }

/* SAHAJM: accessibility -- skip link */
.awho-skip {
  position: absolute; top: -40px; left: 0;
  background: var(--awho-green-800); color: #fff; padding: .5rem 1rem;
  z-index: 2000; transition: top .15s;
}
.awho-skip:focus { top: 0; color: #fff; text-decoration: none; }

/* SAHAJM: focus ring (WCAG 2.2 AA) */
:focus-visible { outline: 3px solid var(--awho-gold-500); outline-offset: 2px; border-radius: 4px; }

/* SAHAJM: WCAG 2.2 AA 2.5.8 target-size + 1.3.1 -- enlarge small click targets to 24px
   (icon glyphs unchanged, only the tappable area grows) and keep the projects list title
   visually at h2 size after its tag was promoted to <h1> for a valid heading order. */
.awho-utility .awho-social a { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; min-height: 24px; }
.awho-list-title { font-size: clamp(1.5rem, 1.5vw, 2rem); }
.awho-form-section .form-check-input,
.awho-captcha-checkbox { width: 1.5rem; height: 1.5rem; }
.awho-form-section .form-check { min-height: 1.5rem; padding-left: 2rem; }
.awho-form-section .form-check .form-check-input { margin-left: -2rem; }

/* =====================  HEADER  ===================== */

.awho-utility {
  background: #012609; color: rgba(255,255,255,.85);
  font-size: .8125rem; padding: .375rem 0;
}
.awho-utility a { color: rgba(255,255,255,.85); }
.awho-utility a:hover { color: #fff; text-decoration: underline; }
.awho-utility .awho-utility-sep { color: rgba(255,255,255,.35); margin: 0 .5rem; }
.awho-utility .awho-lang-toggle button {
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .75rem; padding: .15rem .5rem; border-radius: 4px;
}
.awho-utility .awho-lang-toggle button.active,
.awho-utility .awho-lang-toggle button:hover { background: var(--awho-gold-500); color: var(--awho-ink-900); border-color: var(--awho-gold-500); }

/* SAHAJM: WCAG 2.2.2 Pause/Stop/Hide -- global motion toggle in the utility bar.
   One control pauses/plays ALL auto-moving content (hero slider, news ticker,
   active-projects strip, notice-board marquee, card image sliders). */
.awho-motion-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  min-height: 24px; padding: .15rem .5rem; border-radius: 4px;
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .75rem; line-height: 1; cursor: pointer;
}
.awho-motion-btn:hover,
.awho-motion-btn:focus-visible { background: var(--awho-gold-500); color: var(--awho-ink-900); border-color: var(--awho-gold-500); }
.awho-motion-btn i { font-size: .9rem; }
/* Paused state -- freeze every CSS marquee animation. */
body.awho-motion-paused .awho-ticker-track,
body.awho-motion-paused .awho-active-strip .awho-strip-track,
body.awho-motion-paused .awho-notice-marquee-track { animation-play-state: paused !important; }

.awho-brand-row { background: #fff; padding: 1rem 0; border-bottom: 1px solid var(--awho-line); }
.awho-brand-logo { display: flex; align-items: center; gap: .85rem; }
.awho-brand-logo img { width: 56px; height: 56px; object-fit: contain; }
.awho-brand-text .awho-brand-en { font-family: var(--awho-font-head); font-weight: 700; font-size: 1.15rem; color: var(--awho-ink-900); line-height: 1.2; }
.awho-brand-text .awho-brand-hi { font-size: .9rem; color: var(--awho-ink-700); font-weight: 500; }
.awho-brand-text .awho-brand-sub { font-size: .75rem; color: var(--awho-ink-500); letter-spacing: .04em; text-transform: uppercase; }
.awho-brand-search .form-control { border-radius: 999px; padding-left: 2.5rem; background: var(--awho-green-50); border-color: var(--awho-line); }
.awho-brand-search { position: relative; }
.awho-brand-search .bi-search { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--awho-ink-500); pointer-events: none; }
.awho-brand-tag { text-align: right; }
.awho-brand-tag .strong { font-family: var(--awho-font-head); font-weight: 700; color: var(--awho-ink-900); }
.awho-brand-tag .sub   { font-size: .8125rem; color: var(--awho-ink-500); }

/* SAHAJM: mobile-only hamburger sitting on the brand row (right of logo).
   Triggers same #awhoOffcanvas drawer as the (hidden) nav toggler on mobile. */
.awho-brand-toggler { background: transparent; border: 0; padding: 6px 8px; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 36px; cursor: pointer; margin-left: auto; }
.awho-brand-toggler span { display: block; width: 100%; height: 3px; background: var(--awho-green-700); border-radius: 1px; }
.awho-brand-toggler:focus { outline: 2px solid var(--awho-gold-500); outline-offset: 2px; }
@media (max-width: 991.98px) {
  /* SAHAJM: at <=991px, page container = 95% of viewport (overrides Bootstrap's 540/720px caps) */
  .container { max-width: 95%; width: 95%; }
  /* SAHAJM: hide the green nav strip on mobile -- hamburger moved to brand row */
  .awho-nav { display: none; }
  /* SAHAJM: on mobile the brand row IS the sticky header (logo + hamburger). Compact height. */
  .awho-brand-row {
    position: sticky; top: 0; z-index: 1020;
    padding: .25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }
  .awho-brand-row .row { --bs-gutter-y: 0; }
  .awho-brand-logo { gap: .5rem; }
  .awho-brand-logo img { width: 32px; height: 32px; }
  .awho-brand-text .awho-brand-en { font-size: .82rem; line-height: 1.15; }
  .awho-brand-text .awho-brand-hi { font-size: .7rem; line-height: 1.15; }
  .awho-brand-text .awho-brand-sub { display: none; }
  .awho-brand-toggler { width: 36px; height: 30px; padding: 4px 6px; gap: 4px; }
  .awho-brand-toggler span { height: 2px; }
  /* SAHAJM: hide search COLUMN wrapper (not just inner div) so hamburger sits flush-right at md range -- earlier the empty col-md-5 wrapper was claiming 42% space */
  .awho-brand-row > .container > .row > .col-md-5 { display: none; }
  .awho-brand-row .awho-brand-search { display: none; }
  .awho-brand-row .awho-brand-tag { display: none !important; }
}

.awho-nav {
  background: #106536;
  position: sticky; top: 0; z-index: 1020;
  box-shadow: var(--awho-shadow-sm);
  padding: 0;
  transition: background-color .25s ease, box-shadow .3s ease;
}
/* SAHAJM: scrolled state -- darkens to footer-green so the page stays in one tonal family */
.awho-nav.awho-nav-scrolled {
  background-color: #09522A;
  box-shadow: 0 6px 20px rgba(1, 38, 9, .25), 0 2px 4px rgba(1, 38, 9, .10);
}
.awho-nav .navbar-nav .nav-link { transition: padding .25s ease, background-color .15s ease; }
.awho-nav.awho-nav-scrolled .navbar-nav .nav-link { padding-top: .85rem; padding-bottom: .85rem; }
.awho-nav > .container { padding-right: 0; }
.awho-nav .navbar-collapse { align-items: stretch; }
.awho-nav .navbar-nav { align-items: stretch; }
.awho-nav .navbar-nav .nav-item { display: flex; align-items: stretch; }
.awho-nav .navbar-nav .nav-link {
  color: #fff !important; font-weight: 500; padding: 1rem 1.1rem;
  font-size: .95rem; display: inline-flex; align-items: center; gap: .35rem;
}
.awho-nav .navbar-nav .nav-link:hover,
.awho-nav .navbar-nav .nav-link.active { background: rgba(255,255,255,.08); }
.awho-nav .dropdown-menu {
  border: 0; border-radius: 0 0 var(--awho-radius) var(--awho-radius);
  box-shadow: var(--awho-shadow); padding: .5rem 0; margin-top: 0;
}
.awho-nav .dropdown-item { padding: .5rem 1.25rem; color: var(--awho-ink-900); }
.awho-nav .dropdown-item:hover { background: var(--awho-green-50); color: var(--awho-green-800); }
/* SAHAJM: Online Registration button -- flush, no border-radius, stretches to nav height,
   sits inline with nav links (matches design's tight integration). */
.awho-nav .awho-cta-register {
  background: var(--awho-gold-500); color: var(--awho-ink-900);
  font-weight: 600; padding: 0 1.5rem; border-radius: 0;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 0; text-decoration: none;
  align-self: stretch; margin-left: auto;
  transition: background .15s;
}
.awho-nav .awho-cta-register:hover { background: var(--awho-gold-600); color: var(--awho-ink-900); }

/* SAHAJM: at mobile the inline collapse never opens because JS retargets the toggler to the
   off-canvas drawer below. Keep CTA visually sensible if JS fails. */
@media (max-width: 991.98px) {
  .awho-nav > .container { padding-right: var(--bs-gutter-x, .75rem); }
  .awho-nav .awho-cta-register { margin: .5rem 0; padding: .75rem 1rem; border-radius: var(--awho-radius-sm); }
}

/* SAHAJM: news ticker */
.awho-ticker {
  background: linear-gradient(to right, #084122 0%, #074E26 100%); border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; overflow: hidden;
}
.awho-ticker-label {
  background: linear-gradient(to right, #083D20 0%, #8E0E0E 100%); color: #fff;
  padding: .4rem 1rem .4rem 1.5rem; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.awho-ticker-track-wrap { overflow: hidden; flex: 1; min-width: 0; }
/* SAHAJM: seamless marquee -- JS clones items so total width = 2x; animate 0% -> -50% loops without gap.
   `awho-ticker-track` is the moving lane; items inside repeat exactly once so the join is invisible. */
.awho-ticker-track {
  display: flex; flex-wrap: nowrap; white-space: nowrap; width: max-content;
  animation: awho-ticker 80s linear infinite;
  will-change: transform;
}
.awho-ticker-track:hover { animation-play-state: paused; }
.awho-ticker-track .awho-ticker-item {
  padding: 0 2.5rem; color: #F3F7F4; font-size: .85rem; font-weight: 500;
  position: relative; flex: 0 0 auto;
}
.awho-ticker-track .awho-ticker-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--awho-gold-500); border-radius: 50%;
}
.awho-ticker-track .awho-ticker-item:first-child::before { display: none; }
/* Clickable ticker items (news with a link/PDF) inherit the strip colour, no default underline. */
.awho-ticker-track a.awho-ticker-item { color: #F3F7F4; text-decoration: none; cursor: pointer; }
.awho-ticker-track a.awho-ticker-item:hover { text-decoration: underline; }
@keyframes awho-ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .awho-ticker-track { animation: none; } }

/* =====================  HERO  ===================== */

.awho-hero {
  position: relative; min-height: 580px;
  background: linear-gradient(135deg, rgba(20,62,42,.78), rgba(31,91,61,.5)), center/cover;
  color: #fff; display: flex; align-items: center;
}
@media (max-width: 991.98px) { .awho-hero { min-height: 500px; } }
@media (max-width: 575.98px) { .awho-hero { min-height: 420px; } }
.awho-hero h1, .awho-hero [data-hero-title] { color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; margin-bottom: 1rem; }
.awho-hero p.lead { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 38rem; }
.awho-hero .awho-hero-meta { display: flex; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; font-size: .95rem; }
.awho-hero .awho-hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.awho-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #D1B480; border: 1px solid rgba(0,0,0,.12);
  color: var(--awho-ink-900); display: inline-flex; align-items: center; justify-content: center;
}
.awho-hero-nav:hover { background: #b9985f; color: var(--awho-ink-900); }
.awho-hero-nav.prev { left: 1rem; } .awho-hero-nav.next { right: 1rem; }

/* SAHAJM: mobile hero -- keep arrows mid-side (slider feel) but smaller; content gets safe-zone padding so text/buttons never sit under arrows. */
@media (max-width: 767.98px) {
  .awho-hero { min-height: auto; padding: 1.6rem 0 1.8rem; }
  /* safe-zone: keep text clear of left/right arrow buttons (36px arrow + .5rem inset + .25rem gap = ~3rem each side) */
  .awho-hero > .container { padding-left: 3rem; padding-right: 3rem; max-width: 100%; width: 100%; }
  .awho-hero h1, .awho-hero [data-hero-title] { font-size: 1.45rem; line-height: 1.25; margin-bottom: .55rem; }
  .awho-hero p.lead { font-size: .92rem; line-height: 1.45; margin-bottom: .85rem; max-width: none; }
  .awho-hero .awho-hero-meta {
    gap: .55rem 1.1rem;
    margin: .85rem 0 1rem;
    font-size: .82rem;
  }
  .awho-hero .awho-hero-meta span i { font-size: .95rem; }
  .awho-hero-nav {
    width: 36px; height: 36px;
    font-size: .9rem;
  }
  .awho-hero-nav.prev { left: .5rem; }
  .awho-hero-nav.next { right: .5rem; }
  .awho-hero .awho-btn { font-size: .85rem; padding: .5rem .75rem; }
  .awho-hero .awho-btn i { font-size: .9rem; }
  /* SAHAJM: kill hero/active-section overlap on mobile -- -50px was clipping the bottom of the Register Now button under the mint Active Projects strip */
  .awho-active-section { margin-top: 0; }
  /* SAHAJM: extra bottom breathing room so buttons clear the next section cleanly */
  .awho-hero { padding-bottom: 5.5rem; }
}

/* SAHAJM: Active Projects -- mint background is FULL-WIDTH (edge-to-edge of viewport),
   title + card list live INSIDE a normal `.container`. Two-element pattern:
   `.awho-active-section` = wrapper that owns the mint bg + the -50px overlap with the hero;
   `.awho-active-strip`  = inner layout (title left, marquee track right). */
.awho-active-section {
  background: #EBF7EE;
  margin-top: -50px; position: relative; z-index: 5;
  padding: 1rem 0;
  box-shadow: 0 6px 20px rgba(20,62,42,.06);
}
.awho-active-strip {
  background: transparent;
  border-radius: 0;
  padding: 0; margin-top: 0;
  box-shadow: none;
  display: flex; align-items: center; overflow: hidden;
}
.awho-active-strip .awho-strip-title {
  flex-shrink: 0;
  padding: 0 1.5rem 0 .25rem;
  margin-right: 1rem;
  border-right: 1px solid rgba(20,62,42,.10);
  display: flex; flex-direction: column;
  line-height: 1.1;
  min-width: 130px;
}
.awho-active-strip .awho-strip-title .ttl-sm {
  font-family: var(--awho-font-body); font-weight: 500;
  font-size: 1rem; color: var(--awho-ink-700);
  letter-spacing: .01em;
}
.awho-active-strip .awho-strip-title .ttl-lg {
  font-family: var(--awho-font-head); font-weight: 700;
  font-size: 1.65rem; color: var(--awho-ink-900);
  line-height: 1.05;
}
.awho-active-strip .awho-strip-track-wrap { flex: 1; overflow: hidden; min-width: 0; }
.awho-active-strip .awho-strip-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  animation: awho-strip-marquee 60s linear infinite;
  will-change: transform;
}
.awho-active-strip .awho-strip-track:hover { animation-play-state: paused; }

/* Individual card chip */
.awho-active-strip .awho-strip-item {
  display: flex; gap: .85rem; align-items: stretch;
  background: #fff; border-radius: var(--awho-radius-sm);
  padding: .75rem .85rem;
  width: 400px; flex: 0 0 auto;
  margin-right: .85rem;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(20,62,42,.06);
  transition: box-shadow .15s, transform .15s;
}
.awho-active-strip .awho-strip-item:hover {
  box-shadow: 0 4px 12px rgba(20,62,42,.12);
  transform: translateY(-1px);
}
.awho-active-strip .awho-strip-item img {
  width: 70px; height: 70px; object-fit: cover;
  border-radius: var(--awho-radius-sm); flex-shrink: 0;
}
.awho-active-strip .awho-strip-item .info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.awho-active-strip .awho-strip-item .top-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem;
}
.awho-active-strip .awho-strip-item .name {
  font-family: var(--awho-font-head); font-weight: 700;
  color: var(--awho-ink-900); font-size: .95rem; line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.awho-active-strip .awho-strip-item .loc  {
  color: var(--awho-ink-500); font-size: .75rem; margin-top: .1rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.awho-active-strip .awho-strip-item .view {
  font-size: .75rem; color: var(--awho-green-700);
  font-weight: 600; white-space: nowrap; flex-shrink: 0;
}
.awho-active-strip .awho-strip-item .stats { display: flex; gap: 1.5rem; margin-top: .35rem; }
.awho-active-strip .awho-strip-item .stat { display: flex; flex-direction: column; }
.awho-active-strip .awho-strip-item .stat .val {
  font-weight: 700; color: var(--awho-ink-900);
  font-size: .82rem; line-height: 1.15;
}
.awho-active-strip .awho-strip-item .stat .lbl {
  font-size: .68rem; color: var(--awho-ink-500);
  text-transform: capitalize;
}

@keyframes awho-strip-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .awho-active-strip .awho-strip-track { animation: none; } }

@media (max-width: 767.98px) {
  .awho-active-section { padding: 1rem 0; }
  .awho-active-strip { flex-direction: column; align-items: stretch; }
  .awho-active-strip .awho-strip-title {
    border-right: 0; border-bottom: 1px solid rgba(20,62,42,.10);
    margin-right: 0; margin-bottom: .75rem;
    padding: 0 0 .75rem 0; flex-direction: row; gap: .5rem; align-items: baseline;
    min-width: 0;
  }
  .awho-active-strip .awho-strip-title .ttl-lg { font-size: 1.35rem; }
  .awho-active-strip .awho-strip-item { width: 320px; }
}

/* =====================  BUTTONS  ===================== */

.awho-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.25rem; border-radius: var(--awho-radius-sm); font-weight: 600; font-size: .9rem; border: 0; transition: all .15s; text-decoration: none; }
/* SAHAJM: darkened from #7FB13D so white text clears WCAG 2.2 AA 1.4.3 (now ~5:1, was 2.5:1) */
.awho-btn-primary   { background: #4F7A28; color: #fff; }
.awho-btn-primary:hover { background: #42671F; color: #fff; text-decoration: none; }
.awho-btn-outline   { background: #4E672D; border: 1.5px solid #4E672D; color: #fff; }
.awho-btn-outline:hover { background: #3F5424; border-color: #3F5424; color: #fff; }
/* Brochure button -- solid brand-brown (matches html-mockups demand-survey Download button) */
.awho-btn-brochure       { background: #523809; color: #fff; border: 1px solid #523809; }
.awho-btn-brochure:hover { background: #6b4a0c; color: #fff; border-color: #6b4a0c; }
/* SAHAJM: mint variant -- soft pastel green for low-emphasis CTAs (e.g. About -> Read More) */
.awho-btn-outline.awho-btn-mint        { background: #f3eada; border-color: #d5c8b0; color: #523809; }
.awho-btn-outline.awho-btn-mint:hover  { background: #f3eada; border-color: #d5c8b0; color: #523809; }
.awho-btn-light     { background: rgba(255,255,255,.92); color: var(--awho-ink-900); }
.awho-btn-light:hover { background: #fff; }
.awho-btn-gold      { background: #D1B480; color: var(--awho-ink-900); }
.awho-btn-gold:hover { background: var(--awho-gold-600); color: var(--awho-ink-900); }
.awho-btn-dark      { background: linear-gradient(to right, #172406 0%, #3B5618 100%); color: #fff; }
.awho-btn-dark:hover { background: linear-gradient(to right, #0E1A03 0%, #2E4412 100%); color: #fff; }

/* =====================  CARDS  ===================== */

.awho-card {
  background: #fff; border: 1px solid var(--awho-line);
  border-radius: var(--awho-radius); overflow: hidden; height: 100%;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.awho-card:hover { transform: translateY(-2px); box-shadow: var(--awho-shadow); }
.awho-card-img { aspect-ratio: 16/10; background: var(--awho-green-50); overflow: hidden; position: relative; }
.awho-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* SAHAJM: skeleton shimmer loader -- masks the lazy image area until the visible image paints */
.skeleton { position: relative; overflow: hidden; background: var(--awho-green-50); }
.skeleton::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0, rgba(255,255,255,.55) 50%, transparent 100%);
  animation: awho-skeleton 1.3s ease-in-out infinite;
}
@keyframes awho-skeleton { 100% { transform: translateX(100%); } }
.awho-card-img .skeleton-img { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.awho-card-img.is-loaded .skeleton-img { opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility 0s linear .4s; }
.awho-card-img.is-loaded .skeleton::after { animation: none; }
@media (prefers-reduced-motion: reduce) { .skeleton::after { animation: none; } }

/* SAHAJM: per-card image slider -- auto-rotating fade carousel inside the project card's image area.
   Arrows visible on card hover, dots always visible. JS handles rotation + click-to-jump. */
.awho-img-slider { position: relative; width: 100%; height: 100%; }
.awho-img-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s ease;
}
.awho-img-slider img.active { opacity: 1; }
.awho-img-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: #D1B480; color: var(--awho-ink-900); border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2; opacity: 0; transition: opacity .15s, background .15s;
  cursor: pointer; font-size: .9rem;
}
.awho-card:hover .awho-img-nav { opacity: 1; }
.awho-img-nav:hover { background: #b9985f; }
.awho-img-nav.prev { left: .5rem; }
.awho-img-nav.next { right: .5rem; }
.awho-img-dots {
  position: absolute; bottom: .65rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: .35rem;
  z-index: 2;
}
.awho-img-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer; transition: background .2s, width .25s;
  box-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.awho-img-dots span.active { background: #fff; width: 20px; border-radius: 4px; }
/* Mobile -- hide arrows, keep dots (touch users swipe via dots) */
@media (max-width: 575.98px) { .awho-img-nav { display: none; } }
.awho-card-body { padding: 1rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.awho-card-title { font-family: var(--awho-font-head); font-weight: 700; color: var(--awho-ink-900); font-size: 1.05rem; margin: 0 0 .15rem; }
.awho-card-loc { color: var(--awho-ink-500); font-size: .8rem; margin-bottom: .65rem; }
.awho-card-desc { color: var(--awho-ink-700); font-size: .85rem; flex: 1; margin-bottom: .85rem; }
.awho-card-actions { display: flex; gap: .5rem; }
.awho-card-actions .awho-btn { flex: 1; justify-content: center; padding: .5rem .75rem; font-size: .8rem; }
/* Push the card's bottom action (Download btn / actions row) to the card base so buttons line up
   across unequal-height cards -- matches html-mockups .awho-card-body last-child rule (desktop). */
.awho-card-body > .awho-btn:last-child,
.awho-card-body > .awho-card-actions:last-child { margin-top: auto; }
.awho-card-badge {
  position: absolute; top: .75rem; right: .75rem; padding: .25rem .65rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--awho-radius-sm); color: #fff;
}
.awho-badge-ongoing   { background: #360952; color: #fff; }
.awho-badge-upcoming  { background: var(--awho-info); }
.awho-badge-delivered { background: var(--awho-success); }

/* Project-card action buttons (home slider + /projects listing) -- scoped so the
   site-wide primary/outline buttons are unaffected. View Details = green, Brochure = brown. */
.awho-card .awho-btn-primary            { background: #09522A; border-color: #09522A; color: #fff; }
.awho-card .awho-btn-primary:hover      { background: #073e20; border-color: #073e20; color: #fff; }
.awho-card .awho-btn-brochure           { background: #523809; border-color: #523809; color: #fff; }
.awho-card .awho-btn-brochure:hover     { background: #6b4a0c; border-color: #6b4a0c; color: #fff; }
.awho-card-actions .awho-btn-outline       { background: #6b4a0c; border-color: #6b4a0c; color: #fff; }
.awho-card-actions .awho-btn-outline:hover { background: #553a09; border-color: #553a09; color: #fff; }
.awho-badge-photocount{ background: rgba(0,0,0,.65); }

/* SAHAJM: mobile project card -- compact horizontal layout (image left + content right) with View Details button spanning full card width below. Card height auto-grows to fit body; absolute-positioned button sits at bottom-edge inside overflow:hidden clip. */
@media (max-width: 767.98px) {
  .awho-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 44px;
  }
  .awho-card-img {
    width: 38%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }
  .awho-card-body {
    width: 62%;
    padding: .7rem .85rem .55rem;
  }
  .awho-card-title { font-size: 1rem; margin-bottom: .1rem; }
  .awho-card-loc { font-size: .78rem; margin-bottom: .4rem; }
  .awho-card-desc { font-size: .82rem; line-height: 1.4; margin-bottom: .45rem; }
  .awho-card-body .text-muted.small { font-size: .72rem !important; }
  .awho-card-body > .awho-btn {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    border-radius: 0;
    padding: .65rem;
    font-size: .9rem;
  }
  .awho-card-badge {
    top: .4rem; right: .4rem;
    padding: .15rem .45rem;
    font-size: .62rem;
  }
  .awho-card-img .awho-img-dots { bottom: .35rem; }
}

/* SAHAJM: gallery card -- image tile with badge + bottom gradient overlay.
   Smooth hover: card lifts + blue-ring + shadow grows + inner img zooms;
   bottom overlay subtly intensifies. Used on media-photo-gallery + similar.
   NOTE: Bootstrap's `.ratio > *` rule force-sets top/left/width/height: 100%
   on every direct child of .ratio. Overlay + badge need explicit overrides
   (top:auto, height:auto, etc.) to stay as a bottom strip / corner pill. */
.awho-gallery-card {
  position: relative; display: block;
  border-radius: var(--awho-radius); overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 8px rgba(1, 38, 9, .08);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              box-shadow .35s ease,
              outline-color .25s ease;
  outline: 0 solid transparent;
  isolation: isolate;
}
.awho-gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}
.awho-gallery-card .awho-gallery-card-overlay {
  position: absolute;
  top: auto; left: 0; right: 0; bottom: 0;
  width: auto; height: auto;
  padding: 2.5rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.88) 100%);
  color: #fff; z-index: 1;
  transition: background .35s ease, padding .35s ease;
}
.awho-gallery-card .awho-gallery-card-overlay strong { display: block; font-size: .95rem; font-weight: 600; line-height: 1.25; margin: 0 0 .15rem; color: #fff; }
.awho-gallery-card .awho-gallery-card-overlay small,
.awho-gallery-card .awho-gallery-card-overlay .loc { font-size: .8rem; opacity: .9; color: #fff; }
.awho-gallery-card .awho-card-badge {
  position: absolute;
  top: .75rem; right: .75rem; bottom: auto; left: auto;
  width: auto; height: auto;
  z-index: 2; transition: transform .35s ease;
}

.awho-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(30, 144, 255, .28), 0 0 0 3px #1E90FF;
}
.awho-gallery-card:hover img { transform: scale(1.08); }
.awho-gallery-card:hover .awho-gallery-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.9) 100%);
}
.awho-gallery-card:hover .awho-card-badge { transform: translateY(-2px); }
.awho-gallery-card:focus-visible {
  outline: 3px solid #1E90FF; outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .awho-gallery-card, .awho-gallery-card img, .awho-gallery-card .awho-gallery-card-overlay, .awho-gallery-card .awho-card-badge { transition: none; }
  .awho-gallery-card:hover { transform: none; }
  .awho-gallery-card:hover img { transform: none; }
}

/* SAHAJM: WCAG 2.4.7 -- keyboard focus ring for the project-detail photo-gallery thumbnails
   (awho.js makes them role=button + tabindex=0). The ratio wrapper clips a normal outline, so
   draw it inset. No effect on mouse use. */
[data-awho-photo-gallery] img:focus-visible {
  outline: 3px solid var(--awho-gold-500, #d4af37);
  outline-offset: -3px;
  border-radius: 2px;
}

/* SAHAJM: video-card play button -- centered circular overlay; pulses on hover.
   Explicit edge resets to override Bootstrap's `.ratio > *` (see overlay note). */
.awho-gallery-card .awho-play-btn {
  position: absolute;
  top: 50%; left: 50%; right: auto; bottom: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .58);
  color: #fff; font-size: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  z-index: 2; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.awho-gallery-card .awho-play-btn i { line-height: 1; margin-left: 3px; }
.awho-gallery-card:hover .awho-play-btn {
  background: rgba(46, 145, 90, .95);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 22px rgba(46, 145, 90, .55);
}

/* SAHAJM: video-popup modal -- full-bleed iframe, no chrome */
.awho-video-modal .modal-content { background: #000; border: 0; border-radius: var(--awho-radius); overflow: hidden; }
.awho-video-modal .modal-body { padding: 0; }
.awho-video-modal .ratio iframe { border: 0; width: 100%; height: 100%; }
.awho-video-modal .awho-video-close {
  position: absolute; top: -42px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.awho-video-modal .awho-video-close:hover { background: #fff; }
.awho-video-modal .awho-video-title {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  color: #fff; font-weight: 600; font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.6); pointer-events: none; z-index: 4;
}

/* =====================  SECTIONS  ===================== */

/* SAHAJM: long unbroken text (e.g. a pasted URL / gibberish "erwrrr…" string) must wrap instead of
   overflowing horizontally and breaking the page layout. overflow-wrap/word-break are inherited, so
   setting them on the block containers cascades to every heading/paragraph/cell/list inside. */
.awho-page-hero, .awho-section, .awho-section-tight { overflow-wrap: break-word; word-break: break-word; }

.awho-section { padding: 4rem 0; }
.awho-section.awho-pt-tight { padding-top: 1rem; }
/* SAHAJM: tighter section spacing on mobile for inner pages; home keeps its full vertical rhythm (per FC) */
@media (max-width: 767.98px) {
  body:not(.awho-page-home) .awho-section { padding: 1rem 0; }
}
.awho-section-tight { padding: 2.5rem 0; }
/* SAHAJM: atomic content blocks (Heading / Heading+subtitle / Description / Box) stack tightly — small vertical gap, not the full 4rem section rhythm */
.awho-section.awho-section-atom, .awho-section-tight.awho-section-atom { padding-top: .6rem; padding-bottom: .6rem; }
.awho-section-atom .awho-section-title { margin-bottom: 0; }
/* SAHAJM: per-section custom top/bottom spacing (page-builder Options > Top / Bottom spacing).
   Preset levels none/small/large; "normal" = no class = default 4rem section rhythm. !important so
   they win over the base .awho-section padding, the mobile inner-page rule, and Cta's inline pad. */
.awho-sp-t-0  { padding-top: 0 !important; }
.awho-sp-t-sm { padding-top: 1.5rem !important; }
.awho-sp-t-lg { padding-top: 6.5rem !important; }
.awho-sp-b-0  { padding-bottom: 0 !important; }
.awho-sp-b-sm { padding-bottom: 1.5rem !important; }
.awho-sp-b-lg { padding-bottom: 6.5rem !important; }
@media (max-width: 767.98px) {
  .awho-sp-t-lg { padding-top: 3rem !important; }
  .awho-sp-b-lg { padding-bottom: 3rem !important; }
}
/* SAHAJM: green tight sections (Project Gallery, Eligibility CTA) need taller vertical padding
   so the rotated `::after` slash has breathing room. Scoped to the intersection so non-green
   tight sections (Video Gallery etc.) stay compact. Eligibility CTA flows into the footer, so
   bottom padding is small (no slash to clear there). */
.awho-section-tight.awho-section-green { padding: 10.5rem 0; }
.awho-section-tight.awho-section-green.text-center { padding: 10.5rem 0 54px; }
@media (max-width: 767.98px) {
  .awho-section-tight.awho-section-green { padding: 5rem 0; }
  .awho-section-tight.awho-section-green.text-center { padding: 5rem 0 2rem; }
}
.awho-section-alt   { background: transparent; }
.awho-section-grey  { background: #EEF2F5; }

/* SAHAJM: horizontal swipe/drag slider on mobile, normal grid on >=md.
   Mouse drag-to-scroll is wired by initMobSlider() in awho.js so trackpad/mouse work too. */
.awho-mob-slider .row { cursor: grab; }
.awho-mob-slider .row.is-grabbing { cursor: grabbing; }
.awho-mob-slider .row.is-grabbing a, .awho-mob-slider .row.is-grabbing * { user-select: none; }
@media (max-width: 767.98px) {
  .awho-mob-slider .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem;
    scrollbar-width: none;
  }
  .awho-mob-slider .row::-webkit-scrollbar { display: none; }
  .awho-mob-slider .row > [class*="col-"] {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }
}

/* SAHAJM: green section -- layered decorative background (radial spotlight + flowing wave SVG).
   Used by the "Project Gallery" and "Are You Eligible" CTA sections -- defence/govt feel without
   loud visuals. Pseudo-elements provide the pattern; content elevated with z-index so the
   pattern stays in the background. */
.awho-section-green {
  background: linear-gradient(135deg, #232323, #141414);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.awho-section-green::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    /* SAHAJM: subtle WHITE grid (vertical + horizontal 1px lines, 70px squares) */
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 70px 70px,
    /* Depth: top spotlight + bottom-corner gold glows */
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(255,255,255,.10), transparent 65%),
    radial-gradient(ellipse 60% 55% at 0% 100%, rgba(244,178,63,.10), transparent 55%),
    radial-gradient(ellipse 60% 55% at 100% 100%, rgba(244,178,63,.07), transparent 55%);
}
/* SAHAJM: bottom decorative band -- slightly rotated WHITE slash at the section's lower edge
   creates a tilted "torn paper" transition into the next light section. */
.awho-section-green::after {
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  background-color: #fff;
  height: 110px;
  width: 105%;
  position: absolute;
  bottom: -50px;
  left: -5px;
  content: "";
  z-index: 0;
  pointer-events: none;
}

/* SAHAJM: Eligibility CTA flows into the dark footer, so its slash goes at the TOP edge
   (incoming transition from the white Video Gallery above) instead of the bottom. */
.awho-section-green.text-center::after {
  bottom: auto;
  top: -50px;
}
.awho-section-green > .container { position: relative; z-index: 1; }
.awho-section-green h1, .awho-section-green h2, .awho-section-green h3 { color: #fff; }

/* SAHAJM: optional decorative wave at the bottom of a green section (creates the soft
   transition into the next white-ish section). Add `<svg class="awho-section-wave">...</svg>`
   as the last child of the section. Skip on sections that flow into the dark footer. */
.awho-section-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 55px;
  display: block; pointer-events: none; z-index: 1;
}
@media (max-width: 575.98px) {
  .awho-section-wave { height: 32px; }
}

.awho-section-title { text-align: center; margin-bottom: 2.5rem; }
.awho-section-title h2 { margin: 0 0 .5rem; }
.awho-section-title p  { color: var(--awho-ink-500); max-width: 42rem; margin: 0 auto; }
/* SAHAJM: optional rich-text description between a Cards-grid heading and its cards (page-builder Cards block) */
.awho-cards-desc-row { margin-top: -1.25rem; margin-bottom: 1.5rem; }
.awho-cards-desc p:last-child { margin-bottom: 0; }
/* editor-only chrome: a visible caption + bordered editable box so the field is discoverable
   (.pb-block / .pb-desc-cap exist only inside the admin page builder, never on the public site) */
.pb-block .pb-desc-cap { font-size: 12px; font-weight: 600; color: #6b7280; margin: 0 0 5px; }
.pb-block .awho-cards-desc { min-height: 2.2rem; border: 1px dashed #c2c8d2; border-radius: 7px; padding: 7px 11px; transition: border-color .15s; }
.pb-block .awho-cards-desc:hover { border-color: #9aa3b2; }
.pb-block .awho-cards-desc:focus { outline: none; border-style: solid; border-color: var(--awho-green-700, #143E2A); }
.pb-block .awho-cards-desc:empty::before { content: attr(data-pb-ph); color: #aab1bd; }
/* per-card rich text: tidy paragraph spacing; editor shows a faint hint + box while empty */
.awho-feature-card .awho-richtext p:last-child { margin-bottom: 0; }
.pb-block .awho-feature-card .awho-richtext { min-height: 1.4rem; border-radius: 6px; }
.pb-block .awho-feature-card .awho-richtext:hover { outline: 1px dashed #d4d9e1; }
.pb-block .awho-feature-card .awho-richtext:empty::before { content: attr(data-pb-ph); color: #aab1bd; }
.awho-section-title.light h2,
.awho-section-title.light p { color: #fff; }
.awho-section-title.light p { color: rgba(255,255,255,.8); }
.awho-section-title.caps h2 { text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.6rem, 2.4vw, 2.3rem); }

/* SAHAJM: gallery card -- photo on top, translucent glass meta below (used on home Project Gallery
   over a green section, and reusable on any media listing). Whole card is a clickable <a>. */
.awho-gallery-card {
  display: block; text-decoration: none;
  transition: transform .2s ease;
  height: 100%;
}
.awho-gallery-card:hover { transform: translateY(-3px); text-decoration: none; }
.awho-gallery-card .photo {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.awho-gallery-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.awho-gallery-card .meta {
  margin-top: .65rem;
  background: #523809;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}
.awho-gallery-card .meta .title {
  font-family: var(--awho-font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.awho-gallery-card .meta .loc {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  margin-top: .15rem;
}

/* SAHAJM: notice board with vertical scrolling marquee inside */
.awho-notice-board { background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.awho-notice-board-head { background: #060606; color: #fff; padding: .85rem 1rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.awho-notice-item { display: flex; gap: .75rem; align-items: center; padding: .85rem 1rem; border-bottom: 1px solid var(--awho-line); font-size: .85rem; }
.awho-notice-item:last-child { border-bottom: 0; }
.awho-notice-item .awho-notice-text { flex: 1; color: var(--awho-ink-900); }
.awho-notice-item .awho-tag { background: #360952; color: #fff; font-size: .65rem; padding: .15rem .45rem; border-radius: 3px; font-weight: 700; letter-spacing: .04em; flex-shrink: 0; }
.awho-notice-item .awho-pill {
  background: #fbf5e8; color: #523809;
  font-size: .7rem; padding: .25rem .65rem; border-radius: 999px; font-weight: 600; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: .28rem; text-decoration: none;
}
.awho-notice-item .awho-pill:hover,
.awho-notice-item .awho-pill:focus-visible { text-decoration: underline; }
/* Download variant -- notices that carry an attached file instead of a link */
.awho-notice-item .awho-pill-dl { background: #e6f0ea; color: #143E2A; }
/* SAHAJM: Points-of-Contact variant -- stacked location / name / phone (same as mockup) */
.awho-notice-item.awho-notice-contact { align-items: flex-start; }
.awho-notice-contact .awho-notice-text { display: flex; flex-direction: column; gap: .18rem; line-height: 1.3; }
.awho-notice-contact .awho-notice-loc { font-weight: 700; color: var(--awho-ink-900); letter-spacing: .02em; }
.awho-notice-contact .awho-notice-name { color: var(--awho-ink-700); font-size: .8rem; }
.awho-notice-contact .awho-notice-phones { font-size: .8rem; color: var(--awho-ink-700); }
.awho-notice-contact .awho-notice-phone { color: #143E2A; font-weight: 600; text-decoration: none; }
.awho-notice-contact .awho-notice-phone:hover,
.awho-notice-contact .awho-notice-phone:focus-visible { text-decoration: underline; }
/* Vertical marquee viewport -- JS clones items so scroll loops seamlessly */
.awho-notice-marquee {
  position: relative; overflow: hidden; flex: 1 1 0; min-height: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
}
.awho-notice-marquee::before,
.awho-notice-marquee::after {
  content: ''; position: absolute; left: 0; right: 0; height: 28px; z-index: 2; pointer-events: none;
}
.awho-notice-marquee::before { top: 0;    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0)); }
.awho-notice-marquee::after  { bottom: 0; background: linear-gradient(to top,    #fff, rgba(255,255,255,0)); }
.awho-notice-marquee-track {
  display: flex; flex-direction: column;
  animation: awho-notice-vmarquee 35s linear infinite;
  will-change: transform;
}
.awho-notice-marquee-track:hover { animation-play-state: paused; }
@keyframes awho-notice-vmarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -50%, 0); }
}
@media (prefers-reduced-motion: reduce) { .awho-notice-marquee-track { animation: none; } }
/* SAHAJM: mobile -- columns stack so the board can't borrow the left column's height;
   give it auto height + a fixed marquee viewport so the notice list actually shows. */
@media (max-width: 991.98px) {
  .awho-notice-board { height: auto; }
  .awho-notice-marquee { flex: none; height: 320px; }
}

/* SAHAJM: card slider (Our Projects, Project Gallery, etc.) -- CSS scroll-snap + JS arrow buttons.
   Mobile touch-swipe works natively. */
.awho-slider { position: relative; padding: 0 .25rem; }
.awho-slider-track {
  display: flex; gap: 1.5rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none;
  padding: .5rem .5rem 1.25rem; margin: 0 -.5rem;
}
.awho-slider-track::-webkit-scrollbar { display: none; }
.awho-slider-item {
  flex: 0 0 calc(33.333% - 1rem); scroll-snap-align: start; min-width: 0;
}
@media (max-width: 991.98px) { .awho-slider-item { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 575.98px) { .awho-slider-item { flex: 0 0 88%; } }
.awho-slider-nav {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #D1B480; color: var(--awho-ink-900);
  border: 1px solid var(--awho-line); box-shadow: var(--awho-shadow);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3; transition: background .15s, color .15s; font-size: 1.15rem;
}
.awho-slider-nav:hover { background: #b9985f; color: var(--awho-ink-900); border-color: #b9985f; }
.awho-slider-nav:disabled { opacity: .35; cursor: not-allowed; background: #fff; color: var(--awho-ink-500); }
.awho-slider-nav.prev { left: -1.25rem; }
.awho-slider-nav.next { right: -1.25rem; }
@media (max-width: 575.98px) {
  .awho-slider-nav { width: 38px; height: 38px; font-size: 1rem; }
  .awho-slider-nav.prev { left: -.25rem; }
  .awho-slider-nav.next { right: -.25rem; }
}

/* SAHAJM: How AWHO Works -- desktop = plain 2x2 grid (all 4 tiles visible at once,
   like the original design). Below lg the SAME container switches to a horizontal
   scroll-snap slider with visible arrow buttons + native touch-swipe. */
.awho-how-wrap { position: relative; }
.awho-how-content {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.awho-how-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #D1B480; color: var(--awho-ink-900);
  border: 1px solid var(--awho-line); box-shadow: var(--awho-shadow);
  display: none; align-items: center; justify-content: center;
  z-index: 3; font-size: 1.05rem;
  transition: background .15s, color .15s;
}
.awho-how-nav:hover { background: #b9985f; color: var(--awho-ink-900); border-color: #b9985f; }
.awho-how-nav:disabled { opacity: .35; cursor: not-allowed; background: #fff; color: var(--awho-ink-500); }
.awho-how-nav.prev { left: -.5rem; }
.awho-how-nav.next { right: -.5rem; }

@media (max-width: 991.98px) {
  .awho-how-content {
    display: flex; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .5rem 0 1rem; margin: 0 -1rem;
    padding-left: 1rem; padding-right: 1rem;
  }
  .awho-how-content::-webkit-scrollbar { display: none; }
  .awho-how-content > * { flex: 0 0 calc(100% - 2rem); scroll-snap-align: start; min-width: 0; }
  .awho-how-nav { display: inline-flex; }
}
@media (max-width: 575.98px) {
  .awho-how-content > * { flex: 0 0 calc(100% - 3rem); }
  .awho-how-nav { width: 38px; height: 38px; font-size: .95rem; }
}

/* SAHAJM: How AWHO Works tile -- vertical centered stack (icon + title + desc),
   bigger padding, rounded 18px corners, hover lift. SVG icon (no circle frame).
   Checkerboard colours + brick-stagger offset applied below for desktop. */
.awho-tile {
  background: #106536; color: #fff;
  padding: 2.5rem 1.85rem;
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 1.1rem;
  align-items: center; text-align: center;
  min-height: 280px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 14px rgba(1,38,9,.10);
}
.awho-tile:hover { transform: translateY(-4px); color: #fff; text-decoration: none; box-shadow: 0 10px 24px rgba(1,38,9,.18); }
.awho-tile-icon {
  width: 72px; height: 72px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.awho-tile-icon img { width: 100%; height: 100%; object-fit: contain; }
.awho-tile-title { font-family: var(--awho-font-head); font-weight: 700; font-size: 1.45rem; color: #fff; margin: 0 0 .35rem; line-height: 1.2; }
.awho-tile-desc  { color: #fff; font-size: .9rem; line-height: 1.55; max-width: 320px; margin: 0 auto; }

/* Checkerboard: tile 1 + 4 = dark green; tile 2 + 3 = lighter green. Pattern survives
   the desktop 2x2 grid AND the mobile slider (same DOM order, same nth-child positions). */
.awho-how-content .awho-tile:nth-child(1),
.awho-how-content .awho-tile:nth-child(4) { background: #106536; }
.awho-how-content .awho-tile:nth-child(2),
.awho-how-content .awho-tile:nth-child(3) { background: #1F7A45; } /* SAHAJM: darkened from #2E915A so white tile text clears WCAG AA */


/* SAHAJM: stat tile -- illustrated icon + number + label. Designed to sit in a 2x2 grid
   alongside the about-section illustration. Icons are standalone PNG illustrations, no
   circle frame around them (matches the design). */
.awho-stat {
  display: flex; align-items: center; gap: .65rem;
  padding: .4rem .6rem;
  background: var(--awho-mint-50, #f4f8f4);
  border: 1px solid var(--awho-line, #e5ece5);
  border-radius: 10px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.awho-stat:hover { box-shadow: 0 6px 16px rgba(30,60,30,.07); transform: translateY(-1px); }
.awho-stat-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: transparent; border: 0;
}
.awho-stat-icon img { width: 100%; height: 100%; object-fit: contain; }
.awho-stat-num { font-family: var(--awho-font-head); font-size: 1.5rem; font-weight: 700; color: var(--awho-ink-900); line-height: 1.02; white-space: nowrap; }
.awho-stat-pre { display: block; font-family: var(--awho-font-base, inherit); font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: var(--awho-green-700, #2f6b34); line-height: 1; margin-bottom: 2px; text-transform: uppercase; }
.awho-stat-lbl { color: var(--awho-ink-700); font-size: .9rem; line-height: 1.2; margin-top: 1px; }

/* SAHAJM: About-section house+family illustration -- bottom-aligned, fills col height.
   On desktop the illust container hugs the section's bottom edge via negative margin
   that cancels the parent .awho-section padding-bottom (4rem). */
.awho-about-illust {
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  height: 280px;
}
.awho-about-illust img { width: 100%; max-width: 100%; height: auto; display: block; }
.awho-about-illust svg { max-width: 100%; height: auto; }
@media (min-width: 768px) {
  .awho-about-illust { margin-bottom: -4rem; }
  .awho-about-illust img { transform: scale(1.18); transform-origin: bottom center; }
}
@media (max-width: 767.98px) {
  .awho-about-illust { height: auto; }
}

/* SAHAJM: feature card (about page) */
.awho-feature-card {
  background: #fff; border: 1px solid var(--awho-line);
  border-radius: var(--awho-radius); padding: 1.5rem;
}
.awho-feature-card h3 { color: var(--awho-green-800); font-size: 1.1rem; margin: 0 0 .65rem; }
.awho-feature-card ul { padding-left: 1.1rem; margin: 0; color: var(--awho-ink-700); font-size: .9rem; }
.awho-feature-card ul li { margin-bottom: .35rem; }

/* SAHAJM: mandate row -- thick green left border per FC reference */
.awho-mandate-row { background: #fff; border: 1px solid var(--awho-line); border-left: 4px solid #106536; border-radius: var(--awho-radius); padding: 1.15rem 1.25rem; margin-bottom: .85rem; }
.awho-mandate-row h3 { color: var(--awho-ink-900); margin: 0 0 .35rem; font-size: 1rem; font-weight: 700; font-family: var(--awho-font-head); }
.awho-mandate-row p  { margin: 0 0 .5rem; color: var(--awho-ink-700); font-size: .9rem; }
.awho-mandate-row p:last-child { margin-bottom: 0; }
.awho-mandate-row ul { margin: .25rem 0 0; padding-left: 1.15rem; color: var(--awho-ink-700); font-size: .88rem; }
.awho-mandate-row ul li { margin-bottom: .2rem; }

/* SAHAJM: table */
.awho-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--awho-radius); overflow: hidden; box-shadow: var(--awho-shadow-sm); }
.awho-table thead { background: #D1B480; color: #000; }
.awho-table thead th { padding: .85rem 1rem; font-weight: 600; text-align: left; font-size: .9rem; }
.awho-table tbody td { padding: .85rem 1rem; border-bottom: 1px solid var(--awho-line); color: var(--awho-ink-900); font-size: .9rem; }
.awho-table tbody tr:nth-child(even) { background: var(--awho-green-50); }
.awho-table tbody tr:last-child td { border-bottom: 0; }

/* SAHAJM: page-builder Table block (renders .awho-table.align-top) -- any link an admin
   adds inside a cell (via the builder Link tool) renders as the green "Click Here" pill
   button, matching the RWA-dossiers mockup. Scoped to .align-top so it does NOT touch the
   Downloads-embed table (plain .awho-table). */
.awho-table.align-top tbody td a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: 5px 12px; font-size: .85rem; font-weight: 600;
  color: #fff; background: #09522A; border-radius: 6px;
  text-decoration: none; white-space: nowrap; transition: background .15s;
}
.awho-table.align-top tbody td a:hover { background: #0b3d24; color: #fff; text-decoration: none; }

/* SAHAJM: HQ Contact directory table -- it needs align-top for cell alignment but its
   email/phone cells are REAL links, not the green "Click Here" pill above. Reset those
   links back to normal inline site links (green-700, no pill), matching the plain links
   elsewhere on the page (e.g. the Exchange Nos. line). */
.awho-table.align-top.awho-contact-directory tbody td a {
  display: inline; align-items: initial; gap: 0;
  padding: 0; font-size: inherit; font-weight: inherit;
  color: var(--awho-green-700); background: transparent; border-radius: 0;
  text-decoration: none; white-space: normal; transition: none;
}
.awho-table.align-top.awho-contact-directory tbody td a:hover {
  background: transparent; color: var(--awho-green-800); text-decoration: underline;
}

/* SAHAJM: Allottee Dossiers table -- same-to-same as html-mockups/allottee-dossiers-rwa.html.
   Rendered by the EmbedRwaDossiers managed block (PageRenderer.RenderRwaDossiersAsync). */
.awho-dossier-wrap { overflow-x: auto; }
table.awho-dossier { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
table.awho-dossier th, table.awho-dossier td { border: 1px solid #9ca3af; padding: 8px 12px; vertical-align: top; }
table.awho-dossier thead th { background: #f3f6f4; color: #0b3d24; text-align: center; font-weight: 700; text-decoration: underline; }
table.awho-dossier td.ser, table.awho-dossier td.date, table.awho-dossier td.act { text-align: center; white-space: nowrap; }
.awho-dossier-btn { display: inline-flex; align-items: center; gap: .4rem; padding: 5px 12px; font-size: .85rem; font-weight: 600; color: #fff; background: #09522A; border-radius: 6px; text-decoration: none; transition: background .15s; }
.awho-dossier-btn:hover { background: #0b3d24; color: #fff; }

/* phone: stack each row into a card (no horizontal scroll) */
@media (max-width: 600px) {
  .awho-dossier-wrap { overflow-x: visible; }
  table.awho-dossier { min-width: 0; border: 0; font-size: .9rem; }
  table.awho-dossier thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
  table.awho-dossier tbody tr { display: block; border: 1px solid #9ca3af; border-radius: 10px; margin-bottom: 14px; padding: 2px 12px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
  table.awho-dossier tbody td { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; border: 0; border-bottom: 1px dashed #e5e7eb; padding: 9px 0; text-align: right; white-space: normal; }
  table.awho-dossier tbody td:last-child { border-bottom: 0; }
  table.awho-dossier tbody td::before { content: attr(data-label); font-weight: 700; color: #0b3d24; text-align: left; flex: 0 0 42%; }
  table.awho-dossier tbody td:nth-of-type(1)::before { content: "Ser No"; }
  table.awho-dossier tbody td:nth-of-type(2)::before { content: "Name of RWA"; }
  table.awho-dossier tbody td:nth-of-type(3)::before { content: "Date of Collection / Despatch"; }
  table.awho-dossier tbody td:nth-of-type(4)::before { content: "Action"; }
}

/* SAHAJM: .awho-table-stack -- on mobile each row becomes a card (no horizontal scroll).
   Column labels injected via :nth-child so no per-cell data-label markup is needed. */
@media (max-width: 767.98px) {
  [data-awho-dl="table-wrap"] { overflow: visible; }
  .awho-table-stack { box-shadow: none; background: transparent; border-radius: 0; overflow: visible; }
  .awho-table-stack thead { display: none; }
  .awho-table-stack tbody,
  .awho-table-stack tbody tr,
  .awho-table-stack tbody td { display: block; width: 100%; }
  .awho-table-stack tbody tr,
  .awho-table-stack tbody tr:nth-child(even) {
    background: #fff;
    border: 1px solid var(--awho-line);
    border-radius: var(--awho-radius);
    box-shadow: var(--awho-shadow-sm);
    margin-bottom: 1rem;
    padding: .25rem 1rem;
  }
  .awho-table-stack tbody td {
    border-bottom: 1px dashed var(--awho-line);
    padding: .6rem 0;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .awho-table-stack tbody td:nth-child(2)::before { content: "Category"; }
  .awho-table-stack tbody td:nth-child(3)::before { content: "Type"; }
  .awho-table-stack tbody td:nth-child(4)::before { content: "Published"; }
  .awho-table-stack tbody td:nth-child(2)::before,
  .awho-table-stack tbody td:nth-child(3)::before,
  .awho-table-stack tbody td:nth-child(4)::before {
    font-weight: 600; color: var(--awho-ink-500); font-size: .82rem; flex: 0 0 auto;
  }
  .awho-table-stack tbody td:first-child {
    display: block;
    border-bottom: 1px solid var(--awho-line);
    padding: .7rem 0 .6rem;
  }
  .awho-table-stack tbody td:first-child strong { color: var(--awho-green-900); font-size: 1rem; }
  .awho-table-stack tbody td:last-child {
    display: block;
    border-bottom: 0;
    text-align: left !important;
    padding: .75rem 0 .4rem;
  }
  .awho-table-stack tbody td:last-child .awho-btn { width: 100%; justify-content: center; }
}

/* SAHAJM: project-detail in-page nav -- plain text + hyphen separators,
   sticks below the main nav, horizontal touch-swipe scroll on mobile. */
.awho-proj-nav {
  background: #fff; border-top: 1px solid #ECECEC; border-bottom: 1px solid #ECECEC;
  position: sticky; top: 46px; z-index: 1010;
  display: flex; flex-wrap: nowrap; gap: 0; align-items: center;
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: .85rem 0;
}
.awho-proj-nav::-webkit-scrollbar { display: none; }
.awho-proj-nav { cursor: grab; user-select: none; scroll-behavior: smooth; }
.awho-proj-nav.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.awho-proj-nav a {
  flex: 0 0 auto;
  padding: 0 .9rem; color: #56615B; font-size: .92rem; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: color .15s ease;
}
.awho-proj-nav a:hover { color: #237A48; }
.awho-proj-nav a.active { color: #360952; font-weight: 600; }
.awho-proj-nav a + a::before {
  content: '-'; display: inline-block;
  color: #56615B; font-weight: 400;
  margin-left: -.9rem; margin-right: .55rem;
  pointer-events: none;
}
@media (max-width: 575px) {
  .awho-proj-nav { padding: .65rem 0; }
  .awho-proj-nav a { font-size: .85rem; padding: 0 .65rem; }
  .awho-proj-nav a + a::before { margin-left: -.65rem; margin-right: .35rem; }
}

.awho-spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.awho-spec-card { background: #fffaf1; border-radius: var(--awho-radius-sm); padding: .85rem 1rem; }
.awho-spec-card .lbl { font-size: .75rem; color: var(--awho-ink-500); letter-spacing: .04em; }
.awho-spec-card .val { font-weight: 700; color: var(--awho-ink-900); margin-top: .15rem; }

.awho-amenity-pill { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .75rem; background: var(--awho-green-50); border-radius: 999px; font-size: .8rem; color: var(--awho-ink-700); margin: .15rem; }
.awho-amenity-pill i { color: var(--awho-green-700); }

/* SAHAJM: amenities grid -- 5-col, icon-above-text, hairline dividers only */
.awho-amenity-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.awho-amenity-cell { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 1.75rem 1rem; min-height: 130px; text-align: center; background: #fff; border-right: 1px solid #ECECEC; border-bottom: 1px solid #ECECEC; }
.awho-amenity-cell:nth-child(5n) { border-right: 0; }
.awho-amenity-cell i { font-size: 1.75rem; color: #D1B480; line-height: 1; }
.awho-amenity-cell span { font-size: .9rem; color: var(--awho-ink-700); font-weight: 500; }
@media (max-width: 991px) { .awho-amenity-grid { grid-template-columns: repeat(3, 1fr); } .awho-amenity-cell { border-right: 1px solid #ECECEC; } .awho-amenity-cell:nth-child(5n) { border-right: 1px solid #ECECEC; } .awho-amenity-cell:nth-child(3n) { border-right: 0; } }
@media (max-width: 575px) { .awho-amenity-grid { grid-template-columns: repeat(2, 1fr); } .awho-amenity-cell { min-height: 110px; padding: 1.25rem .75rem; border-right: 1px solid #ECECEC; } .awho-amenity-cell:nth-child(3n) { border-right: 1px solid #ECECEC; } .awho-amenity-cell:nth-child(2n) { border-right: 0; } }

/* SAHAJM: nearby landmarks -- 2-col list (icon + name left, distance right) under the location map */
.awho-landmark-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
.awho-landmark-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid #ECECEC; }
.awho-landmark-name { display: inline-flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--awho-ink-700); font-weight: 500; }
.awho-landmark-name i { font-size: 1.15rem; color: #B8D4C2; line-height: 1; }
.awho-landmark-dist { font-size: .85rem; color: var(--awho-ink-500); white-space: nowrap; }
@media (max-width: 575px) { .awho-landmark-grid { grid-template-columns: 1fr; column-gap: 0; } }

/* SAHAJM: FAQ accordion */
.awho-faq .accordion-button {
  background: #414141 !important; color: #fff !important;
  font-weight: 600; border-radius: var(--awho-radius-sm) !important;
}
.awho-faq .accordion-button:not(.collapsed) { background: #523809 !important; }
.awho-faq .accordion-button::after { filter: invert(1); }
.awho-faq .accordion-item { border: 1px solid var(--awho-line); margin-bottom: .65rem; border-radius: var(--awho-radius-sm) !important; overflow: hidden; }
.awho-faq .accordion-body { background: #fff; color: var(--awho-ink-700); font-size: .9rem; }
.awho-faq .accordion-body ul { padding-left: 1.15rem; margin: 0; }

/* SAHAJM: notice/important alert -- cornsilk bg + gold left rule */
.awho-alert-note { background: #FFF8DC; border-left: 4px solid #FFB300; padding: .9rem 1rem; border-radius: 4px; color: var(--awho-ink-900); }
/* Alert-note variants (page-builder "Alert note" block) — warning (default) / success / info. */
.awho-alert-note.is-warning { background: #FFF8DC; border-left-color: #FFB300; }
.awho-alert-note.is-success { background: #E8F6EC; border-left-color: #2E7D32; }
.awho-alert-note.is-info    { background: #E7F0FA; border-left-color: #1565C0; }
.awho-alert-note > :last-child { margin-bottom: 0; }

/* SAHAJM: info card -- white panel with green serif heading + bulleted notes */
.awho-info-card { background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius); padding: 1.5rem 1.75rem; }
.awho-info-card h3 { color: var(--awho-green-700); font-family: var(--awho-font-head); font-size: 1.1rem; font-weight: 700; margin: 0 0 1rem; }
.awho-info-card ul { margin: 0; padding-left: 1.15rem; color: var(--awho-ink-700); font-size: .9rem; }
.awho-info-card ul li { margin-bottom: .55rem; }
.awho-info-card ul li:last-child { margin-bottom: 0; }

/* SAHAJM: numbered step card -- circle badge overlaps card top edge */
.awho-step-card { position: relative; background: #fff; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.06); padding: 2.75rem 1.25rem 1.5rem; text-align: center; margin-top: 28px; height: calc(100% - 28px); }
.awho-step-num { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; background: #556B2F; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--awho-font-head); font-size: 1.5rem; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.awho-step-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .4rem; color: var(--awho-ink-900); }
.awho-step-card p { font-size: .85rem; color: #515863; margin: 0; }

/* SAHAJM: empty-state -- shown when filters return zero rows (downloads, etc.) */
.awho-empty-state { text-align: center; padding: 3rem 1rem; }
.awho-empty-state .awho-empty-icon { width: 96px; height: 96px; margin: 0 auto 1rem; background: #F3F4F6; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #9CA3AF; font-size: 2.5rem; }
.awho-empty-state h2, .awho-empty-state h3 { font-family: var(--awho-font-head); color: var(--awho-ink-900); font-size: 1.25rem; font-weight: 700; margin: 0 0 .35rem; }
.awho-empty-state p { color: var(--awho-ink-700); font-size: .9rem; margin: 0; }

/* SAHAJM: forms */
.awho-form-section { background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius); padding: 2rem; box-shadow: var(--awho-shadow-sm); }
.awho-form-section .form-label { font-weight: 500; color: var(--awho-ink-900); font-size: .9rem; }
.awho-form-section .form-control,
.awho-form-section .form-select {
  border-radius: var(--awho-radius-sm); border-color: var(--awho-line);
  padding: .55rem .85rem; font-size: .9rem;
}
.awho-form-section .form-control:focus,
.awho-form-section .form-select:focus { border-color: var(--awho-green-600); box-shadow: 0 0 0 .2rem rgba(58,125,62,.15); }
.awho-form-section h3.awho-form-title { color: var(--awho-green-700); text-align: center; margin-bottom: 1.5rem; }
.awho-form-section > h3.h-serif { margin-bottom: 1.5rem; }
.awho-required { color: var(--awho-danger); }

/* SAHAJM: downloads search card -- overlaps page hero / sits on the seam */
.awho-search-overlap { position: relative; z-index: 5; margin-top: -56px; }
.awho-search-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
}
.awho-search-card .form-label { font-weight: 700; color: #1a1a1a; font-size: .92rem; margin-bottom: .4rem; }
.awho-search-card .form-select {
  border-radius: 8px;
  border: 1px solid #D9DDE2;
  padding: .8rem 1rem;
  font-size: .95rem;
  color: #4B5563;
  background-color: #fff;
}
.awho-search-card .form-select:focus { border-color: var(--awho-gold-500); box-shadow: 0 0 0 .2rem rgba(244,178,63,.18); }

.awho-btn-search {
  background: var(--awho-gold-500);
  color: #1a1a1a;
  padding: .8rem 1.1rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 8px;
  justify-content: center;
  gap: .65rem;
  border: 0;
}
.awho-btn-search .ico {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #1a1a1a;
  font-size: 1.05rem;
}
.awho-btn-search:hover { background: #E4A02E; color: #1a1a1a; text-decoration: none; }

@media (max-width: 767px) {
  .awho-search-overlap { margin-top: -32px; }
  .awho-search-card { padding: 1rem 1rem; }
}

/* SAHAJM: department directory tile */
.awho-dept-tile { background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius); padding: 1.25rem; text-align: center; }
.awho-dept-tile .icon { width: 56px; height: 56px; border-radius: 50%; background: var(--awho-green-100); color: var(--awho-green-800); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: .85rem; }
.awho-dept-tile .icon img { width: 32px; height: 32px; object-fit: contain; }
.awho-dept-tile h3 { color: #106536; font-size: 1rem; margin: 0 0 .5rem; }

/* SAHAJM: visual reCAPTCHA mock -- pure HTML/CSS look-alike of Google's v2
   "I'm not a robot" widget. Used on contact.html (no network call). */
.awho-captcha-mock {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; background: #F9F9F9; border: 1px solid #D3D3D3;
  border-radius: 3px; padding: 11px 14px 11px 12px;
  width: 304px; max-width: 100%; font-family: 'Roboto', Arial, sans-serif;
}
.awho-captcha-left  { display: flex; align-items: center; gap: .7rem; }
.awho-captcha-right { display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 60px; }
.awho-captcha-checkbox {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 24px; min-width: 24px;
  border: 2px solid #C1C1C1; border-radius: 2px;
  background: #fff; cursor: pointer; position: relative; margin: 0;
}
.awho-captcha-checkbox:checked { background: #4CAF50; border-color: #4CAF50; }
.awho-captcha-checkbox:checked::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 7px; height: 13px; border: solid #fff;
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.awho-captcha-label { font-size: .9rem; color: #000; cursor: pointer; margin: 0; font-weight: 400; }
.awho-captcha-logo  { font-size: 28px; color: #4A90E2; line-height: 1; }
.awho-captcha-brand { text-align: center; line-height: 1.2; color: #555; }
.awho-captcha-brand strong { font-size: 10px; font-weight: 600; display: block; color: #555; }
.awho-captcha-brand small  { font-size: 8px; color: #5a5a5a; display: block; }

/* SAHAJM: large centered Submit button variant used on contact form */
.awho-btn-submit-lg {
  min-width: 320px; padding: .85rem 2rem;
  font-size: 1rem; font-weight: 600;
  justify-content: center;
}
.awho-dept-tile a { display: block; color: var(--awho-ink-900); font-size: .85rem; }

/* SAHAJM: department-tiles slider -- true carousel on mobile (prev/next arrows,
   dots, snap-one-at-a-time, touch + mouse-drag). On md+ the wrapper is a plain
   block and the inner .row falls back to Bootstrap's 4-col grid; arrows and dots
   are hidden. JS: initDeptSlider() in awho.js wires arrows/dots/drag/sync. */
.awho-dept-slider { position: relative; }
.awho-dept-dots { display: none; }
.awho-dept-swipe.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.awho-dept-swipe.is-grabbing a, .awho-dept-swipe.is-grabbing * { user-select: none; }
/* SAHAJM: kill the browser's native link-drag on inner anchors -- without this
   the <a href="tel:"> / <a href="mailto:"> tiles hijack mousedown and the
   drag-to-scroll never receives mousemove. */
.awho-dept-swipe a, .awho-dept-swipe img { -webkit-user-drag: none; user-drag: none; }

@media (max-width: 767.98px) {
  .awho-dept-swipe {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    margin-left: -.75rem; margin-right: -.75rem;
    padding: .25rem .75rem .25rem;
    scroll-padding-left: .75rem;
    scroll-behavior: smooth;
  }
  .awho-dept-swipe::-webkit-scrollbar { display: none; }
  .awho-dept-swipe > [class*="col-"] {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: center;
  }
  .awho-dept-swipe .awho-dept-tile { height: 100%; }

  /* dot indicators */
  .awho-dept-dots {
    display: flex; justify-content: center; gap: .4rem;
    margin-top: .85rem;
  }
  .awho-dept-dots button {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(20,62,42,.25); border: 0; padding: 0;
    transition: background .2s, width .2s;
  }
  .awho-dept-dots button.is-active {
    background: var(--awho-green-800, #143E2A);
    width: 20px; border-radius: 4px;
  }
}

/* SAHAJM: page hero (inner pages) -- on-brand charcoal+gold combination (no green),
   with the SAME decorative pattern as .awho-section-green (faint white grid + gold glows). */
.awho-page-hero {
  --awho-hero-img: url(../img/heroes/hero-township.jpg);
  background-color: #141414;
  background-image: linear-gradient(135deg, rgba(35, 35, 35, .74), rgba(15, 15, 15, .90)), var(--awho-hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; padding: 1.25rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.awho-page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    /* diagonal "service ribbon" stripes -- thin gold + offset white lines at 45deg */
    repeating-linear-gradient(45deg, rgba(244,178,63,.06) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 32px),
    /* depth: top spotlight + bottom-corner gold glows (brand accent ties it to the site) */
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(244,178,63,.14), transparent 65%),
    radial-gradient(ellipse 60% 55% at 0% 100%, rgba(244,178,63,.10), transparent 55%),
    radial-gradient(ellipse 60% 55% at 100% 100%, rgba(244,178,63,.07), transparent 55%);
}
.awho-page-hero > .container { position: relative; z-index: 1; }
.awho-page-hero h1 { color: #fff; margin: 0 0 .5rem; }
.awho-page-hero p  { color: rgba(255,255,255,.82); max-width: 50rem; margin: 0 auto; }

/* SAHAJM: breadcrumb when nested inside the hero (top-left, white) */
.awho-crumb-hero {
  display: block;
  text-align: left;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
}
.awho-crumb-hero a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; }
.awho-crumb-hero a:hover { color: #fff; text-decoration: underline; }
.awho-crumb-hero .sep { margin: 0 .4rem; color: rgba(255,255,255,.55); }
.awho-crumb-hero > span:last-child { color: #fff; font-weight: 600; }

/* SAHAJM: standalone breadcrumb (used on pages without a hero -- projects.html, project-detail.html) */
.awho-crumb { padding: .65rem 0; font-size: .8rem; color: var(--awho-ink-500); background: var(--awho-green-50); }
.awho-crumb a { color: var(--awho-ink-700); }
.awho-crumb .sep { margin: 0 .35rem; color: var(--awho-ink-300); }

/* SAHAJM: empty state */
.awho-empty { text-align: center; padding: 3rem 1rem; }
.awho-empty img { max-width: 280px; margin: 0 auto 1.5rem; display: block; }
.awho-empty h3 { color: var(--awho-ink-900); margin: 0 0 .5rem; }
.awho-empty p  { color: var(--awho-ink-500); max-width: 32rem; margin: 0 auto; }

/* =====================  FOOTER  ===================== */

.awho-footer { background: #09522A; color: rgba(255,255,255,.85); padding: 3rem 0 1.25rem; margin-top: 4rem; }
/* SAHAJM: home page ends on a green CTA section -- the 4rem footer gap reads as a seam.
   Body class `.awho-page-home` is set by awho.js based on URL; same rule kept for any
   page that ends in a green section as a backup. */
body.awho-page-home .awho-footer { margin-top: 0; }
.awho-section-green + .awho-footer { margin-top: 0; }
.awho-footer h5, .awho-footer .awho-foot-h { font-family: var(--awho-font-body); font-weight: 600; color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.awho-footer a  { color: rgba(255,255,255,.78); font-size: .88rem; line-height: 2; display: block; }
.awho-footer a:hover { color: #fff; text-decoration: none; }
.awho-footer .awho-foot-brand { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.awho-footer .awho-foot-brand img { width: 44px; height: 44px; }
.awho-footer .awho-foot-brand .ttl { font-family: var(--awho-font-head); font-weight: 700; color: #fff; font-size: .95rem; }
.awho-footer .awho-foot-brand .sub { color: rgba(255,255,255,.7); font-size: .8rem; }
.awho-footer .awho-foot-brand .auth { color: rgba(255,255,255,.78); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; margin-top: .15rem; }
.awho-footer .awho-foot-desc { color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.65; }
.awho-footer .awho-foot-contact { display: flex; gap: .5rem; align-items: flex-start; margin-bottom: .65rem; font-size: .85rem; }
.awho-footer .awho-foot-contact i { color: var(--awho-gold-500); margin-top: .2rem; }
.awho-footer hr { border-top: 1px solid rgba(255,255,255,.12); margin: 1.5rem 0 1rem; }
.awho-footer .awho-foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.65); }
.awho-footer .awho-foot-bottom a { display: inline; padding: 0 .5rem; }
/* SAHAJM: GIGW "Last Updated" date -- wraps to its own subtle line under the copyright/links row. */
.awho-footer .awho-foot-bottom .awho-last-updated { flex-basis: 100%; order: 3; color: rgba(255,255,255,.5); }

/* SAHAJM: scroll to top */
.awho-totop {
  position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
  border-radius: 50%; background: var(--awho-green-700); color: #fff;
  border: 0; display: none; align-items: center; justify-content: center;
  box-shadow: var(--awho-shadow); z-index: 1030;
}
.awho-totop.show { display: inline-flex; }
.awho-totop:hover { background: var(--awho-green-800); color: #fff; }

/* SAHAJM: project-detail floating action bar -- real-estate style sticky bottom CTA.
   Hidden by default; slides up from bottom only after the user has scrolled
   past the original title block (JS toggles `.show`). To-top button auto
   nudges up via :has() so it doesn't sit under the bar. */
.awho-proj-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
  background: #fff; border-top: 1px solid var(--awho-line);
  box-shadow: 0 -6px 18px rgba(0,0,0,.08);
  padding: .65rem 0;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  visibility: hidden;
}
.awho-proj-stickybar.show {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.awho-proj-stickybar .awho-proj-stickybar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.awho-proj-stickybar .title {
  font-family: var(--awho-font-head); font-weight: 700;
  color: var(--awho-green-800); font-size: 1.05rem; line-height: 1.2; margin: 0;
}
.awho-proj-stickybar .loc {
  font-size: .8rem; color: var(--awho-ink-500);
  display: flex; align-items: center; gap: .3rem; margin-top: .15rem;
}
.awho-proj-stickybar .loc i { color: var(--awho-success); }
.awho-proj-stickybar .actions { display: flex; gap: .5rem; flex-wrap: wrap; }
body:has(.awho-proj-stickybar.show) .awho-totop { bottom: 5.5rem; }
@media (max-width: 576px) {
  .awho-proj-stickybar { padding: .5rem 0; }
  .awho-proj-stickybar .title { font-size: .9rem; }
  .awho-proj-stickybar .loc { display: none; }
  .awho-proj-stickybar .actions .awho-btn { padding: .45rem .75rem; font-size: .8rem; }
}
@media print { .awho-proj-stickybar { display: none !important; } }

/* SAHAJM: branded pagination -- AWHO greens, rounded squares, prev/next with
   icons + text (text hides on mobile to save space). Active page = filled
   green + small lift; hover = mint tint + 1px lift; disabled = grey muted. */
.awho-pagination { gap: .25rem; }
.awho-pagination .page-item { margin: 0; }
.awho-pagination .page-link {
  border: 1px solid var(--awho-line); background: #fff;
  color: var(--awho-ink-700); font-weight: 600; font-size: .9rem;
  min-width: 42px; height: 42px; padding: 0 .85rem;
  border-radius: var(--awho-radius-sm);
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease,
              transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.awho-pagination .page-link:hover {
  background: var(--awho-green-50); color: var(--awho-green-800);
  border-color: var(--awho-green-700);
  transform: translateY(-1px); box-shadow: var(--awho-shadow-sm);
}
.awho-pagination .page-item.active .page-link {
  background: var(--awho-green-800); color: #fff;
  border-color: var(--awho-green-800);
  box-shadow: 0 4px 10px rgba(20,62,42,.18);
  position: relative;
}
.awho-pagination .page-item.active .page-link::after {
  content: ''; position: absolute; left: 25%; right: 25%; bottom: -6px;
  height: 3px; background: var(--awho-gold-500); border-radius: 2px;
}
.awho-pagination .page-item.active .page-link:hover {
  background: var(--awho-green-700); color: #fff;
  transform: translateY(-1px);
}
.awho-pagination .page-item.disabled .page-link {
  background: #f6f6f4; color: var(--awho-ink-300);
  border-color: var(--awho-line); cursor: not-allowed;
  pointer-events: none;
}
.awho-pagination .page-item.disabled .page-link:hover { transform: none; box-shadow: none; }
.awho-pagination .page-nav .page-link { padding: 0 1.1rem; }
.awho-pagination .page-link .page-nav-text { display: inline; }
.awho-pagination .page-ellipsis .page-link {
  border-color: transparent; background: transparent; cursor: default; pointer-events: none;
  color: var(--awho-ink-500); letter-spacing: .15em;
}
.awho-pagination-info {
  text-align: center; margin-top: 1.1rem; font-size: .85rem;
  color: var(--awho-ink-500);
}
.awho-pagination-info strong { color: var(--awho-green-800); }
@media (max-width: 576px) {
  .awho-pagination .page-link { min-width: 38px; height: 38px; font-size: .85rem; padding: 0 .6rem; }
  .awho-pagination .page-nav .page-link { padding: 0 .75rem; }
  .awho-pagination .page-link .page-nav-text { display: none; }
}

/* SAHAJM: project-detail Floor Plans -- branded tab pills + plan card frame.
   Active tab gets a gold underline (matches brand accent); each pane wraps
   its content in a soft mint-green card. Plan image sits in a white inner
   frame with a corner zoom affordance; the spec grid + features + CTAs
   stack on the right side. Stacks below image on mobile. */
.awho-floor-tabs {
  border-bottom: 1px solid #ECECEC;
  gap: 0; margin-bottom: 2rem; flex-wrap: wrap;
}
.awho-floor-tabs .nav-link {
  font-weight: 600; color: var(--awho-ink-500);
  background: transparent; border: 0; border-radius: 0;
  padding: .75rem 1.25rem .9rem; position: relative;
  transition: color .2s ease;
  font-size: .95rem;
}
.awho-floor-tabs .nav-link:hover { color: #106536; background: transparent; }
.awho-floor-tabs .nav-link.active { color: #360952; background: transparent; }
.awho-floor-tabs .nav-link.active::after {
  content: ''; position: absolute; bottom: -1px; left: 1.25rem; right: 1.25rem;
  height: 2px; background: #360952; border-radius: 2px 2px 0 0;
}

/* SAHAJM: floor-plans card now wrapperless -- neutralized to match FC ref */
.awho-floor-card { background: transparent; border: 0; border-radius: 0; padding: 0; }
.awho-floor-plan-img { background: transparent; border: 0; border-radius: var(--awho-radius); padding: 0; overflow: hidden; }
.awho-floor-plan-img img { width: 100%; height: auto; display: block; border-radius: var(--awho-radius); }

.awho-floor-meta h3 { margin: 0 0 1.25rem; font-size: 1.25rem; }

/* SAHAJM: floor-plan stat grid -- big number centered, label below (mint card) */
.awho-fp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
.awho-fp-stat { background: #fffaf1; border-radius: var(--awho-radius-sm); padding: 1.25rem 1rem; text-align: center; }
.awho-fp-stat .num { font-size: 1.5rem; font-weight: 700; color: var(--awho-ink-900); line-height: 1.1; }
.awho-fp-stat .lbl { font-size: .85rem; color: var(--awho-ink-700); margin-top: .35rem; }

.awho-floor-features {
  list-style: disc; padding-left: 1.1rem; margin: 0 0 0;
  font-size: .92rem; color: var(--awho-ink-800);
}
.awho-floor-features li { padding: .2rem 0; }
.awho-floor-features li::marker { color: var(--awho-ink-700); }

.awho-floor-cta {
  display: flex; gap: .5rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px dashed var(--awho-ink-300);
}
.awho-floor-cta .awho-btn {
  flex: 1 1 0; min-width: 0;
  justify-content: center; text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .awho-floor-tabs .nav-link { padding: .65rem .9rem; font-size: .9rem; }
  .awho-floor-tabs .nav-link.active::after { left: .9rem; right: .9rem; }
}

/* SAHAJM: project-detail aside (Who Can Apply) -- sticks below nav while the
   long main column scrolls. Sticky only on lg+; full-width below content on
   smaller screens. Top offset accounts for sticky nav (~96px) + small buffer. */
.awho-proj-aside-sticky { position: relative; }
@media (min-width: 992px) {
  .awho-proj-aside-sticky { position: sticky; top: 110px; }
}

/* SAHAJM: photo lightbox gallery -- JS-injected once, shared across pages.
   Trigger: any container marked `data-awho-photo-gallery` becomes clickable.
   Modal shows the picked image with prev/next arrows, counter, keyboard support. */
.awho-photo-lightbox .modal-dialog { max-width: 1140px; }
.awho-photo-lightbox .modal-content {
  background: rgba(8,8,8,.94); border: 0;
  border-radius: var(--awho-radius-lg); overflow: hidden;
}
.awho-photo-lightbox .awho-pl-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 72vh; padding: 2.5rem;
}
.awho-photo-lightbox .awho-pl-stage img {
  max-width: 100%; max-height: 70vh; object-fit: contain;
  border-radius: var(--awho-radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
  transition: opacity .2s ease;
}
.awho-photo-lightbox .awho-pl-stage img.swap { opacity: 0; }
.awho-photo-lightbox .awho-pl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #D1B480; color: var(--awho-ink-900);
  border: 0; width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  z-index: 2;
}
.awho-photo-lightbox .awho-pl-nav:hover { background: #b9985f; transform: translateY(-50%) scale(1.06); }
.awho-photo-lightbox .awho-pl-nav.prev { left: 1rem; }
.awho-photo-lightbox .awho-pl-nav.next { right: 1rem; }
.awho-photo-lightbox .awho-pl-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  background: rgba(255,255,255,.15); color: #fff;
  border: 0; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.awho-photo-lightbox .awho-pl-close:hover { background: rgba(255,255,255,.32); }
.awho-photo-lightbox .awho-pl-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1rem 1.5rem; color: rgba(255,255,255,.88);
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-size: .85rem;
}
.awho-photo-lightbox .awho-pl-caption .title { font-weight: 500; }
.awho-photo-lightbox .awho-pl-caption .counter {
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,.12); padding: .2rem .55rem;
  border-radius: 999px; font-size: .78rem;
}
[data-awho-photo-gallery] img { cursor: zoom-in; transition: transform .25s ease; }
[data-awho-photo-gallery] img:hover { transform: scale(1.02); }
@media (max-width: 576px) {
  .awho-photo-lightbox .modal-dialog { margin: 0; }
  .awho-photo-lightbox .modal-content { border-radius: 0; min-height: 100vh; }
  .awho-photo-lightbox .awho-pl-stage { min-height: 80vh; padding: 1rem; }
  .awho-photo-lightbox .awho-pl-nav { width: 40px; height: 40px; font-size: 1rem; }
}

/* SAHAJM: popup overlay (featured projects) -- brand header + gold banner + soft leaf watermark */
.awho-popup .modal-dialog { max-width: 720px; }
.awho-popup .modal-content {
  border: 0; border-radius: 14px; overflow: hidden; padding: 1.4rem 1.9rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(244,251,245,.88) 0%, rgba(234,245,236,.92) 100%),
    url('../img/popup-img.jpg') center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.awho-popup-x {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: #fff; color: #555; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,.15); cursor: pointer; transition: all .15s;
}
.awho-popup-x:hover { background: #f3f3f3; color: #000; transform: scale(1.05); }

.awho-popup-brand { display: flex; align-items: center; justify-content: center; gap: .85rem; margin-bottom: .9rem; }
.awho-popup-brand img { width: 56px; height: 56px; object-fit: contain; }
.awho-popup-brand-text { line-height: 1.15; }
.awho-popup-brand-text .en { font-weight: 700; color: #1a1a1a; font-size: 1rem; }
.awho-popup-brand-text .hi { font-weight: 500; color: #333; font-size: .9rem; margin-top: 1px; }
.awho-popup-brand-text .sub { font-weight: 600; color: #555; font-size: .68rem; letter-spacing: .04em; margin-top: 2px; }

.awho-popup-banner {
  background: #523809;
  border-radius: 10px;
  padding: .65rem 1.25rem;
  text-align: center;
  margin-bottom: .95rem;
  box-shadow: 0 2px 0 rgba(0,0,0,.04);
}
.awho-popup-banner h3 {
  font-family: var(--awho-font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

.awho-popup-body { padding: 0 .5rem 1rem; }
.awho-popup-body ul { list-style: none; padding: 0; margin: 0; }
.awho-popup-body ul li {
  position: relative; padding: .3rem 0 .3rem 1.4rem;
  font-size: .92rem; color: #1a1a1a; line-height: 1.4; text-align: left;
}
.awho-popup-body ul li::before {
  content: ""; position: absolute; left: .2rem; top: .72rem;
  width: 7px; height: 7px; border-radius: 50%; background: #523809;
}
.awho-popup-body ul li strong { font-weight: 700; }
.awho-popup-body ul li a { color: #106536; font-weight: 600; text-decoration: underline; }
.awho-popup-body ul li a:hover { color: #0b4a26; }

/* The body is admin-authored rich text (Admin > Home Popup), so it can also carry paragraphs,
   numbered lists and links — not just the bullet list it started as. Values mirror the ul above so
   mixed content stays visually consistent; numbered items keep the real marker (only ul li gets the
   custom dot). <b> is here because the editor's bold command emits it rather than <strong>. */
.awho-popup-body p { margin: 0 0 .6rem; font-size: .92rem; line-height: 1.4; color: #1a1a1a; text-align: left; }
.awho-popup-body ol { list-style: decimal; padding-left: 1.4rem; margin: 0; text-align: left; }
.awho-popup-body ol li { padding: .3rem 0; font-size: .92rem; color: #1a1a1a; line-height: 1.4; }
.awho-popup-body b, .awho-popup-body strong { font-weight: 700; }
.awho-popup-body a { color: #106536; font-weight: 600; text-decoration: underline; }
.awho-popup-body a:hover { color: #0b4a26; }
.awho-popup-body > :last-child { margin-bottom: 0; }

.awho-popup-btn-close {
  display: block; width: 70%; margin: .25rem auto 0;
  background: #fff; border: 1px solid #E0E0E0; border-radius: 12px;
  padding: .7rem 1.5rem; font-size: 1.05rem; font-weight: 600; color: #2A2A2A;
  cursor: pointer; transition: all .15s; box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.awho-popup-btn-close:hover:not([disabled]) { background: #F7F7F7; border-color: #CFCFCF; }
/* SAHAJM: OK disabled until the agreement checkbox is ticked. */
.awho-popup-btn-close[disabled] { opacity: .55; cursor: not-allowed; box-shadow: none; }
/* SAHAJM: mandatory-agreement checkbox row for the featured/flash popup. */
.awho-popup-agree {
  display: flex; align-items: flex-start; gap: .5rem; width: 85%; margin: .4rem auto .75rem;
  font-size: .86rem; line-height: 1.35; color: #2A2A2A; text-align: left; cursor: pointer;
}
.awho-popup-agree input[type="checkbox"] { margin-top: .15rem; width: 1rem; height: 1rem; accent-color: #106536; cursor: pointer; flex: 0 0 auto; }

/* =====================  GALLERY DETAIL  ===================== */
.awho-gallery-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .awho-gallery-detail { grid-template-columns: 1fr; } }
.awho-gallery-photo { position: relative; aspect-ratio: 4/3; background: var(--awho-ink-300); border-radius: var(--awho-radius); overflow: hidden; }
.awho-gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.awho-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: #D1B480; color: var(--awho-ink-900); border: 0; display: inline-flex; align-items: center; justify-content: center; }
.awho-gallery-nav:hover { background: #b9985f; }
.awho-gallery-nav.prev { left: .75rem; } .awho-gallery-nav.next { right: .75rem; }
.awho-gallery-info h2, .awho-gallery-info h3 { color: var(--awho-green-800); margin-bottom: .25rem; }
.awho-gallery-info .loc { color: var(--awho-ink-500); font-size: .9rem; margin-bottom: .85rem; }
.awho-gallery-info .desc { color: var(--awho-ink-700); font-size: .9rem; margin-bottom: 1.25rem; }
.awho-gallery-info .specs { display: flex; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.awho-gallery-info .specs span { font-size: .85rem; color: var(--awho-ink-700); display: inline-flex; align-items: center; gap: .35rem; }

/* =====================  MOBILE OFF-CANVAS DRAWER  ===================== */
/* SAHAJM: full-side slide-in menu for mobile (replaces Bootstrap collapse).
   JS clones the inline navbar content into this drawer at runtime -- no per-page HTML changes. */
.awho-offcanvas {
  background: var(--awho-green-800); color: #fff;
  width: 320px; max-width: 90vw;
  border-left: 1px solid rgba(255,255,255,.08);
}
.awho-offcanvas .offcanvas-header {
  background: var(--awho-green-900); padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.awho-offcanvas .offcanvas-header .btn-close { filter: invert(1) grayscale(1); opacity: .9; }
.awho-offcanvas .awho-oc-brand { display: flex; gap: .75rem; align-items: center; color: #fff; text-decoration: none; flex: 1; }
.awho-offcanvas .awho-oc-brand img { width: 44px; height: 44px; }
.awho-offcanvas .awho-oc-brand .t { font-family: var(--awho-font-head); font-weight: 700; font-size: .95rem; line-height: 1.15; }
.awho-offcanvas .awho-oc-brand .s { font-size: .78rem; color: rgba(255,255,255,.78); }
.awho-offcanvas .offcanvas-body { padding: 0; overflow-y: auto; }
.awho-offcanvas .navbar-nav { padding: 0; flex-direction: column; align-items: stretch; }
.awho-offcanvas .nav-item { width: 100%; }
.awho-offcanvas .nav-link {
  color: #fff !important; padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.awho-offcanvas .nav-link:hover { background: rgba(255,255,255,.06); }
.awho-offcanvas .nav-link.active { background: rgba(255,255,255,.10); }
.awho-offcanvas .dropdown-toggle::after {
  margin-left: auto;
  transition: transform .2s ease;
}
/* SAHAJM: keep menu inline (not floating) inside the drawer; rotate caret when open */
.awho-offcanvas .nav-item.show .dropdown-toggle::after,
.awho-offcanvas .dropdown-toggle.show::after,
.awho-offcanvas .dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }

/* SAHAJM: projects filter -- mobile accordion, desktop stays open */
.awho-filter-toggle { display: none; }
@media (max-width: 767.98px) {
  .awho-filter-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; border: 0; background: transparent; padding: .25rem 0;
    font-family: var(--awho-font-head); font-weight: 700; font-size: 1rem;
    color: var(--awho-green-900); cursor: pointer;
  }
  .awho-filter-toggle > span { display: inline-flex; align-items: center; gap: .5rem; }
  .awho-filter-caret { transition: transform .25s ease; font-size: .9rem; }
  .awho-filter-acc.is-open .awho-filter-caret { transform: rotate(180deg); }
  .awho-filter-body {
    overflow: hidden; max-height: 0; opacity: 0; margin-top: 0;
    transition: max-height .3s ease, opacity .25s ease, margin-top .3s ease;
  }
  .awho-filter-acc.is-open .awho-filter-body {
    max-height: 40rem; opacity: 1; margin-top: 1rem;
  }
}
.awho-offcanvas .nav-item.show .dropdown-toggle,
.awho-offcanvas .dropdown-toggle[aria-expanded="true"] { background: rgba(255,255,255,.10); }
.awho-offcanvas .dropdown-menu {
  background: rgba(0,0,0,.18); border: 0; border-radius: 0;
  padding: 0; margin: 0; float: none; box-shadow: none;
  width: 100%;
  position: static !important; transform: none !important; inset: auto !important;
}
.awho-offcanvas .dropdown-menu.show { display: block; }
.awho-offcanvas .dropdown-item {
  color: rgba(255,255,255,.85) !important; padding: .75rem 1.25rem .75rem 2.65rem;
  font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.05);
  white-space: normal;
}
.awho-offcanvas .dropdown-item:hover { background: rgba(255,255,255,.08); color: #fff !important; }
.awho-offcanvas .awho-cta-register {
  display: flex; justify-content: center; align-items: center; gap: .5rem;
  margin: 1.25rem; padding: .9rem 1.25rem; border-radius: var(--awho-radius-sm);
  background: var(--awho-gold-500); color: var(--awho-ink-900);
  font-weight: 700; text-decoration: none;
}
.awho-offcanvas .awho-oc-foot {
  padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7); font-size: .8rem;
}
.awho-offcanvas .awho-oc-foot a { color: var(--awho-gold-500); text-decoration: none; }
.awho-offcanvas .awho-oc-foot .row-i { display: flex; gap: .5rem; align-items: center; margin-bottom: .35rem; }

/* SAHAJM: hide Bootstrap navbar-toggler border on this site */
.awho-nav .navbar-toggler { border: 0; padding: .65rem .75rem; }
.awho-nav .navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--awho-gold-500); }

/* SAHAJM: print + reduced motion */
@media print { .awho-nav, .awho-ticker, .awho-footer, .awho-totop, .awho-utility { display: none !important; } }

/* =====================  GLOBAL SEARCH  ===================== */

/* SAHAJM: live dropdown under the header brand search box (all pages) */
.awho-search-dropdown {
  position: absolute; top: calc(100% + .4rem); left: 0; right: auto; z-index: 1100;
  width: max(100%, 22rem); max-width: 92vw;
  background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius);
  box-shadow: var(--awho-shadow-lg); overflow: hidden; max-height: 70vh; overflow-y: auto;
}
.awho-search-item, .awho-search-all, .awho-search-empty {
  display: flex; align-items: center; gap: .65rem; padding: .6rem .85rem;
  text-decoration: none; color: var(--awho-ink-900); border-bottom: 1px solid var(--awho-green-50);
}
.awho-search-item:hover { background: var(--awho-green-50); text-decoration: none; }
.awho-search-ico { flex: 0 0 auto; width: 1.9rem; height: 1.9rem; border-radius: 50%; display: grid; place-items: center; background: var(--awho-green-50); color: var(--awho-green-700); }
.awho-search-text { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.awho-search-text .ttl { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.awho-search-text .sub { font-size: .78rem; color: var(--awho-ink-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.awho-search-tag { flex: 0 0 auto; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--awho-green-700); background: var(--awho-green-100); padding: .15rem .45rem; border-radius: 999px; }
.awho-search-all { font-weight: 600; font-size: .85rem; color: var(--awho-green-800); background: var(--awho-cream); border-bottom: 0; }
.awho-search-all:hover { background: var(--awho-gold-100); color: var(--awho-green-900); text-decoration: none; }
.awho-search-empty { color: var(--awho-ink-500); font-size: .85rem; justify-content: center; }

/* SAHAJM: search-results.html search bar + chips + result items */
.awho-sr-bar { position: relative; display: flex; align-items: center; gap: .5rem; max-width: 44rem; margin-top: .75rem; }
.awho-sr-bar .bi-search { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--awho-ink-500); pointer-events: none; z-index: 2; }
.awho-sr-bar input { flex: 1 1 auto; min-width: 0; border: 0; border-radius: 999px; padding: .7rem 1rem .7rem 2.6rem; font-size: 1rem; }
.awho-sr-bar .awho-btn-search { flex: 0 0 auto; }
.awho-sr-echo { color: rgba(255,255,255,.88); margin: .85rem 0 0; font-size: .92rem; }

.awho-sr-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.awho-sr-chip { background: #fff; border: 1px solid var(--awho-line); border-radius: 999px; padding: .4rem .9rem; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--awho-ink-700); cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.awho-sr-chip:hover:not(:disabled) { border-color: var(--awho-green-600); color: var(--awho-green-800); }
.awho-sr-chip.active { background: var(--awho-green-800); border-color: var(--awho-green-800); color: #fff; }
.awho-sr-chip .n { opacity: .7; font-weight: 700; }
.awho-sr-chip:disabled { opacity: .4; cursor: not-allowed; }

.awho-sr-group { margin-bottom: 2rem; }
.awho-sr-group-title { font-size: 1.1rem; color: var(--awho-green-800); margin-bottom: .85rem; padding-bottom: .4rem; border-bottom: 2px solid var(--awho-green-100); }
.awho-sr-group-title span { color: var(--awho-ink-500); font-weight: 400; font-size: .9rem; }
.awho-sr-item { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--awho-line); border-radius: var(--awho-radius); padding: .85rem 1rem; margin-bottom: .65rem; text-decoration: none; color: var(--awho-ink-900); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.awho-sr-item:hover { transform: translateY(-2px); box-shadow: var(--awho-shadow); border-color: var(--awho-green-100); text-decoration: none; }
.awho-sr-ico { flex: 0 0 auto; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: grid; place-items: center; background: var(--awho-green-50); color: var(--awho-green-700); font-size: 1.1rem; }
.awho-sr-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.awho-sr-body .ttl { font-weight: 600; }
.awho-sr-body .sub { font-size: .85rem; color: var(--awho-ink-500); }
.awho-sr-tag { flex: 0 0 auto; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: .2rem .55rem; border-radius: 999px; }
.awho-sr-tag-page { color: var(--awho-info); background: #E7F0FA; }
.awho-sr-tag-project { color: var(--awho-green-800); background: var(--awho-green-100); }

/* Compact filter panel — used on the status-specific project listings (Ongoing / Delivered),
   ported same-to-same from the html-mockups ongoing-projects / delivered-projects pages. */
.awho-filter-compact .form-label {
  font-size: .7rem; font-weight: 600;
  color: var(--awho-ink-500); margin-bottom: .25rem;
}
.awho-filter-compact .form-select {
  padding: .35rem 2rem .35rem .7rem; font-size: .85rem; border-radius: var(--awho-radius-sm);
}
@media (min-width: 768px) {
  .awho-filter-compact [class^="col-md-"],
  .awho-filter-compact [class*=" col-md-"] { flex: 0 0 auto; width: auto; }
  .awho-filter-compact .form-select { min-width: 160px; }
}
.awho-sr-tag-download { color: var(--awho-gold-600); background: var(--awho-gold-100); }
@media (max-width: 575.98px) {
  .awho-sr-bar { flex-wrap: wrap; }
  .awho-sr-bar input { width: 100%; }
}
/* SAHAJM: search-results hero -- left-aligned (overrides the centered shared .awho-page-hero) */
.awho-sr-hero { text-align: left; padding-bottom: 2.5rem; }
.awho-sr-hero h1 { margin-bottom: .35rem; }
.awho-sr-hero .awho-sr-echo { max-width: none; margin: .85rem 0 0; }

/* Rich Text block (WEB-AWHO-239): free-form admin HTML — used on public pages AND the builder
   preview. Restores list bullets/numbers and sane heading/paragraph rhythm inside the block. */
.awho-richtext > :first-child { margin-top: 0; }
.awho-richtext > :last-child { margin-bottom: 0; }
.awho-richtext h2 { font-size: 1.6rem; margin: 1.6rem 0 .6rem; }
.awho-richtext h3 { font-size: 1.25rem; margin: 1.3rem 0 .5rem; }
.awho-richtext h4 { font-size: 1.08rem; margin: 1.1rem 0 .45rem; }
.awho-richtext p { margin: 0 0 1rem; line-height: 1.7; }
.awho-richtext ul { list-style: disc; padding-left: 1.5rem; margin: 0 0 1rem; }
.awho-richtext ol { list-style: decimal; padding-left: 1.5rem; margin: 0 0 1rem; }
.awho-richtext li { margin-bottom: .4rem; line-height: 1.6; }
.awho-richtext a { color: var(--awho-green-700, #143E2A); text-decoration: underline; }
.awho-richtext a:hover { text-decoration: none; }
/* Headings green like the rest of the site; body text stays the normal dark colour. */
.awho-richtext h2, .awho-richtext h3, .awho-richtext h4 { color: var(--awho-green-700, #143E2A); }
/* Neutralise inline colour/background/font dragged in by Word/web pastes so content adopts the
   site typography (this is why pasted text rendered green & in a foreign font). Inline styles beat
   normal rules, so these need !important; the link/heading colour rules above also use it via the
   higher-specificity selectors below. */
.awho-richtext font { color: inherit !important; font-family: inherit !important; font-size: inherit !important; }
.awho-richtext h2[style], .awho-richtext h3[style], .awho-richtext h4[style] { color: var(--awho-green-700, #143E2A) !important; }
.awho-richtext a[style] { color: var(--awho-green-700, #143E2A) !important; }
/* Pasted / content tables: a table copied from ANOTHER website comes in with all its colours, fonts,
   widths & borders stripped (paste sanitiser keeps only structure), so it adopts this clean AWHO look
   instead of the source site's design — copy-paste never breaks the page. Wide tables scroll inside the
   content column on small screens rather than pushing the layout out. */
.awho-richtext table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; font-size: .95rem; background: #fff; }
.awho-richtext table th, .awho-richtext table td { border: 1px solid #dfe3e8; padding: 8px 12px; text-align: left; vertical-align: top; line-height: 1.55; }
.awho-richtext table th { background: var(--awho-green-700, #143E2A); color: #fff; font-weight: 600; }
.awho-richtext table tr:nth-child(even) td { background: #f6f8f5; }
.awho-richtext table caption { caption-side: top; text-align: left; font-weight: 600; margin-bottom: .45rem; color: var(--awho-green-700, #143E2A); }
.awho-richtext table [style] { color: inherit !important; background: transparent !important; font: inherit !important; width: auto !important; }
.awho-richtext { overflow-x: auto; }

/* --- Cookie consent banner (Admin > Settings > Analytics: "Show consent banner").
   Hidden by default; _AnalyticsTracking.cshtml adds .is-visible via JS when consent is needed. --- */
.awho-cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080; display: none;
  background: var(--awho-green-700, #143E2A); color: #fff; box-shadow: 0 -4px 18px rgba(0,0,0,.18); }
.awho-cookie-banner.is-visible { display: block; }
.awho-cookie-inner { max-width: 1200px; margin: 0 auto; padding: .85rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.awho-cookie-text { margin: 0; font-size: .9rem; color: rgba(255,255,255,.9); flex: 1 1 320px; }
.awho-cookie-text a { color: #fff; text-decoration: underline; }
.awho-cookie-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.awho-cookie-btn { border: 0; border-radius: 6px; padding: .5rem 1.15rem; font-size: .88rem;
  font-weight: 600; cursor: pointer; }
.awho-cookie-accept { background: #C8A24B; color: #143E2A; }
.awho-cookie-accept:hover { background: #d4b15f; }
.awho-cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.awho-cookie-decline:hover { background: rgba(255,255,255,.12); }

/* ===== Pan-India Presence section (home) -- ported same-to-same from html-mockups/index.html ===== */
/* Pan-India section background -- subtle on-brand cream->pale-green tint */
.awho-india-section { background: linear-gradient(180deg, var(--awho-cream), var(--awho-green-50)); }
.awho-india-map { position: relative; background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.awho-india-map img { display: block; width: 100%; height: auto; border-radius: 8px; }
/* expand button on home map -> opens full-detail popup */
.awho-map-expand { position: absolute; top: 10px; right: 10px; z-index: 3; display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .8rem; border: 1px solid #523809; border-radius: 999px; background: transparent; color: #523809; font-size: .8rem; font-weight: 600; cursor: pointer; transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.awho-map-expand:hover { background: #fff; color: #0e2c1e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.22); }
.awho-map-expand i { font-size: .95rem; }
@media (max-width: 575.98px) { .awho-map-expand span { display: none; } .awho-map-expand { padding: .55rem; } }
/* full-screen Pan-India popup (left large map + right state-wise city list) */
.awho-mapmodal .modal-content { border: 0; border-radius: 0; height: 100%; }
.awho-mapmodal-head { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.2rem; background: #143E2A; color: #fff; flex: 0 0 auto; }
.awho-mapmodal-head h3 { margin: 0; color: #fff; font-size: 1.1rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.awho-mapmodal-count { font-size: .78rem; font-weight: 500; opacity: .9; background: rgba(255,255,255,.15); padding: .15rem .55rem; border-radius: 999px; }
.awho-mapmodal-x { border: 0; background: transparent; color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; padding: .2rem .4rem; }
.awho-mapmodal-x:hover { opacity: .8; }
.awho-mapmodal-body { display: flex; flex: 1 1 auto; min-height: 0; }
.awho-mapmodal-map { flex: 1 1 60%; display: flex; align-items: center; justify-content: center; padding: 1rem; background: #f7f5ef; min-width: 0; }
.awho-bigmap-svg { display: block; width: 100%; height: 100%; max-width: min(100%, 80vh); max-height: 100%; aspect-ratio: 1 / 1; }
.awho-mapmodal-side { flex: 0 0 380px; max-width: 42%; display: flex; flex-direction: column; border-left: 1px solid #e6e2d8; background: #fff; min-height: 0; }
.awho-mapmodal-search { position: relative; padding: 1rem 1rem .6rem; flex: 0 0 auto; }
.awho-mapmodal-search i { position: absolute; left: 1.75rem; top: calc(50% + .2rem); transform: translateY(-50%); color: #9aa39e; }
.awho-mapmodal-search input { width: 100%; padding: .6rem .8rem .6rem 2.3rem; border: 1px solid #d9d4c8; border-radius: 8px; font-size: .92rem; }
.awho-mapmodal-search input:focus { outline: none; border-color: #f4b23f; box-shadow: 0 0 0 3px rgba(244,178,63,.2); }
.awho-statelist { flex: 1 1 auto; overflow-y: auto; padding: 0 1rem 1.2rem; }
.awho-state-group { margin-top: 1rem; }
.awho-state-head { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #143E2A; padding-bottom: .4rem; border-bottom: 2px solid #f4b23f; display: flex; align-items: center; gap: .5rem; }
.awho-state-head span { background: #f4b23f; color: #143E2A; font-size: .7rem; border-radius: 999px; padding: .05rem .45rem; }
.awho-city-list { list-style: none; margin: .5rem 0 0; padding: 0; }
.awho-city { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; padding: .45rem .6rem; border-radius: 7px; cursor: pointer; transition: background .12s ease; }
.awho-city:hover { background: #f4f1e8; }
.awho-city.active { background: rgba(244,178,63,.22); }
.awho-city i { color: #7a1220; font-size: .85rem; }
.awho-city .cn { font-weight: 600; color: #2b3a33; font-size: .92rem; }
.awho-city .cd { flex-basis: 100%; padding-left: 1.35rem; font-size: 12px; color: #000000; font-weight: normal; } /* SAHAJM: sub-line black, 12px, normal weight */
@media (max-width: 767.98px) {
  .awho-mapmodal-body { flex-direction: column; }
  .awho-mapmodal-map { flex: 0 0 auto; height: 42vh; padding: .6rem; }
  .awho-bigmap-svg { max-width: 42vh; height: 100%; }
  .awho-mapmodal-side { flex: 1 1 auto; max-width: 100%; border-left: 0; border-top: 1px solid #e6e2d8; }
}
/* interactive India SVG map (project-location markers, hover tooltip) */
.awho-india-map-svg { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 8px; }
/* Pan-India left column -- editorial intro (gold accent eyebrow + lead) */
.awho-india-about { position: relative; }
.awho-about-eyebrow { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #d98b1f; }
.awho-about-eyebrow::before { content: ""; width: 30px; height: 2px; background: #f4b23f; }
.awho-about-lead { margin: 0; color: var(--awho-ink-700, #41524a); font-size: 1rem; line-height: 1.85; }
.awho-about-lead strong { color: #143E2A; font-weight: 700; }
@media (max-width: 575.98px) { .awho-about-lead { font-size: .94rem; } }
.awho-india-cities { columns: 3; column-gap: 1.6rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.awho-india-cities li { break-inside: avoid; -webkit-column-break-inside: avoid; position: relative; padding: .2rem 0 .2rem .9rem; font-size: .85rem; font-weight: 500; color: var(--awho-ink-700, #2b3a32); line-height: 1.45; }
.awho-india-cities li::before { content: ""; position: absolute; left: 0; top: .62rem; width: 5px; height: 5px; border-radius: 50%; background: var(--awho-gold, #C8A04B); }
@media (max-width: 991.98px) { .awho-india-cities { columns: 3; } }
@media (max-width: 575.98px) { .awho-india-cities { columns: 2; } }
/* ---- Signed-in member name dropdown (public header) ---- */
.awho-user-menu { position: relative; display: inline-flex; align-items: center; align-self: center; }
.awho-user-toggle {
  display: inline-flex; align-items: center; gap: 8px; line-height: 1; cursor: pointer;
  border: 0; background: transparent;
  color: #fff; font-weight: 600; font-size: .88rem;
  padding: 4px 6px 4px 4px; border-radius: 999px;
  transition: background-color .15s ease;
}
.awho-user-toggle:hover, .awho-user-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, .14);
}
.awho-user-ava {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: #fff; color: var(--awho-green-700, #2C7349);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .3px;
}
.awho-user-nm { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.awho-user-caret { font-size: .62rem; opacity: .8; transition: transform .15s ease; }
.awho-user-toggle[aria-expanded="true"] .awho-user-caret { transform: rotate(180deg); }
.awho-user-drop {
  min-width: 236px; padding: 6px; margin-top: 10px;
  border: 1px solid var(--awho-line, #e5e7eb); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 33, 15, .14);
}
.awho-user-head {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 10px 10px 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--awho-line, #eef0ec);
}
.awho-user-ava.sm { width: 44px; height: 44px; font-size: 1rem;
  background: var(--awho-green-700, #2C7349); color: #fff; }
.awho-user-head-txt { display: flex; flex-direction: column; align-items: center; min-width: 0; max-width: 100%; }
.awho-user-head .nm { font-weight: 700; font-size: .9rem; line-height: 1.25; color: var(--awho-ink-900, #14210f);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.awho-user-head .sub { font-size: .72rem; color: var(--awho-green-700, #2C7349); font-weight: 600; margin-top: 2px; }
.awho-user-drop .dropdown-item {
  padding: 9px 10px; font-size: .88rem; font-weight: 500; border-radius: 8px;
  display: flex; align-items: center; gap: 10px; color: var(--awho-ink-900, #14210f);
}
.awho-user-drop .dropdown-item i { font-size: 1rem; color: #6b7280; width: 18px; text-align: center; }
.awho-user-drop .dropdown-item:hover { background: var(--awho-green-50, #eef4ec); }
.awho-user-drop .dropdown-item:hover i { color: var(--awho-green-700, #2C7349); }
.awho-user-drop form { margin: 0; }
.awho-user-logout { width: 100%; border: 0; background: none; text-align: left; cursor: pointer;
  color: #dc2626 !important; margin-top: 2px; }
.awho-user-logout i { color: #dc2626 !important; }
.awho-user-logout:hover { background: #fef2f2 !important; }
.awho-user-logout:hover i { color: #dc2626 !important; }
@media (max-width: 991.98px) {
  .awho-user-menu { display: block; margin: 8px 0 0; }
  .awho-user-toggle { width: 100%; justify-content: flex-start; color: var(--awho-ink-900, #14210f); }
  .awho-user-toggle:hover, .awho-user-toggle[aria-expanded="true"] { background: var(--awho-green-50, #eef4ec); }
  .awho-user-ava { background: var(--awho-green-700, #2C7349); color: #fff; }
  .awho-user-nm { max-width: none; }
  .awho-user-drop { width: 100%; }
}

/* ===== About-page visual blocks (StatCards / FeatureRows / CtaBox) -- ported same-to-same from html-mockups/about.html.
   Shared by the public renderer AND the admin page-builder canvas (both load awho.css). ===== */
/* Basic Charter -- numbered list with green round badges + dashed dividers */
.about-list { list-style: none; margin: 0; padding: 0; }
.about-list li { display: flex; gap: .85rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px dashed var(--awho-line); color: var(--awho-ink-700); line-height: 1.6; }
.about-list li:last-child { border-bottom: 0; }
.about-list .n { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--awho-green-50); color: #1F5B3D; font-weight: 700; font-size: .82rem; display: flex; align-items: center; justify-content: center; }

/* Quick Overview -- icon fact cards */
.about-fact { height: 100%; text-align: center; background: #fff; border: 1px solid var(--awho-line); border-top: 3px solid #106536; border-radius: 12px; padding: 1.6rem 1.3rem; transition: box-shadow .18s ease, transform .18s ease; }
.about-fact:hover { box-shadow: 0 10px 24px rgba(20,62,42,.08); transform: translateY(-3px); }
.about-fact .ico { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--awho-green-50); color: #106536; font-size: 1.45rem; }
.about-fact .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--awho-ink-500); font-weight: 700; margin-bottom: .35rem; }
.about-fact .v { color: #143E2A; font-size: .95rem; line-height: 1.55; }
.about-fact .v.big { font-family: var(--awho-font-head); font-size: 1.9rem; line-height: 1.1; }
/* Key Features -- green-border rows + city chips */
.about-feat { border: 1px solid var(--awho-line); border-left: 3px solid #106536; border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: .75rem; }
.about-feat h4 { margin: 0 0 .3rem; font-size: 1rem; color: var(--awho-ink-900); }
.about-feat p { margin: 0; color: var(--awho-ink-700); font-size: .92rem; line-height: 1.6; }
.about-feat p strong { color: #106536; }
.about-cities { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .75rem; }
.about-cities span { font-size: .8rem; background: var(--awho-green-50); color: #106536; border: 1px solid var(--awho-line); padding: .25rem .7rem; border-radius: 999px; font-weight: 600; }
/* How to Apply -- tinted CTA box */
.about-apply-box { background: var(--awho-green-50); border: 1px solid var(--awho-line); border-radius: 12px; padding: 1.6rem 1.5rem; text-align: center; }
.about-apply-box p { text-align: center; margin: 0 auto .75rem; color: var(--awho-ink-700); line-height: 1.7; max-width: 760px; }
.about-apply-box p:last-of-type { margin-bottom: 0; }
.about-apply-box .btn-reg { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; background: #106536; color: #fff; font-weight: 600; padding: .6rem 1.3rem; border-radius: 8px; text-decoration: none; transition: background .15s; }
.about-apply-box .btn-reg:hover { background: #143E2A; color: #fff; }

/* Legal pages (Terms / Privacy) -- last-updated line + tinted intro box, matches mockup */
.awho-richtext .updated { font-size: .85rem; color: #667085; margin-bottom: 1.4rem; }
.awho-richtext .lead-note { background: #f4f8f5; border-left: 4px solid #143E2A; padding: 14px 18px; border-radius: 6px; margin-bottom: 1.5rem; font-size: .96rem; line-height: 1.75; color: #333; }
