
    :root {
      /* ── Brand palette ── */
      --pach-green:       #318629;
      --pach-green-dark:  #1e5219;
      --pach-green-light: #45a63e;
      --pach-green-soft:  #f0f7f2;
      --pach-red:         #ef4444;
      --pach-red-dark:    #dc2626;
      --pach-red-soft:    #fef2f2;
      --pach-gold:        #f9a825;
      --pach-gold-soft:   #fff8e1;
      --pach-gray:        #5a6b56;
      --pach-muted:       #6b7c6f;
      --pach-text:        #1a231d;
      --pach-bg:          #fdfdfd;
      --pach-section-alt: #f7faf8;
      --pach-border:      #e8ede6;
      --pach-dark:        #1f2937;

      /* ── Design-system tokens (cssaudit.md) ── */
      --color-primary:        var(--pach-green);
      --color-primary-dark:   var(--pach-green-dark);
      --color-primary-light:  var(--pach-green-light);
      --color-primary-pale:   var(--pach-green-soft);
      --color-accent:         var(--pach-gold);
      --color-accent-dark:    #e65100;
      --color-white:          #ffffff;
      --color-bg:             var(--pach-bg);
      --color-surface:        #ffffff;
      --color-border:         var(--pach-border);
      --color-border-light:   #f0f0f0;
      --color-text:           var(--pach-text);
      --color-text-secondary: var(--pach-muted);
      --color-text-muted:     #9e9e9e;
      --color-text-inverse:   #ffffff;
      --color-topbar-bg:      var(--pach-green-dark);
      --color-header-bg:      #ffffff;
      --color-nav-active:     var(--pach-green);
      --color-footer-bg:      #1b2a1e;
      --color-footer-text:    #c8e6c9;
      --color-footer-link:    #a5d6a7;
      --color-info:           #1976d2;
      --color-success:        #388e3c;
      --color-warning:        #f57c00;
      --color-error:          var(--pach-red);
      --shadow-sm:            0 1px 3px rgba(0,0,0,.08);
      --shadow-md:            0 4px 12px rgba(0,0,0,.1);
      --shadow-lg:            0 8px 24px rgba(0,0,0,.14);
      --radius-sm:  4px;  --radius-md:   8px;
      --radius-lg:  12px; --radius-xl:   20px; --radius-pill: 999px;
      --space-1:  4px;  --space-2:  8px;  --space-3:  12px; --space-4:  16px;
      --space-5:  20px; --space-6:  24px; --space-8:  32px; --space-10: 40px;
      --space-12: 48px; --space-16: 64px;
      --font-primary: 'Inter', sans-serif;
      --font-nepali:  'Mukta', sans-serif;
      --font-mono:    'Courier New', monospace;
      --text-xs:   0.75rem;  --text-sm:   0.875rem; --text-base: 1rem;
      --text-md:   1.125rem; --text-lg:   1.25rem;  --text-xl:   1.5rem;
      --text-2xl:  2rem;     --text-3xl:  2.5rem;
      --leading-tight: 1.25; --leading-normal: 1.6; --leading-loose: 1.8;
      --weight-normal: 400; --weight-medium: 500; --weight-semibold: 600; --weight-bold: 700;
      --transition-fast:   150ms ease;
      --transition-normal: 250ms ease;
      --transition-slow:   400ms ease;
      --container-max: 1200px; --container-padding: 1.5rem;
      --nav-height: 70px; --topbar-height: 40px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }

    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 9999;
      background: var(--pach-green); color: #fff;
      padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600;
      border-radius: 0 0 6px 6px; text-decoration: none;
    }
    .skip-link:focus { left: 1rem; }

    html { overflow-x: clip; }
    body {
      font-family: var(--font-primary);
      background: var(--color-bg);
      color: var(--color-text);
      overflow-x: clip;
      line-height: 1.7;
    }
    :lang(ne), .lang-np, [lang="ne"], .np {
      font-family: var(--font-nepali);
    }
    .text-success { color: var(--pach-green) !important; }

    .top-bar {
      background: var(--color-topbar-bg);
      color: rgba(255,255,255,0.9);
      font-size: var(--text-xs);
      padding: 9px 0;
    }
    .top-bar i { color: var(--pach-gold); }
    .top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.2s; }
    .top-bar a:hover { color: white; }

    .search-bar {
      background: var(--pach-section-alt);
      padding: 8px 0;
      border-bottom: 1px solid var(--pach-border);
    }
    .search-form {
      max-width: 420px;
      width: 100%;
    }
    .search-input {
      border-radius: 50px 0 0 50px !important;
      border: 1.5px solid var(--pach-border);
      border-right: none;
      padding: 6px 18px;
      font-size: 0.85rem;
      font-weight: 500;
      background: white;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .search-input:focus {
      border-color: var(--pach-green);
      box-shadow: 0 0 0 3px rgba(45,122,58,0.1);
      outline: none;
    }
    .search-btn {
      border-radius: 0 50px 50px 0 !important;
      border: 1.5px solid var(--pach-border);
      border-left: none;
      background: white;
      color: var(--pach-green);
      padding: 6px 16px;
      transition: background 0.2s, color 0.2s;
    }
    .search-btn:hover {
      background: var(--pach-green);
      color: white;
      border-color: var(--pach-green);
    }

    .navbar {
      background: white !important;
      border-bottom: 2px solid var(--pach-green);
      padding: 0.85rem 0 !important;
      z-index: 1050;
      transition: all 0.3s ease;
      width: 100%;
    }
    .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .navbar-brand { display: flex; align-items: center; text-decoration: none; gap: clamp(4px, 0.6vw, 8px); padding: 0 !important; margin: 0 !important; }
    .brand-logo-img {
      height: 70px;
      width: auto;
      max-width: none;
      margin-right: 8px;
      object-fit: contain;
      flex-shrink: 0;
      display: block;
    }
    .brand-text { display: flex; flex-direction: column; min-width: 0; }
    .brand-name {
      font-weight: 800; font-size: clamp(0.9rem, 1.3vw, 1.3rem);
      color: var(--pach-green); line-height: 1.2;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .brand-sub {
      font-size: clamp(0.6rem, 0.65vw, 0.75rem);
      color: var(--pach-muted); font-weight: 500; line-height: 1.3;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .nav-link {
      font-weight: 600; color: var(--pach-dark) !important;
      padding: 0.5rem 0.85rem !important; border-radius: 8px;
      transition: 0.2s; font-size: 0.92rem;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--pach-red) !important; background: rgba(211,47,47,0.05); }
    .btn-cta-nav {
      background: var(--pach-red); color: white; border: none;
      font-weight: 700; font-size: clamp(0.68rem, 0.78vw, 0.85rem);
      padding: clamp(6px, 0.7vw, 10px) clamp(12px, 1.5vw, 22px); border-radius: 50px;
      transition: 0.3s; box-shadow: 0 4px 12px rgba(211,47,47,0.25);
      white-space: nowrap; flex-shrink: 0;
    }
    .btn-cta-nav:hover { background: var(--pach-red-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(211,47,47,0.3); }
    .hero-section { position: relative; background: white; overflow: hidden; }
    .hero-carousel-img { width: 100%; height: 500px; object-fit: cover; }
    @media (max-width: 768px) { .hero-carousel-img { height: 300px; } }
    .carousel-caption-custom {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%); text-align: center;
      color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.5); width: 80%;
    }

    .btn-pach-green {
      background: var(--pach-green); color: white; border: none;
      padding: 12px 28px; font-weight: 600; border-radius: 50px;
      transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(20,82,45,0.2);
    }
    .btn-pach-green:hover { background: var(--pach-green-light); transform: translateY(-2px); color: white; }
    .btn-outline-pach {
      border: 2px solid var(--pach-green); background: transparent;
      color: var(--pach-green); font-weight: 600;
      padding: 10px 26px; border-radius: 50px; transition: 0.3s;
    }
    .btn-outline-pach:hover { background: var(--pach-green-soft); color: var(--pach-green-dark); }

    .chairman-section { padding: 3.5rem 0; background: var(--pach-section-alt); }
    .chairman-card {
      background: white; border-radius: 24px; overflow: hidden;
      border: 1px solid var(--pach-border);
      box-shadow: 0 8px 30px rgba(0,0,0,0.04);
      display: flex; flex-direction: row; min-height: 340px;
    }
    .chairman-img-side {
      flex: 0 0 280px;
      background: linear-gradient(160deg, var(--pach-green-dark), var(--pach-green) 60%, var(--pach-green-light));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 2rem 1.5rem; position: relative;
    }
    .chairman-img-side::before { content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .chairman-img-side::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px; background: rgba(255,255,255,0.03); border-radius: 50%; }
    .chairman-img-circle {
      width: 160px; height: 160px; border-radius: 50%;
      object-fit: cover; border: 4px solid rgba(255,255,255,0.25);
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
      position: relative; z-index: 2; flex-shrink: 0;
    }
    .chairman-img-name { color: white; font-weight: 700; font-size: 1rem; margin-top: 1rem; text-align: center; position: relative; z-index: 2; }
    .chairman-img-post { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 500; text-align: center; position: relative; z-index: 2; }
    .chairman-body { flex: 1; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
    .chairman-label {
      font-size: 0.82rem; font-weight: 700; text-transform: none;
      letter-spacing: 0; font-family: 'Mukta', sans-serif; color: var(--pach-red);
      margin-bottom: 0.6rem; display: inline-flex; align-items: center; gap: 6px;
      background: rgba(211,47,47,0.06); padding: 4px 12px; border-radius: 50px; width: fit-content;
    }
    .chairman-body h3 { font-size: 1.35rem; font-weight: 800; color: var(--pach-dark); margin-bottom: 1rem; }
    .chairman-body p { font-size: 0.93rem; color: var(--pach-muted); line-height: 1.85; margin-bottom: 0; }
    .chairman-signature { margin-top: 1.5rem; font-family: 'Mukta', serif; font-size: 1.2rem; font-weight: 700; color: var(--pach-green); font-style: italic; }
    @media(max-width:991px) {
      .chairman-card { flex-direction: column; min-height: auto; }
      .chairman-img-side { flex: 0 0 auto; padding: 2.5rem 1.5rem 2rem; }
      .chairman-img-circle { width: 130px; height: 130px; }
      .chairman-body { padding: 1.5rem; }
    }
    @media(max-width:575px) {
      .chairman-img-circle { width: 110px; height: 110px; }
      .chairman-body { padding: 1.5rem 1.2rem 1.8rem; }
      .chairman-body h3 { font-size: 1.15rem; }
    }

    .stats-wrapper { margin-top: 40px; position: relative; z-index: 10; }
    .stat-card {
      background: linear-gradient(155deg, #ffffff 55%, rgba(45,122,58,0.04) 100%);
      border-radius: 16px; padding: 1.4rem 1.1rem; text-align: center;
      border: 1px solid var(--pach-border); border-bottom: 3px solid var(--pach-gold);
      box-shadow: 0 6px 20px rgba(0,0,0,0.05); transition: all 0.35s ease; height: 100%;
    }
    .stat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(45,122,58,0.12); border-bottom-color: var(--pach-red); }
    .stat-icon {
      width: 44px; height: 44px; background: var(--pach-green-soft); border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 1.15rem; color: var(--pach-green); margin-bottom: 0.75rem;
    }
    .stat-number { font-size: 1.65rem; font-weight: 800; color: var(--pach-green); line-height: 1.2; margin-bottom: 0.25rem; }
    .stat-label { font-size: 0.8rem; color: var(--pach-red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

    /* ── Page Hero ── */
    .page-hero { position:relative; overflow:hidden; display:flex; align-items:center; min-height:270px; }

    /* Slow-breathing green luminance — top-right */
    .page-hero::before {
      content:''; position:absolute; top:-100px; right:-120px;
      width:480px; height:480px; border-radius:50%; pointer-events:none; z-index:1;
      background:radial-gradient(circle, rgba(45,122,58,0.20) 0%, transparent 62%);
      animation:heroBreath 11s ease-in-out infinite alternate;
    }
    /* Warm amber bloom — bottom centre */
    .page-hero::after {
      content:''; position:absolute; bottom:-90px; left:28%;
      width:340px; height:340px; border-radius:50%; pointer-events:none; z-index:1;
      background:radial-gradient(circle, rgba(249,168,37,0.07) 0%, transparent 68%);
      animation:heroBreath 15s ease-in-out infinite alternate-reverse;
    }
    @keyframes heroBreath {
      from { transform:scale(1);   opacity:0.85; }
      to   { transform:scale(1.12); opacity:1;   }
    }

    /* Multi-layer atmospheric gradient — warm-dark, NOT cold green */
    .page-hero-gradient {
      position:absolute; inset:0;
      background:
        radial-gradient(ellipse 90% 160% at 0% 60%,  #050e07 0%, transparent 55%),
        radial-gradient(ellipse 60% 90%  at 85% 0%,  rgba(14,52,28,0.55) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60%  at 50% 110%, rgba(249,168,37,0.055) 0%, transparent 60%),
        linear-gradient(160deg, #050e07 0%, #0d2416 40%, #163b22 75%, #1a4a2a 100%);
    }
    /* SVG grain — organic warmth, kills digital harshness */
    .page-hero-gradient::before {
      content:''; position:absolute; inset:0; opacity:0.032;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size:200px 200px;
    }
    /* Dot grid — depth layer */
    .page-hero-gradient::after {
      content:''; position:absolute; inset:0;
      background-image:radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px);
      background-size:24px 24px;
    }

    .page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
    .page-hero-overlay {
      position:absolute; inset:0;
      background:linear-gradient(to right,
        rgba(5,14,7,0.97) 0%,
        rgba(5,14,7,0.82) 35%,
        rgba(5,14,7,0.50) 65%,
        rgba(5,14,7,0.10) 100%);
    }

    /* Centred gold line — fades at edges, soft glow */
    .page-hero-stripe {
      position:absolute; bottom:0; left:0; right:0; height:3px; z-index:3;
      background:linear-gradient(to right,
        transparent 0%,
        rgba(249,168,37,0.35) 12%,
        var(--pach-gold) 35%,
        rgba(249,168,37,0.90) 50%,
        var(--pach-gold) 65%,
        rgba(249,168,37,0.35) 88%,
        transparent 100%);
      box-shadow:0 0 10px rgba(249,168,37,0.22), 0 -1px 6px rgba(249,168,37,0.10);
    }

    .page-hero-content {
      position:relative; z-index:2;
      animation:heroIn 0.80s cubic-bezier(0.22,1,0.36,1) both;
    }
    @keyframes heroIn {
      from { opacity:0; transform:translateY(20px); }
      to   { opacity:1; transform:translateY(0);    }
    }

    /* Badge label — matches pacharati.com.np hero section badge */
    .page-hero-overline {
      color:var(--pach-green-light); font-size:0.74rem; letter-spacing:0.14em;
      text-transform:uppercase; display:inline-flex; align-items:center; gap:8px;
      margin-bottom:0.70rem; font-weight:600;
      background:rgba(45,122,58,0.18); padding:4px 12px; border-radius:50px;
    }
    .page-hero-overline::before {
      content:''; display:inline-block; width:20px; height:1.5px;
      background:var(--pach-green-light); border-radius:2px; flex-shrink:0; opacity:0.8;
    }

    /* Warm ivory — NOT pure white. Single biggest comfort improvement. */
    .page-hero-title {
      color:#ede8dc !important; max-width:720px;
      text-decoration:underline;
      text-decoration-color:rgba(249,168,37,0.50);
      text-underline-offset:10px; text-decoration-thickness:2px; text-decoration-skip-ink:none;
      text-shadow:0 1px 14px rgba(0,0,0,0.28);
    }
    /* Same warm cream, lower opacity — readable but not competing with title */
    .page-hero-intro { color:rgba(237,232,220,0.74) !important; max-width:580px; font-weight:400; line-height:1.75; }

    .section-padding { padding: 2rem 0; }
    @media(max-width:768px) { .section-padding { padding: 1.5rem 0; } }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header .overline {
      display: inline-block; font-size: 0.75rem; font-weight: 700;
      color: var(--pach-red); text-transform: uppercase;
      letter-spacing: 0.12em; margin-bottom: 0.8rem;
      padding: 5px 14px; background: rgba(211,47,47,0.08); border-radius: 50px;
    }
    /* Nepali overlines: no letter-spacing (breaks Devanagari conjuncts), explicit font */
    .section-header .overline.np {
      letter-spacing: 0; text-transform: none;
      font-family: 'Mukta', sans-serif; font-size: 0.82rem;
    }
    /* Standalone overline for use outside section-header (badges, labels) */
    .overline {
      display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 700;
      color: var(--pach-red); text-transform: uppercase;
      letter-spacing: 0.12em; margin-bottom: 0.8rem;
      padding: 5px 14px; background: rgba(211,47,47,0.08); border-radius: 50px;
    }
    .overline.np {
      letter-spacing: 0 !important; text-transform: none !important;
      font-family: 'Mukta', sans-serif !important; font-size: 0.82rem;
    }
    .overline-green {
      background: var(--pach-green-soft) !important; color: var(--pach-green) !important;
      padding: 8px 16px !important; font-size: 0.85rem !important; font-weight: 600 !important;
    }
    .pach-hero-badge {
      background: var(--pach-green-soft); padding: 8px 16px; border-radius: 50px;
      display: inline-flex; align-items: center;
    }
    .pach-hero-badge span {
      font-size: 0.85rem; font-weight: 600; color: var(--pach-green);
      font-family: var(--font-nepali); letter-spacing: 0; line-height: 1.5;
    }
.section-title {
      font-size: clamp(1.7rem, 4vw, 2.5rem);
      font-weight: 800; line-height: 1.2; color: var(--pach-dark); margin-bottom: 0.8rem;
    }
    .section-title span { color: var(--pach-red); }
    .section-desc { font-size: 1.05rem; color: var(--pach-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
    .heading-hero { font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; font-size: clamp(2rem, 5.5vw, 3.2rem); }
    .lead-custom { font-size: clamp(0.95rem, 2.5vw, 1.1rem); color: var(--pach-muted); }

    .btn-see-all {
      background: transparent; color: var(--pach-green);
      border: 2px solid var(--pach-green);
      font-weight: 700; font-size: 0.88rem;
      padding: 10px 28px; border-radius: 50px;
      transition: 0.3s; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-see-all:hover {
      background: var(--pach-green); color: white;
      transform: translateY(-2px); box-shadow: 0 6px 18px rgba(20,82,45,0.2);
    }
    .btn-see-all.active {
      background: var(--pach-green); color: white; border-color: var(--pach-green);
    }

    .news-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; overflow: hidden;
      transition: all 0.35s ease; height: 100%;
      display: flex; flex-direction: column;
    }
    .news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(20,82,45,0.1); border-color: transparent; }
    .news-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
    .news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .news-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; flex-wrap: wrap; }
    .news-card-date { font-size: 0.75rem; font-weight: 600; color: var(--pach-muted); display: inline-flex; align-items: center; gap: 4px; }
    .news-card-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 50px; background: var(--pach-green-soft); color: var(--pach-green); }
    .news-card-tag.red { background: rgba(211,47,47,0.08); color: var(--pach-red); }
    .news-card-tag.gold { background: var(--pach-gold-soft); color: #b8860b; }
    .news-card-title {
      font-size: 1.05rem; font-weight: 700; color: var(--pach-dark);
      margin-bottom: 0.5rem; line-height: 1.4;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-excerpt {
      font-size: 0.88rem; color: var(--pach-muted); line-height: 1.7;
      margin-bottom: 1rem; flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-link { color: var(--pach-green); font-weight: 600; font-size: 0.85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: 0.2s; margin-top: auto; }
    .news-card-link:hover { color: var(--pach-red); gap: 9px; }

    .notice-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; padding: 1.8rem;
      transition: all 0.35s ease; height: 100%;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .notice-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--pach-red); transition: height 0.4s ease; }
    .notice-card:hover::before { height: 100%; }
    .notice-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(0,0,0,0.06); border-color: transparent; }
    .notice-icon-wrap {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--pach-red-soft); display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--pach-red); margin-bottom: 1rem; flex-shrink: 0; transition: 0.3s;
    }
    .notice-card:hover .notice-icon-wrap { background: var(--pach-red); color: white; }
    .notice-date { font-size: 0.72rem; font-weight: 600; color: var(--pach-muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 5px; }
    .notice-title {
      font-size: 1rem; font-weight: 700; color: var(--pach-dark);
      margin-bottom: 0.6rem; line-height: 1.4;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .notice-excerpt {
      font-size: 0.85rem; color: var(--pach-muted); line-height: 1.7; flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .notice-link { color: var(--pach-red); font-weight: 600; font-size: 0.82rem; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: 0.2s; margin-top: 1rem; }
    .notice-link:hover { gap: 9px; color: var(--pach-green-dark); }

    /* ===== GALLERY GRID — FIXED ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: minmax(180px, auto);
      gap: 1rem;
    }
    .gallery-item {
      border-radius: 16px; overflow: hidden; position: relative; cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,26,15,0.5) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-item .gallery-overlay {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem;
      z-index: 2; transform: translateY(10px); opacity: 0; transition: all 0.3s ease;
    }
    .gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
    .gallery-overlay span { color: white; font-size: 0.85rem; font-weight: 600; }
    .gallery-overlay small { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
    .gallery-item.span-2-col { grid-column: span 2; }
    .gallery-item.span-2-row { grid-row: span 2; }
    @media(max-width:991px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(160px, auto); }
      .gallery-item.span-2-col { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; }
    }
    @media(max-width:575px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(120px, auto); gap: 0.6rem; }
      .gallery-item.span-2-col { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; }
      .gallery-item { border-radius: 8px; }
      .gallery-overlay span { font-size: 0.68rem; }
      .gallery-overlay small { font-size: 0.55rem; }
    }

    .service-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 24px; padding: 2rem;
      height: 100%; display: flex; flex-direction: column;
      transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      position: relative; overflow: hidden;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--pach-green), var(--pach-green-light));
      transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(20,82,45,0.1); border-color: transparent; }
    .service-icon-box {
      width: 64px; height: 64px; background: var(--pach-green-soft);
      border-radius: 16px; display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; color: var(--pach-green); margin-bottom: 1.5rem; transition: 0.3s;
    }
    .service-card:hover .service-icon-box { background: var(--pach-green); color: white; }
    .service-card h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--pach-dark); }
    .service-card p { color: var(--pach-muted); font-size: 0.95rem; flex-grow: 1; line-height: 1.7; }
    .service-link { color: var(--pach-green); font-weight: 600; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: 0.2s; margin-top: auto; }
    .service-link:hover { color: var(--pach-red); gap: 10px; }

    .team-section { padding: 5rem 0; background: white; }
    .team-tree { display: flex; flex-direction: column; align-items: center; }
    .tree-card-top {
      background: linear-gradient(135deg, var(--pach-green), var(--pach-green-light));
      border-radius: 18px; padding: 1.5rem 2rem;
      display: flex; align-items: center; gap: 1.2rem;
      box-shadow: 0 8px 25px rgba(45,122,58,0.2);
      position: relative; z-index: 2; min-width: 300px; transition: 0.3s;
    }
    .tree-card-top:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(45,122,58,0.28); }
    .tree-card-top img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.3); flex-shrink: 0; }
    .tree-card-top .tree-name { font-weight: 800; font-size: 1.05rem; color: white; margin-bottom: 0.15rem; }
    .tree-card-top .tree-post { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.04em; }
    .tree-vline { width: 2px; height: 32px; background: var(--pach-border); }
    .tree-hline { height: 2px; background: var(--pach-border); width: 100%; max-width: 720px; }
    .tree-bottom-row { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; width: 100%; max-width: 820px; }
    .tree-branch { display: flex; flex-direction: column; align-items: center; }
    .tree-card-white {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 18px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: all 0.35s ease; min-width: 220px; text-align: left;
    }
    .tree-card-white:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(0,0,0,0.08); border-color: var(--pach-green); }
    .tree-card-white img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pach-green-soft); flex-shrink: 0; }
    .tree-card-white .tree-name { font-weight: 800; font-size: 0.95rem; color: var(--pach-dark); margin-bottom: 0.1rem; }
    .tree-card-white .tree-post { font-size: 0.72rem; font-weight: 600; color: var(--pach-red); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
    .tree-card-white .tree-phone { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--pach-green); text-decoration: none; transition: 0.2s; }
    .tree-card-white .tree-phone:hover { color: var(--pach-red); }
    @media(max-width:575px) {
      .tree-card-top { flex-direction: column; text-align: center; min-width: 240px; padding: 1.2rem; }
      .tree-card-white { flex-direction: column; text-align: center; min-width: 220px; padding: 1.2rem; }
    }

    .remit-section { padding: 3.5rem 0; background: var(--pach-section-alt); overflow: hidden; }
    .remit-track-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .remit-track {
      display: flex; gap: 2.5rem; width: max-content;
      animation: remitScroll 22s linear infinite;
    }
    .remit-track:hover { animation-play-state: paused; }
    @keyframes remitScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .remit-card {
      background: white; padding: 1.3rem 1.8rem; border-radius: 14px;
      border: 1px solid var(--pach-border); display: flex; align-items: center; gap: 1rem;
      white-space: nowrap; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      cursor: default;
    }
    .remit-card:hover { border-color: var(--pach-green); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
    .remit-card i { font-size: 1.6rem; color: var(--pach-green); }
    .remit-card h6 { font-weight: 700; font-size: 0.92rem; margin-bottom: 0; color: var(--pach-dark); }
    .remit-card small { color: var(--pach-muted); font-size: 0.78rem; }
    .remit-nav-btn {
      flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
      border: 1.5px solid var(--pach-border); background: white;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: 0.25s; color: var(--pach-green);
    }
    .remit-nav-btn:hover { background: var(--pach-green); color: white; border-color: var(--pach-green); }

    .impact-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; padding: 2.5rem; height: 100%; transition: 0.3s;
    }
    .impact-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
    .impact-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
    .testimonial-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; padding: 2.2rem; height: 100%; transition: 0.3s; position: relative;
    }
    .testimonial-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-color: var(--pach-green-soft); }
    .testimonial-card .quote-icon { font-size: 3rem; color: var(--pach-green-soft); position: absolute; top: 1.2rem; right: 1.5rem; line-height: 1; }
    .testimonial-text { font-size: 1.05rem; font-style: italic; color: var(--pach-text); line-height: 1.8; margin-bottom: 1.5rem; }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pach-green-soft); }
    .progress-custom { height: 6px; border-radius: 6px; background: var(--pach-border); }
    .progress-custom .progress-bar { border-radius: 6px; }

    .contact-info-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem; border-radius: 16px; transition: 0.3s; margin-bottom: 0.8rem;
    }
    .contact-info-item:hover { background: var(--pach-section-alt); }
    .contact-icon-box {
      width: 52px; height: 52px; border-radius: 50%; background: var(--pach-green-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--pach-green); flex-shrink: 0;
    }
    .contact-info-item h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
    .contact-info-item p { font-size: 0.9rem; color: var(--pach-muted); margin: 0; }
    .map-container { height: 420px; border-radius: 20px; overflow: hidden; border: 1px solid var(--pach-border); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
    @media(max-width:768px) { .map-container { height: 300px; } }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* ── Pagination ── */
    .pagination { gap: 4px; }
    .page-link { border-radius: 50% !important; border: 1px solid var(--pach-border); color: var(--pach-green); font-weight: 600; font-size: 0.88rem; width: 38px; height: 38px; padding: 0; display: flex; align-items: center; justify-content: center; transition: all 0.18s; }
    .page-link:hover { background: var(--pach-green-soft); color: var(--pach-green); border-color: var(--pach-green); }
    .page-item.active .page-link { background: var(--pach-green); border-color: var(--pach-green); color: #fff; }
    .page-item.disabled .page-link { color: var(--pach-muted); border-color: var(--pach-border); background: transparent; }

    .app-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
    .app-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: white; }
    .app-table thead tr { background: var(--pach-green); }
    .app-table thead th { padding: 0.9rem 1.2rem; color: white; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; border: none; text-align: left; white-space: nowrap; }
    .app-table tbody tr { border-bottom: 1px solid var(--pach-border); transition: background 0.15s; }
    .app-table tbody tr:nth-child(even) { background: var(--pach-section-alt); }
    .app-table tbody tr:last-child { border-bottom: none; }
    .app-table tbody tr:hover { background: rgba(45,122,58,0.05); }
    .app-table tbody td { padding: 0.85rem 1.2rem; color: var(--pach-muted); border: none; vertical-align: top; line-height: 1.65; }
    .app-table tbody th[scope="row"] { padding: 0.85rem 1.2rem; font-weight: 600; color: var(--pach-dark); background: var(--pach-green-soft); white-space: nowrap; border: none; border-right: 2px solid var(--pach-border); }
    .rich-text table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); margin: 1.5rem 0; }
    .rich-text table thead tr { background: var(--pach-green); }
    .rich-text table thead th { padding: 0.9rem 1.2rem; color: white; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; border: none; text-align: left; }
    .rich-text table tbody tr { border-bottom: 1px solid var(--pach-border); transition: background 0.15s; }
    .rich-text table tbody tr:nth-child(even) { background: var(--pach-section-alt); }
    .rich-text table tbody tr:last-child { border-bottom: none; }
    .rich-text table tbody tr:hover { background: rgba(45,122,58,0.05); }
    .rich-text table tbody td { padding: 0.85rem 1.2rem; color: var(--pach-muted); border: none; vertical-align: top; line-height: 1.65; }

    .cta-block {
      background: linear-gradient(135deg, var(--pach-green), var(--pach-green-light) 50%, var(--pach-green));
      background-size: 200% 200%; animation: gradientShift 6s ease infinite;
      border-radius: 28px; padding: 4rem 2rem; color: white; position: relative; overflow: hidden;
      clip-path: none !important; transform: none !important;
    }
    @keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
    .cta-block::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.06); border-radius: 50%; }
    .cta-block::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 180px; height: 180px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .btn-cta-light {
      background: white; color: var(--pach-green); border: none; font-weight: 700;
      padding: 14px 34px; border-radius: 50px; font-size: 0.95rem;
      transition: 0.3s; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .btn-cta-light:hover { background: white !important; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); color: var(--pach-green) !important; }
    .btn-cta-outline-light {
      border: 2px solid rgba(255,255,255,0.5) !important; color: white !important; font-weight: 600;
      padding: 12px 30px; border-radius: 50px; font-size: 0.95rem;
      transition: 0.3s; background: transparent;
    }
    .btn-cta-outline-light:hover { border-color: white !important; background: rgba(255,255,255,0.1) !important; color: white !important; transform: translateY(-3px); }

    .footer-main { background: rgb(243, 242, 242); color: #a8b8ad; padding: 5rem 0 0; }
    .footer-brand-name { font-size: 1.35rem; font-weight: 800; color: var(--pach-green); display: flex; align-items: center; gap: 10px; line-height: 1.3; }
    .footer-logo-img { height: clamp(24px, 2.8vw, 40px); width: auto; max-width: 100px; object-fit: contain; flex-shrink: 0; }
    .footer-desc { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; color: var(--pach-muted); }
    .footer-title {
      font-size: 1rem; font-weight: 700; color: var(--pach-gold); margin-bottom: 1.5rem;
      padding-bottom: 0.8rem; border-bottom: 3px solid var(--pach-red); display: inline-block;
      font-family: 'Mukta', sans-serif; letter-spacing: 0;
    }
    .footer-link {
      color: var(--pach-muted); text-decoration: none; display: flex; align-items: center; gap: 8px;
      margin-bottom: 0.7rem; font-size: 0.88rem; transition: 0.25s; padding: 2px 0;
    }
    .footer-link:hover { color: var(--pach-gold); transform: translateX(6px); }
    .footer-link i { font-size: 0.7rem; color: var(--pach-gold); opacity: 0.5; transition: 0.25s; }
    .footer-link:hover i { opacity: 1; }
    .footer-social {
      width: 42px; height: 42px; background: rgba(0,0,0,0.05);
      border-radius: 12px; border: 1px solid rgba(0,0,0,0.12);
      display: inline-flex; align-items: center; justify-content: center;
      color: #6b7c6f; font-size: 1rem; transition: var(--transition-normal); text-decoration: none;
      position: relative; overflow: visible;
    }
    .footer-social .social-tooltip {
      position: absolute; bottom: calc(100% + 10px); left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: var(--pach-dark); color: white; font-size: 0.72rem; font-weight: 600;
      padding: 5px 12px; border-radius: 8px; white-space: nowrap;
      opacity: 0; visibility: hidden; transition: all 0.25s ease;
      pointer-events: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 10;
    }
    .footer-social .social-tooltip::after {
      content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      border: 5px solid transparent; border-top-color: var(--pach-dark);
    }
    .footer-social:hover .social-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .footer-social::before {
      content: ''; position: absolute; inset: -4px; border-radius: 16px;
      background: transparent; transition: 0.3s; z-index: -1;
    }
    .footer-social:hover::before { background: rgba(249,168,37,0.15); }
    .footer-social:hover { background: var(--pach-red); color: white; border-color: transparent; transform: translateY(-3px); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 0.85rem; }
    .footer-contact-item i { font-size: 1.25rem; color: var(--pach-gold); margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item p { font-size: 0.88rem; color: #8a9a8f; margin: 0; line-height: 1.55; font-family: 'Mukta', sans-serif; }
    .footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); padding: 1.5rem 0; margin-top: 1rem; }

    .scroll-top {
      position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
      background: var(--pach-green); color: white; border: none; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
      z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; cursor: pointer;
      box-shadow: 0 6px 18px rgba(45,122,58,0.3);
    }
    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover { background: var(--pach-red); transform: translateY(-3px); }

    .text-green { color: var(--pach-green) !important; }
    .text-red { color: var(--pach-red) !important; }
    .text-gold { color: var(--pach-gold) !important; }
    .bg-green-soft { background: var(--pach-green-soft) !important; }
    .fw-800 { font-weight: 800 !important; }


    /* ===== HIGH ZOOM RESPONSIVENESS (500%) ===== */
    @media (max-width: 600px) {
      .navbar { padding: 0.5rem 0 !important; }
      .brand-sub { display: none; }
      .brand-logo-img { height: 40px; }
      .brand-name { font-size: 0.85rem; }
      .nav-link { padding: 0.4rem 0.6rem !important; font-size: 0.9rem; }
      .btn-cta-nav { font-size: 0.8rem; padding: 5px 10px; }
      .btn-cta-nav .bi { display: none; }

      .hero-carousel-img { height: 200px; border-radius: 0.8rem; }
      .heading-hero { font-size: 1.2rem; }
      .lead-custom { font-size: 0.78rem; }

      .chairman-card { flex-direction: column; }
      .chairman-img-side { flex: 0 0 auto; padding: 1.5rem 1rem 1.2rem; }
      .chairman-img-circle { width: 80px; height: 80px; border-width: 3px; }
      .chairman-img-name { font-size: 0.78rem; margin-top: 0.6rem; }
      .chairman-img-post { font-size: 0.65rem; }
      .chairman-body { padding: 1rem; }
      .chairman-label { font-size: 0.6rem; padding: 3px 8px; }
      .chairman-body h3 { font-size: 0.9rem; margin-bottom: 0.6rem; }
      .chairman-body p { font-size: 0.75rem; line-height: 1.6; }
      .chairman-signature { font-size: 0.9rem; margin-top: 0.8rem; }

      .stats-wrapper { margin-top: 24px; }
      .stat-card { padding: 0.9rem 0.7rem; border-radius: 12px; border-bottom-width: 3px; }
      .stat-icon { width: 34px; height: 34px; border-radius: 9px; font-size: 0.95rem; margin-bottom: 0.4rem; }
      .stat-number { font-size: 1.2rem; }
      .stat-label { font-size: 0.6rem; }

      .section-padding { padding: 2rem 0; }
      .section-header { margin-bottom: 1.5rem; }
      .section-title { font-size: 1rem; margin-bottom: 0.4rem; }
      .section-desc { font-size: 0.75rem; }

      .service-card { padding: 1.2rem; border-radius: 16px; }
      .service-icon-box { width: 42px; height: 42px; border-radius: 12px; font-size: 1.2rem; margin-bottom: 0.8rem; }
      .service-card h4 { font-size: 0.85rem; margin-bottom: 0.4rem; }
      .service-card p { font-size: 0.72rem; }
      .service-link { font-size: 0.7rem; }

      .tree-card-top { padding: 0.8rem 1rem; min-width: auto; border-radius: 14px; }
      .tree-card-top img { width: 40px; height: 40px; }
      .tree-card-top .tree-name { font-size: 0.72rem; }
      .tree-card-top .tree-post { font-size: 0.6rem; }
      .tree-vline { height: 20px; }
      .tree-hline { max-width: 90%; }
      .tree-card-white { padding: 0.8rem; min-width: auto; border-radius: 14px; }
      .tree-card-white img { width: 36px; height: 36px; }
      .tree-card-white .tree-name { font-size: 0.7rem; }
      .tree-card-white .tree-post { font-size: 0.58rem; margin-bottom: 0.3rem; }
      .tree-card-white .tree-phone { font-size: 0.62rem; }
      .tree-bottom-row { gap: 0.8rem; }

      .news-card-img { height: 120px; }
      .news-card-body { padding: 0.8rem; }
      .news-card-date { font-size: 0.6rem; }
      .news-card-tag { font-size: 0.55rem; padding: 2px 6px; }
      .news-card-title { font-size: 0.78rem; margin-bottom: 0.3rem; }
      .news-card-excerpt { font-size: 0.68rem; -webkit-line-clamp: 2; margin-bottom: 0.5rem; }
      .news-card-link { font-size: 0.65rem; }

      .notice-card { padding: 1rem; border-radius: 14px; }
      .notice-icon-wrap { width: 36px; height: 36px; border-radius: 10px; font-size: 1rem; margin-bottom: 0.6rem; }
      .notice-date { font-size: 0.6rem; margin-bottom: 0.3rem; }
      .notice-title { font-size: 0.78rem; margin-bottom: 0.3rem; }
      .notice-excerpt { font-size: 0.68rem; -webkit-line-clamp: 2; }
      .notice-link { font-size: 0.62rem; margin-top: 0.6rem; }

      .gallery-grid { gap: 0.4rem; }
      .gallery-item { border-radius: 8px; }
      .gallery-overlay span { font-size: 0.68rem; }
      .gallery-overlay small { font-size: 0.55rem; }

      .remit-card { padding: 0.8rem 1rem; border-radius: 10px; gap: 0.6rem; }
      .remit-card i { font-size: 1.1rem; }
      .remit-card h6 { font-size: 0.72rem; }
      .remit-card small { font-size: 0.6rem; }

      .impact-card { padding: 1.2rem; border-radius: 14px; }
      .impact-icon { width: 40px; height: 40px; border-radius: 10px; font-size: 1.1rem; }
      .impact-card h4 { font-size: 0.9rem; margin-bottom: 0.6rem; }
      .impact-card p { font-size: 0.72rem; margin-bottom: 0.6rem; }
      .fw-800.text-green.fs-4, .fw-800.text-red.fs-4, .fw-800.text-gold.fs-4 { font-size: 0.95rem !important; }
      .text-muted.fw-600 { font-size: 0.58rem !important; }

      .testimonial-card { padding: 1.2rem; border-radius: 14px; }
      .testimonial-card .quote-icon { font-size: 1.8rem; top: 0.8rem; right: 0.8rem; }
      .testimonial-text { font-size: 0.75rem; margin-bottom: 0.8rem; }
      .testimonial-author img { width: 32px; height: 32px; }
      .testimonial-author .fw-700 { font-size: 0.75rem; }
      .testimonial-author small { font-size: 0.62rem; }

      .contact-info-item { padding: 0.8rem; gap: 0.6rem; }
      .contact-icon-box { width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; }
      .contact-info-item h6 { font-size: 0.72rem; }
      .contact-info-item p { font-size: 0.72rem; }
      .map-container { height: 200px; border-radius: 14px; }

      .cta-block { padding: 2rem 1rem; border-radius: 18px; }
      .cta-block h2 { font-size: 0.95rem !important; margin-bottom: 0.6rem; }
      .cta-block p { font-size: 0.72rem; margin-bottom: 1rem; }
      .btn-cta-light, .btn-cta-outline-light { font-size: 0.72rem; padding: 8px 16px; }

      .btn-see-all { font-size: 0.7rem; padding: 7px 18px; }

      .footer-main { padding: 1.5rem 0 0; }
      .footer-brand-name { font-size: 1rem; gap: 6px; }
      .footer-desc { font-size: 0.8rem; margin-top: 0.6rem; }
      .footer-title { font-size: 0.875rem; margin-bottom: 0.8rem; padding-bottom: 0.5rem; }
      .footer-link { font-size: 0.8rem; margin-bottom: 0.4rem; }
      .footer-social { width: 32px; height: 32px; border-radius: 8px; font-size: 0.8rem; }
      .footer-social .social-tooltip { font-size: 0.65rem; padding: 3px 8px; }
      .footer-bottom { margin-top: 1rem; padding: 1rem 0; }
      .footer-bottom small { font-size: 0.72rem; }

      .scroll-top { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 10px; bottom: 16px; right: 16px; }

      .btn-pach-green, .btn-outline-pach { font-size: 0.72rem; padding: 8px 16px; }
    }

    /* ── Focus rings (accessibility) ── */
    :focus-visible {
      outline: 2px solid var(--pach-green);
      outline-offset: 2px;
    }
    a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
    input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--pach-green);
      outline-offset: 2px;
      box-shadow: 0 0 0 4px rgba(45,122,58,0.12);
    }

    /* ── Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ── Global gallery lightbox (used by gallery_page.html) ── */
    .gallery-lightbox {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(10,26,15,0.96); backdrop-filter: blur(4px);
      align-items: center; justify-content: center;
    }
    .gallery-lightbox.open { display: flex; }
    .gallery-lightbox img {
      max-width: 92vw; max-height: 88vh;
      object-fit: contain; border-radius: 8px;
      box-shadow: 0 0 80px rgba(0,0,0,0.6);
    }
    .gallery-lightbox-close {
      position: absolute; top: 1.25rem; right: 1.25rem;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: #fff; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, transform 0.2s;
    }
    .gallery-lightbox-close:hover { background: rgba(211,47,47,0.7); transform: rotate(90deg); }

.image-zoom-wrapper {
    position: relative;
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    overflow: hidden; /* Keeps the scaled image inside the boundaries */
    border-radius: 8px; /* Optional: keeps corners consistent */
}

.zoomable-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Slightly longer transition for better feel */
    transform-origin: center center;
    cursor: zoom-in;
}

.image-zoom-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
    
    /* Hide by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-zoom-wrapper:hover .image-zoom-controls {
    opacity: 1;
}
.zoom-btn{
    width:36px;
    height:36px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.zoom-btn:hover{
    background:rgba(0,0,0,.9);
}
.o-card .o-img-wrapper {
    width: 100%;
    height: 220px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; 
    overflow: hidden;
}
.o-card .o-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}
