/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
    :root {
      --or: #E8610A;
      --orv: #FF7B20;
      --ors: #FFA04D;
      --orp: #FFF0E6;
      --deep: #1A0A00;
      --ink: #2C1400;
      --txt: #3D2000;
      --mut: #7A5C40;
      --bdr: #F0D5C0;
      --crm: #FFFAF5;

      --teal: #0A7B6E;
      --blue: #1A5FAB;
      --pur: #6B3FA0;
      --grn: #2D7A2D;
      --red: #C0392B;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: clamp(13px, 0.6vw + 9px, 22px);
      /* Fully adaptive fluid typography */
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--crm);
      color: var(--txt);
      overflow-x: hidden;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    img {
      display: block;
      max-width: 100%
    }

    a {
      color: inherit;
      text-decoration: none
    }

    /* scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(26, 10, 0, 0.05);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--or);
      border-radius: 5px;
      border: 2px solid var(--crm);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--orv);
    }

    /* ─────────────────────────────────────────
   REUSABLE HELPERS
───────────────────────────────────────── */
    .wrap {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      padding: 0 5%
    }

    .eyebrow {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      font-size: .72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--or);
      text-align: center;
      margin: 0 auto 14px auto;
    }

    .eyebrow::before {
      content: '';
      width: 40px;
      height: 2px;
      background: var(--or);
      border-radius: 2px;
      display: inline-block
    }

    .eyebrow::after {
      content: '';
      width: 40px;
      height: 2px;
      background: var(--or);
      border-radius: 2px;
      display: inline-block
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.85rem, 3.5vw, 2.85rem);
      font-weight: 900;
      line-height: 1.18;
      color: var(--ink);
      text-align: center;
      margin: 0 auto 14px auto;
    }

    .sec-title span {
      color: var(--or)
    }

    .sec-sub {
      color: var(--mut);
      font-size: .97rem;
      line-height: 1.78;
      max-width: 540px;
      text-align: center;
      margin: 0 auto;
    }

    .btn-main {
      display: inline-block;
      background: linear-gradient(135deg, var(--or), #D95A00);
      color: #fff;
      padding: 13px 28px;
      border-radius: 11px;
      font-weight: 800;
      font-size: .9rem;
      transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 6px 20px rgba(232, 97, 10, .35);
      border: none;
      cursor: pointer;
    }

    .btn-main:hover {
      background: linear-gradient(135deg, var(--orv), var(--or));
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 28px rgba(232, 97, 10, .48)
    }

    .btn-ghost {
      display: inline-block;
      border: 1.5px solid rgba(255, 255, 255, .4);
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
      padding: 13px 28px;
      border-radius: 11px;
      font-weight: 800;
      font-size: .9rem;
      transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
      backdrop-filter: blur(4px);
    }

    .btn-ghost:hover {
      border-color: var(--ors);
      background: rgba(232, 97, 10, .25);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 24px rgba(232, 97, 10, .3)
    }

    /* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
    #topnav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 900;
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 5%;
      /* Increased vertical padding for spaciousness */
      background: rgba(255, 250, 245, .96);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--bdr);
      box-shadow: 0 2px 18px rgba(232, 97, 10, .07);
      transition: background .3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 25px
    }

    /* ► PUT YOUR REAL LOGO IMAGE HERE:
   Replace the SVG block below with:
   <img src="your-logo.png" alt="Athithya Foundation" style="height:46px;width:auto"> */
    .logo-wrap {
      width: 85px;
      height: 85px;
      border-radius: 20px;
      background: var(--orp);
      border: none;
      /* Removed border */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .logo-svg-nav {
      width: 80px;
      height: 80px
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      /* Exact hardcoded px to lock in header text scaling safely (Decreased to look less awkward) */
      font-weight: 900;
      color: var(--or);
      line-height: 1.15
    }

    .header-contact {
      display: flex !important;
      align-items: center;
      gap: 6px;
      white-space: nowrap !important;
      flex-shrink: 0;
    }

    .header-contact a {
      color: var(--or);
      text-decoration: none;
      font-weight: 700;
      font-size: clamp(0.7rem, 3vw, 0.9rem);
      /* Smoothly shrinks on tiny phones */
      white-space: nowrap !important;
      display: inline-block;
    }

    .brand-sub {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--mut);
      font-weight: 700;
      margin-top: 1px
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none
    }


    .nav-links a {
      font-size: .86rem;
      font-weight: 600;
      color: var(--txt);
      transition: color .2s;
      position: relative;
      padding-bottom: 2px
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--or);
      transition: width .25s
    }

    .nav-links a:hover {
      color: var(--or)
    }

    .nav-links a:hover::after {
      width: 100%
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 5px
    }

    /* Social icons in nav */
    .nav-socials {
      display: flex;
      gap: 10px;
      margin-left: 20px;
      /* Shifted slightly to the right */
      transition: transform 0.3s ease;
    }

    .nav-phone {
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-phone:hover {
      transform: scale(1.1) translateY(-2px);
      color: var(--orv) !important;
    }

    .nav-phone:active {
      transform: scale(0.95);
    }

    .nav-soc {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--orp);
      border: 1px solid var(--bdr);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }

    .nav-soc:hover {
      background: var(--or);
      border-color: var(--or)
    }

    .nav-soc:hover svg path {
      fill: #fff
    }

    .nav-soc svg {
      width: 16px;
      height: 16px
    }

    .nav-cta {
      background: var(--or);
      color: #fff;
      border: none;
      padding: 10px 22px;
      border-radius: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .85rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .2s;
      box-shadow: 0 4px 16px rgba(232, 97, 10, .32);
    }

    .nav-cta:hover {
      background: var(--orv);
      transform: translateY(-1px)
    }

    /* Mobile menu & hamburger removed in favor of single Quick Sidebar */

    /* ─────────────────────────────────────────
   QUICK SIDEBAR
───────────────────────────────────────── */
    .qs-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mut);
      background: #fff;
      text-decoration: none;
      font-weight: 700;
      border: 1.5px solid transparent;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .qs-link svg {
      width: 26px !important;
      height: 26px !important;
    }

    .qs-link:hover {
      background: linear-gradient(135deg, var(--orp), #fff);
      color: var(--or);
      border-color: var(--ors);
      transform: translateX(4px) scale(1.08);
      box-shadow: 0 6px 16px rgba(232, 97, 10, 0.2);
    }

    .qs-tooltip {
      position: absolute;
      left: 55px;
      background: var(--ink);
      color: #fff;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .qs-link:hover .qs-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    /* ─────────────────────────────────────────
   RIGHT FAB MENU
───────────────────────────────────────── */
    .right-fab-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .fab-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--or), #D95A00);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(232, 97, 10, 0.35);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 2;
    }

    .fab-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(232, 97, 10, 0.45);
    }

    .fab-btn svg {
      width: 26px;
      height: 26px;
      transition: transform 0.3s;
    }

    .fab-btn.open svg {
      transform: rotate(90deg);
    }

    .fab-menu {
      position: absolute;
      top: 60px;
      left: 50%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: rgba(255, 250, 245, 0.85);
      backdrop-filter: blur(10px);
      padding: 12px 10px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      border: 1.5px solid var(--bdr);
      opacity: 0;
      transform: translateX(-50%) translateY(-10px) scale(0.95);
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform-origin: top center;
    }

    .fab-menu.open {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
      pointer-events: auto;
    }

    .fab-menu .qs-link:hover {
      transform: translateX(-4px) scale(1.08);
    }

    @media (max-width: 450px) {
      .fab-menu {
        right: 16px;
        left: auto;
        transform: translateY(-10px) scale(0.95);
      }

      .fab-menu.open {
        transform: translateY(0) scale(1);
      }
    }

    /* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(140deg, rgba(21, 7, 0, 0.9) 0%, rgba(61, 24, 0, 0.9) 45%, rgba(107, 40, 0, 0.9) 75%, rgba(26, 10, 0, 0.9) 100%);
      padding: 130px 5% 80px;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
    }

    .hero-inner {
      width: 100%;
      max-width: 1400px;
      /* Massive viewport expansion allowed safely */
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      z-index: 10;
    }

    .hero-bg-grid {
      position: absolute;
      inset: -100px;
      /* Expanded for movement safety */
      background-image: linear-gradient(rgba(255, 123, 32, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 123, 32, .035) 1px, transparent 1px);
      background-size: 56px 56px;
      transition: transform 0.15s cubic-bezier(0.2, 0.49, 0.32, 0.99);
      /* Smooth follow */
      pointer-events: none;
      will-change: transform;
    }

    .hero-glow1 {
      position: absolute;
      top: -180px;
      right: -180px;
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(232, 97, 10, .18) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none
    }

    .hero-glow2 {
      position: absolute;
      bottom: -180px;
      left: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(255, 123, 32, .1) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none
    }

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

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(232, 97, 10, .2);
      border: 1px solid rgba(232, 97, 10, .38);
      padding: 7px 16px;
      border-radius: 100px;
      color: var(--ors);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .11em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .hero-dot {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.1rem, 3.8vw, 3.4rem);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 14px;
    }

    .hero-h1 em {
      color: var(--orv);
      font-style: italic;
      display: block
    }

    .hero-sanskrit {
      font-size: .78rem;
      color: rgba(255, 160, 77, .72);
      font-style: italic;
      font-weight: 500;
      border-left: 3px solid var(--or);
      padding-left: 14px;
      margin-bottom: 22px;
      line-height: 1.6;
    }

    .hero-desc {
      color: rgba(255, 255, 255, .65);
      font-size: .9rem;
      line-height: 1.82;
      max-width: 480px;
      margin-bottom: 38px
    }

    .hero-btns {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-bottom: 36px
    }

    /* Social proof row */
    .hero-socials {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .hero-socials-label {
      color: rgba(255, 255, 255, .38);
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em
    }

    .hero-soc-icons {
      display: flex;
      gap: 8px
    }

    .h-soc {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }

    .h-soc:hover {
      background: var(--or);
      border-color: var(--or);
      transform: translateY(-2px)
    }

    .h-soc svg {
      width: 16px;
      height: 16px
    }

    /* Hero Right */
    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center
    }

    .hero-card {
      position: relative;
      width: 400px;
      height: 480px;
    }

    .hero-logo-box {
      position: absolute;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 258px;
      height: 258px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .05);
      border: 1.5px solid rgba(232, 97, 10, .28);
      backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 28px;
      box-shadow: 0 18px 52px rgba(0, 0, 0, .3);
      z-index: 1;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
    }

    .hero-logo-box:hover {
      transform: translateX(-50%) translateY(-10px) scale(1.05) rotateX(5deg);
      box-shadow: 0 10px 30px rgba(232, 97, 10, 0.3);
      z-index: 10;
    }

    .hero-logo-box:active {
      transform: translateX(-50%) scale(0.95);
    }

    .hero-logo-big {
      width: 108px;
      height: 108px
    }

    .hero-logo-txt {
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 900;
      text-align: center;
      line-height: 1.25
    }

    .hero-logo-tag {
      color: var(--ors);
      font-size: .62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      text-align: center
    }

    /* stat chips */
    .stat-chip {
      position: absolute;
      background: rgba(255, 255, 255, .97);
      border-radius: 13px;
      padding: 13px 17px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
      border: 1px solid rgba(255, 255, 255, .5);
      z-index: 1;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
    }

    .stat-chip:hover {
      transform: translateY(-10px) scale(1.05) rotateX(5deg);
      box-shadow: 0 10px 30px rgba(232, 97, 10, 0.3);
      /* Glowing box shadow */
      z-index: 10;
    }

    .stat-chip:active {
      transform: scale(0.95);
    }

    .stat-chip .sn {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--or);
      line-height: 1
    }

    .stat-chip .sl {
      font-size: .66rem;
      color: var(--mut);
      margin-top: 3px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      white-space: nowrap
    }

    .sc1 {
      bottom: 140px;
      left: -44px
    }

    .sc2 {
      top: 14px;
      right: -38px
    }

    .sc3 {
      bottom: 150px;
      right: -20px
    }

    .sc4 {
      top: -10px;
      right: 240px
    }

    .sc5 {
      bottom: 300px;
      right: 300px
    }

    /* ─────────────────────────────────────────
       TABLET HERO ADAPTIVITY
    ───────────────────────────────────────── */
    @media (max-width: 1150px) and (min-width: 551px) {
      .hero-inner {
        gap: 30px;
        padding: 120px 4% 80px;
      }

      .hero-card {
        width: 330px;
        height: 400px;
      }

      .hero-logo-box {
        width: 210px;
        height: 210px;
        padding: 20px;
      }

      .hero-logo-big {
        width: 80px;
        height: 80px;
      }

      .stat-chip {
        padding: 10px 14px;
      }

      .stat-chip .sn {
        font-size: 1.3rem;
      }

      .sc1 {
        left: -25px !important;
      }

      .sc2 {
        right: -25px !important;
      }

      .sc3 {
        right: -15px !important;
      }

      .sc4 {
        right: 160px !important;
        top: -15px !important;
      }

      .sc5 {
        right: 200px !important;
        bottom: 270px !important;
      }

      .hero-h1 {
        font-size: 2.6rem !important;
      }

      .hero-desc {
        font-size: 0.85rem;
      }
    }

    /* ─────────────────────────────────────────
   IMPACT STRIP
───────────────────────────────────────── */
    .strip {
      background: rgba(232, 97, 10, 0.9);
      padding: 22px 5%;
      display: flex;
    }

    .strip-item {
      flex: 1;
      text-align: center;
      padding: 6px 14px;
      border-right: 1px solid rgba(255, 255, 255, .28);
    }

    .strip-item:last-child {
      border-right: none
    }

    .strip-n {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 900;
      color: #fff;
      line-height: 1
    }

    .strip-l {
      font-size: .7rem;
      color: rgba(255, 255, 255, .84);
      margin-top: 3px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em
    }

    /* ────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
    .about {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 250, 245, 0.85) 100%);
      padding: 100px 0
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 54px
    }

    /* mosaic */
    .mosaic {
      position: relative;
      height: 460px
    }

    .mos-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 300px;
      height: 390px;
      border-radius: 20px;
      background: linear-gradient(145deg, var(--or), #A03000);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 72px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(232, 97, 10, .3);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
      cursor: pointer;
    }

    .mos-main:hover,
    .mos-main:active {
      transform: scale(1.05) translateY(-5px);
      box-shadow: 0 24px 60px rgba(232, 97, 10, 0.5);
      z-index: 10;
    }

    .mos-main-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 55%)
    }

    .mos-main-cap {
      position: relative;
      bottom: -150px;
      left: -45px;
      right: 15px;
      z-index: 1;
      color: #fff
    }

    .mos-main-cap p {

      font-weight: 700;
      font-size: .88rem
    }

    .mos-main-cap span {
      position: relative;
      bottom: 60px;
      left: 0px;
      font-size: .72rem;
      opacity: .7;
      font-weight: 400
    }

    .mos-sec {
      position: relative;
      bottom: -160px;
      right: -200px;
      width: 330px;
      height: 260px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--teal), #033A36);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
      box-shadow: 0 10px 32px rgba(10, 123, 110, .3);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
      cursor: pointer;
    }

    .mos-sec:hover,
    .mos-sec:active {
      transform: scale(1.05) translateY(-5px);
      box-shadow: 0 18px 45px rgba(10, 123, 110, 0.5);
      z-index: 10;
    }

    .mos-badge {
      position: absolute;
      top: 24px;
      right: -14px;
      background: var(--orp);
      border: 2px solid var(--or);
      padding: 12px 16px;
      border-radius: 13px;
      box-shadow: 0 6px 22px rgba(232, 97, 10, .2);
      text-align: center;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
      cursor: pointer;
    }

    .mos-badge:hover,
    .mos-badge:active {
      transform: scale(1.08) rotate(3deg) translateY(-5px);
      box-shadow: 0 12px 30px rgba(232, 97, 10, 0.4);
      z-index: 10;
    }

    .mos-badge-n {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--or);
      line-height: 1
    }

    .mos-badge-l {
      font-size: .62rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--mut);
      margin-top: 3px
    }

    /* about right */
    .about-right .sec-sub {
      max-width: 100%;
      margin-bottom: 28px
    }

    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 24px
    }

    .vm {
      padding: 18px;
      border-radius: 13px;
      border: 1.5px solid var(--bdr);
      background: var(--crm);
      transition: all .22s
    }

    .vm:hover {
      border-color: var(--or);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(232, 97, 10, .1)
    }

    .vm-ico {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 10px;
      color: var(--or);
    }

    .vm h4 {
      font-weight: 800;
      font-size: .87rem;
      color: var(--ink);
      margin-bottom: 5px
    }

    .vm p {
      font-size: .78rem;
      color: var(--mut);
      line-height: 1.58
    }

    .about-quote {
      background: var(--orp);
      border-left: 4px solid var(--or);
      padding: 18px 22px;
      border-radius: 0 12px 12px 0;
      font-style: italic;
      color: var(--or);
      font-size: .93rem;
      font-weight: 700;
      line-height: 1.6;
    }

    /* ─────────────────────────────────────────
   PROGRAMS
───────────────────────────────────────── */
    .programs {
      background: linear-gradient(180deg, rgba(255, 250, 245, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%);
      padding: 100px 0
    }

    .prog-head {
      text-align: center;
      margin-bottom: 54px
    }

    .prog-head .sec-sub {
      margin: 0 auto
    }

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

    .pcard {
      background: #fff;
      border-radius: 20px;
      border: 1px solid var(--bdr);
      overflow: hidden;
      transition: all .28s;
      display: flex;
      flex-direction: column;
    }

    .pcard:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 52px rgba(0, 0, 0, .1);
      border-color: transparent
    }

    .pcard-img {
      height: 175px;
      position: relative;
      overflow: hidden;
      background: #f0f0f0;
      /* Simple fallback background */
    }

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

    .pcard-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .ptag {
      display: inline-block;
      font-size: .66rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 8px;
    }

    .t-or {
      background: var(--orp);
      color: var(--or)
    }

    .t-te {
      background: #E0F5F3;
      color: var(--teal)
    }

    .t-bl {
      background: #E6F0FF;
      color: var(--blue)
    }

    .t-pu {
      background: #F0E8FF;
      color: var(--pur)
    }

    .t-gn {
      background: #E8F5E8;
      color: var(--grn)
    }

    .t-rd {
      background: #FFE8E6;
      color: var(--red)
    }

    .pcard h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 7px;
      line-height: 1.32
    }

    .pcard p {
      font-size: .81rem;
      color: var(--mut);
      line-height: 1.68;
      flex: 1;
      margin-bottom: 14px
    }

    .pcard-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .81rem;
      font-weight: 800;
      transition: gap .2s
    }

    .pcard-arrow:hover {
      gap: 12px
    }

    /* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
    .gallery {
      background: rgba(26, 10, 0, 0.9);
      padding: 90px 0
    }

    .gal-head {
      text-align: center;
      margin: 0 auto 46px;
      max-width: 800px;
      padding: 0 20px;
    }

    .gal-head .eyebrow {
      color: var(--ors);
    }

    .gal-head .eyebrow::before {
      background: var(--ors)
    }

    .gal-head .eyebrow::after {
      background: var(--ors)
    }

    .gal-head .sec-title {
      color: #fff
    }

    .gal-head .sec-sub {
      color: rgba(255, 255, 255, .47);
      margin-left: auto;
      margin-right: auto;
    }

    /* Masonry layout */
    .gal-grid {
      display: grid;
      grid-template-columns: 1.9fr 1fr 1fr;
      grid-template-rows: 210px 210px;
      gap: 10px;
      border-radius: 18px;
      overflow: hidden;
    }

    .gi {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      cursor: pointer;
      transition: transform .3s;
    }

    .gi:hover {
      transform: scale(.975)
    }

    .gi:hover .gi-ov {
      opacity: 1
    }

    .gi:hover .gi-cap {
      transform: translateY(0)
    }

    .gi.tall {
      grid-row: 1/span 2;
      border-radius: 16px
    }

    .gi-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
    }

    .g1 .gi-bg {
      background: linear-gradient(145deg, #E8610A, #7A2800)
    }

    .g2 .gi-bg {
      background: linear-gradient(145deg, #0A7B6E, #033636)
    }

    .g3 .gi-bg {
      background: linear-gradient(145deg, #1A5FAB, #082840)
    }

    .g4 .gi-bg {
      background: linear-gradient(145deg, #6B3FA0, #280F40)
    }

    .g5 .gi-bg {
      background: linear-gradient(145deg, #C0392B, #580A00)
    }

    .gi-ov {
      display: none;
      /* Removed redundant View Photo badge */
    }

    .gi-cap {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px 20px;
      background: linear-gradient(to top, rgba(13, 7, 0, 0.95) 0%, rgba(13, 7, 0, 0.4) 60%, transparent 100%);
      transform: translateY(0);
      transition: all .35s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .gi:hover .gi-cap {
      background: linear-gradient(to top, rgba(232, 97, 10, 0.85) 0%, rgba(13, 7, 0, 0.3) 100%);
    }

    .gi-cap p {
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 5px;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .gi-cap span {
      color: var(--ors);
      font-size: .68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.9;
    }

    /* lightbox */
    .lbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, .93);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .lbox.show {
      display: flex
    }

    .lbox-inner {
      position: relative;
      max-width: 800px;
      width: 100%;
      text-align: center
    }

    .lbox-img {
      width: 100%;
      max-height: 72vh;
      object-fit: contain;
      border-radius: 14px;
      background: rgba(255, 255, 255, .05);
      padding: 40px;
      font-size: 6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lbox-cap {
      color: rgba(255, 255, 255, .7);
      font-size: .88rem;
      margin-top: 14px;
      font-weight: 600
    }

    .lbox-close {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--or);
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .lbox-close:hover {
      background: var(--orv)
    }

    .gal-cta {
      text-align: center;
      margin-top: 36px;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-or-out {
      border: 2px solid var(--or);
      color: var(--or);
      padding: 12px 28px;
      border-radius: 10px;
      font-weight: 700;
      font-size: .88rem;
      transition: all .2s;
      display: inline-block;
    }

    .btn-or-out:hover {
      background: var(--or);
      color: #fff
    }

    .btn-gallery-full {
      background: linear-gradient(135deg, var(--or), #D95A00);
      color: #fff;
      padding: 12px 28px;
      border-radius: 10px;
      font-weight: 700;
      font-size: .88rem;
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 18px rgba(232, 97, 10, .3);
    }

    .btn-gallery-full:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(232, 97, 10, .45);
    }

    /* ─────────────────────────────────────────
   CSR SECTION
───────────────────────────────────────── */
    .csr {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 250, 245, 0.85) 100%);
      padding: 100px 0
    }

    .csr-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-top: 52px
    }

    .csr-benefits {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px
    }

    .csrb {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      padding: 16px 18px;
      border-radius: 13px;
      border: 1.5px solid var(--bdr);
      background: var(--crm);
      transition: all .22s;
    }

    .csrb:hover {
      border-color: var(--or);
      transform: translateX(4px);
      box-shadow: 0 3px 14px rgba(232, 97, 10, .1)
    }

    .csrb-ic {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      flex-shrink: 0;
      background: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      box-shadow: 0 4px 12px rgba(232, 97, 10, .28);
    }

    .csrb h4 {
      font-weight: 800;
      font-size: .88rem;
      color: var(--ink);
      margin-bottom: 3px
    }

    .csrb p {
      font-size: .78rem;
      color: var(--mut);
      line-height: 1.56
    }

    .btn-csr-sub {
      width: 100%;
      background: var(--or);
      color: #fff;
      border: none;
      padding: 11px;
      border-radius: 9px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: .88rem;
      cursor: pointer;
      transition: all .2s;
      box-shadow: 0 4px 14px rgba(232, 97, 10, .3);
    }

    /* ── FULL GALLERY MODAL ── */
    #galleryModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #0D0700;
      overflow-y: auto;
      scroll-behavior: smooth;
    }

    #galleryModal.open {
      display: block;
      animation: gmIn .45s cubic-bezier(0.19, 1, 0.22, 1) both;
    }

    @keyframes gmIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .gm-inner {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .gm-head {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 20px 5%;
      background: rgba(13, 7, 0, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232, 97, 10, 0.15);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .gm-brand {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .gm-brand img {
      height: 45px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(232, 97, 10, 0.4));
    }

    .gm-brand-txt h2 {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 900;
      line-height: 1;
    }

    .gm-brand-txt p {
      color: var(--ors);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }

    .gm-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .gm-close:hover {
      background: var(--or);
      transform: rotate(90deg);
    }

    .gm-body {
      padding: 60px 5% 100px;
    }

    .gm-hero {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    .gm-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: #fff;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 15px;
    }

    .gm-hero h1 span {
      color: var(--or);
    }

    .gm-hero p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .gm-filt {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }

    .gm-fbtn {
      padding: 10px 24px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
    }

    .gm-fbtn:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .gm-fbtn.active {
      background: var(--or);
      border-color: var(--or);
      color: #fff;
      box-shadow: 0 4px 15px rgba(232, 97, 10, 0.4);
    }

    #fullGalleryGrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .gm-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #1A0A00;
      cursor: pointer;
      aspect-ratio: 4/5;
      transition: 0.4s;
    }

    .gm-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .gm-item img,
    .gm-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .gm-item:hover img,
    .gm-item:hover video {
      transform: scale(1.1);
      filter: brightness(0.7);
    }

    .gm-type {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 5;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      color: #fff;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 0.6rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .gm-item-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 7, 0, 0.9), transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 25px;
      opacity: 0;
      transform: translateY(10px);
      transition: 0.4s;
    }

    .gm-item:hover .gm-item-ov {
      opacity: 1;
      transform: translateY(0);
    }

    .gm-title {
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 5px;
    }

    /* ── LIGHTBOX ── */
    #afLightbox {
      position: fixed;
      inset: 0;
      z-index: 100000;
      background: rgba(0, 0, 0, 0.92);
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      padding: 20px;
    }

    #afLightbox.show {
      opacity: 1;
    }

    .afl-inner {
      position: relative;
      max-width: 900px;
      width: 100%;
      text-align: center;
      transform: scale(0.9);
      transition: 0.3s;
    }

    #afLightbox.show .afl-inner {
      transform: scale(1);
    }

    .afl-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
    }

    .afl-meta {
      margin-top: 20px;
      text-align: center;
    }

    .afl-meta h3 {
      color: #fff;
      font-size: 1.25rem;
      font-family: 'Playfair Display', serif;
    }

    .afl-meta p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      margin-top: 5px;
    }

    /* CSR form */
    .csr-form {
      background: linear-gradient(150deg, #1A0A00, #3D1800);
      border-radius: 20px;
      padding: 18px 22px;
      border: 1px solid rgba(232, 97, 10, .2);
      box-shadow: 0 20px 56px rgba(0, 0, 0, .25);
      max-width: 600px;
      width: 100%;
      margin-left: auto;
    }

    @media (max-width: 991px) {
      .csr-form {
        margin: 0 auto;
      }
    }

    .csr-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 5px
    }

    .csr-form>p {
      color: rgba(255, 255, 255, .45);
      font-size: .81rem;
      margin-bottom: 12px
    }

    .fg {
      margin-bottom: 10px
    }

    .fg label {
      display: block;
      font-size: .7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .48);
      margin-bottom: 6px
    }

    .fg input,
    .fg select,
    .fg textarea {
      width: 100%;
      padding: 11px 15px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 9px;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .87rem;
      outline: none;
      transition: border .2s;
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: rgba(255, 255, 255, .28)
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--or)
    }

    .fg select option {
      background: #2C1400
    }

    .fg textarea {
      resize: vertical;
      min-height: 84px
    }

    .fgrow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px
    }

    .btn-csr-sub {
      width: 100%;
      background: var(--or);
      color: #fff;
      border: none;
      padding: 11px;
      border-radius: 9px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .93rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .2s;
      margin-top: 6px;
      box-shadow: 0 6px 20px rgba(232, 97, 10, .38);
    }

    .btn-csr-sub:hover {
      background: var(--orv);
      transform: translateY(-2px)
    }

    /* ── Donate Now Button ── */
    .btn-donate-now {
      width: 100%;
      background: linear-gradient(135deg, #1e8a5a, #0d6b43);
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .9rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .25s;
      margin-top: 10px;
      box-shadow: 0 8px 24px rgba(30, 138, 90, .38);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      letter-spacing: .03em;
    }

    .btn-donate-now:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(30, 138, 90, .5);
      background: linear-gradient(135deg, #22a868, #1a7d50);
    }

    /* ── Donate Modal ── */
    #donateModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9998;
      background: rgba(10, 5, 0, 0.95);
      backdrop-filter: blur(20px);
      overflow-y: auto;
      /* Solid scrolling */
      padding: 30px 0;
      /* Breathing room */
    }

    #donateModal.open {
      display: grid !important;
      place-items: start center;
      /* Always start from top horizontally centered */
    }

    .donate-inner {
      background: #0D0700;
      /* Deep Ebony */
      border-radius: 24px;
      width: 100%;
      max-width: 520px;
      margin: auto;
      /* Let flex handle centering while allowing growth */
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(232, 97, 10, 0.2);
      /* Subtle Orange Border */
      animation: fadeUp .4s cubic-bezier(0.19, 1, 0.22, 1) both;
      color: #F7E7D3;
      /* Classic Cream Text */
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .donate-header {
      background: linear-gradient(135deg, #1A0A00, #3D1800);
      padding: 28px 32px 24px;
      position: relative;
    }

    .donate-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 4px;
    }

    .donate-header p {
      color: rgba(255, 255, 255, .55);
      font-size: .82rem;
    }

    .donate-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      border: none;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .donate-close:hover {
      background: rgba(232, 97, 10, .7);
    }

    .donate-body {
      padding: 28px 32px;
    }

    .donate-qr-wrap {
      text-align: center;
      margin-bottom: 24px;
    }

    .donate-qr-label {
      font-size: .72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--mut);
      margin-bottom: 12px;
    }

    .donate-qr-img {
      display: block;
      margin: 0 auto;
      width: 160px;
      height: 160px;
      border-radius: 14px;
      border: 2px solid var(--bdr);
      object-fit: contain;
      background: #fff;
      padding: 4px;
    }

    .donate-qr-caption {
      font-size: .75rem;
      color: var(--mut);
      margin-top: 12px;
    }

    .donate-upi-id {
      background: var(--orp);
      border: 1.5px solid var(--bdr);
      border-radius: 10px;
      padding: 12px 16px;
      text-align: center;
      margin-bottom: 24px;
      font-size: .85rem;
      color: var(--ink);
      font-weight: 700;
      margin-top: 20px;
      cursor: pointer;
      transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }

    .donate-upi-id:hover {
      background: var(--ors);
      border-color: var(--or);
      transform: scale(1.02);
      box-shadow: 0 5px 15px rgba(232, 97, 10, 0.15);
    }

    .donate-upi-id:active {
      transform: scale(0.98);
    }

    .donate-upi-id::after {
      content: 'Click to copy';
      position: absolute;
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.6rem;
      color: var(--or);
      font-weight: 800;
      opacity: 0.7;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .donate-accepted-row {
      text-align: center;
      margin-bottom: 24px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.95);
      /* Classy White with slight transparency */
      border: 1px solid #fff;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
      /* Vintage deep shadow */
    }

    .dar-label {
      font-size: .65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: #331A00;
      /* Dark for contrast on white */
      margin-bottom: 16px;
      display: block;
      opacity: 0.8;
    }

    .dar-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .dar-logos img {
      height: 45px;
      width: auto;
      transition: all .3s;
      mix-blend-mode: multiply;
      /* High-end trick to make white-background logos transparent */
      filter: contrast(1.1) brightness(1.02);
    }

    .dar-logos img:hover {
      transform: translateY(-4px) scale(1.1);
    }

    @media (max-width: 550px) {
      .donate-inner {
        padding: 20px 15px !important;
        border-radius: 20px !important;
      }

      .donate-header {
        padding: 20px 20px 15px !important;
      }

      .donate-header h3 {
        font-size: 1.2rem !important;
      }

      .donate-body {
        padding: 0 20px 20px !important;
      }

      .donate-qr-img {
        width: 140px !important;
        height: 140px !important;
      }

      .donate-upi-id {
        padding: 10px !important;
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
      }

      .donate-accepted-row {
        padding: 12px !important;
        margin-bottom: 15px !important;
      }

      .dar-logos img {
        height: 32px !important;
      }

      .donate-step-btn {
        padding: 12px !important;
        font-size: 0.9rem !important;
      }
    }

    /* Support for Landscape / Low-Height phones */
    @media (max-height: 500px) {
      #donateModal {
        padding: 10px 0;
      }

      .donate-inner {
        border-radius: 12px;
      }

      .donate-header {
        padding: 12px 20px !important;
      }

      .donate-header h3 {
        font-size: 1.1rem !important;
        margin: 0;
      }

      .donate-header p {
        display: none;
      }

      /* Hide extra text to save space */
      .donate-body {
        padding: 0 20px 10px !important;
      }

      .donate-qr-img {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 5px !important;
      }

      .donate-qr-caption {
        font-size: 0.65rem !important;
        margin-top: 5px !important;
      }

      .donate-upi-id {
        padding: 8px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
      }

      .donate-accepted-row {
        padding: 8px !important;
        margin-bottom: 10px !important;
      }

      .dar-logos img {
        height: 28px !important;
      }

      .donate-step-btn {
        padding: 10px !important;
        font-size: 0.85rem !important;
      }
    }

    .donate-simulate {
      background: linear-gradient(135deg, #1e8a5a, #0d6b43);
      color: #fff;
      border: none;
      width: 100%;
      padding: 14px;
      border-radius: 11px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .92rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .25s;
      box-shadow: 0 6px 18px rgba(30, 138, 90, .35);
    }

    .donate-simulate:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(30, 138, 90, .45);
    }

    .donate-success {
      display: none;
      text-align: center;
      padding: 24px;
    }

    .donate-success .ds-ic {
      font-size: 3.5rem;
      margin-bottom: 14px;
    }

    .donate-success h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .donate-success p {
      color: var(--mut);
      font-size: .85rem;
      line-height: 1.6;
    }

    /* ── Dynamic Reviews ── */
    .dynamic-reviews {
      margin-top: 36px;
    }

    .dynamic-reviews-title {
      font-size: .75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--mut);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--bdr);
    }

    .dynamic-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .btn-view-all-reviews {
      display: block;
      text-align: center;
      margin: 28px auto 0;
      background: linear-gradient(135deg, var(--or), #D95A00);
      color: #fff;
      padding: 13px 32px;
      border-radius: 11px;
      font-weight: 800;
      font-size: .9rem;
      transition: all .25s;
      width: fit-content;
      box-shadow: 0 6px 18px rgba(232, 97, 10, .3);
    }

    .btn-view-all-reviews:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(232, 97, 10, .45);
    }

    /* Conversations submission ── */
    .conversations-submit {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--bdr);
    }

    .conversations-submit h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 6px;
      text-align: center;
    }

    .conversations-submit .cs-sub {
      text-align: center;
      color: var(--mut);
      font-size: .82rem;
      margin-bottom: 20px;
    }

    .conv-form {
      background: var(--crm);
      border: 1.5px solid var(--bdr);
      border-radius: 16px;
      padding: 24px;
    }

    .conv-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .conv-fg label {
      display: block;
      font-size: .7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--mut);
      margin-bottom: 5px;
    }

    .conv-fg input,
    .conv-fg select,
    .conv-fg textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--bdr);
      border-radius: 9px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .87rem;
      color: var(--ink);
      background: #fff;
      outline: none;
      transition: border .2s;
    }

    .conv-fg input:focus,
    .conv-fg select:focus,
    .conv-fg textarea:focus {
      border-color: var(--or);
    }

    .conv-fg textarea {
      resize: vertical;
      min-height: 80px;
    }

    .btn-conv-sub {
      width: 100%;
      background: var(--or);
      color: #fff;
      border: none;
      padding: 13px;
      border-radius: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .92rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .2s;
      margin-top: 4px;
      box-shadow: 0 6px 18px rgba(232, 97, 10, .32);
    }

    .btn-conv-sub:hover {
      background: var(--orv);
      transform: translateY(-2px);
    }

    @media(max-width:768px) {
      .dynamic-reviews-grid {
        grid-template-columns: 1fr;
      }

      .conv-form-row {
        grid-template-columns: 1fr;
      }
    }

    /* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
    .testi {
      background: rgba(26, 10, 0, 0.92);
      padding: 100px 0;
    }

    .testi .eyebrow {
      color: var(--ors);
    }

    .testi .eyebrow::before,
    .testi .eyebrow::after {
      background: var(--ors);
    }

    .testi .sec-title {
      color: #fff;
    }

    .testi .sec-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    .testi .tc {
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(6px);
    }

    .testi .tc p {
      color: rgba(255, 255, 255, 0.75);
    }

    .testi .tc-name {
      color: #fff;
    }

    .testi .tc-role {
      color: rgba(255, 255, 255, 0.5);
    }

    .testi .tc-qt {
      color: rgba(255, 255, 255, 0.05);
    }

    .testi .conversations-submit h3 {
      color: #fff;
    }

    .testi .conversations-submit .cs-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    .testi .conv-form {
      background: rgba(255, 255, 255, 0.04);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
    }

    .testi .conv-fg label {
      color: rgba(255, 255, 255, 0.6);
    }

    .testi .conv-fg input,
    .testi .conv-fg select,
    .testi .conv-fg textarea {
      background: rgba(255, 255, 255, 0.08);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .testi .conv-fg input:focus,
    .testi .conv-fg select:focus,
    .testi .conv-fg textarea:focus {
      border-color: var(--or);
      background: rgba(255, 255, 255, 0.12);
    }

    .testi-head {
      text-align: center;
      margin-bottom: 50px
    }

    .testi-head .sec-sub {
      margin: 0 auto
    }

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

    .tc {
      background: #fff;
      padding: 28px;
      border-radius: 18px;
      border: 1.5px solid var(--bdr);
      position: relative;
      transition: all .24s;
    }

    .tc:hover {
      border-color: var(--ors);
      transform: translateY(-4px);
      box-shadow: 0 10px 36px rgba(232, 97, 10, .1)
    }

    .tc-qt {
      position: absolute;
      top: 18px;
      right: 22px;
      font-size: 2.8rem;
      line-height: 1;
      color: var(--orp);
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      user-select: none
    }

    .tc-type {
      display: inline-block;
      font-size: .64rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--or);
      background: var(--orp);
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 13px
    }

    .tc p {
      font-size: .84rem;
      line-height: 1.72;
      color: var(--txt);
      font-style: italic;
      margin-bottom: 20px
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 11px
    }

    .tc-av {
      position: relative;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.2rem;
      flex-shrink: 0;
      z-index: 10;
      transition: transform 0.3s ease;
      background: #fff;
      border: 2px solid var(--or);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .tc:hover .tc-av {
      transform: scale(1.05);
    }

    .tc-av.tl {
      background: #fff;
    }

    .tc-av.bl {
      background: #fff;
    }

    .tc-av img {
      position: absolute;
      inset: 3px;
      width: calc(100% - 6px);
      height: calc(100% - 6px);
      border-radius: 50%;
      border: 2px solid var(--or);
      object-fit: cover;
      display: block;
      z-index: 12;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    /* Small testimonial avatars (e.g., inside Modals) */
    .tc-av[style*="width:40px"] {
      border-width: 1.5px;
    }

    .tc-av[style*="width:40px"] img {
      inset: 1.5px;
      width: calc(100% - 3px);
      height: calc(100% - 3px);
      border-width: 1.5px;
    }

    .tc-name {
      font-weight: 800;
      font-size: .84rem;
      color: var(--ink)
    }

    .tc-role {
      font-size: .71rem;
      color: var(--mut)
    }

    /* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
    .contact {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 250, 245, 0.85) 100%);
      padding: 100px 0
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 52px;
      align-items: stretch
    }

    .contact-info {
      background: #fff;
      border: 1.5px solid var(--bdr);
      border-radius: 22px;
      padding: 32px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
      display: flex;
      flex-direction: column;
    }

    .contact-info .sec-sub {
      max-width: 100%;
      margin-bottom: 24px;
      text-align: left;
    }

    .cmeths {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .cm {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px;
      border-radius: 13px;
      border: 1.5px solid var(--bdr);
      background: var(--crm);
      transition: all .2s;
    }

    .cm:hover {
      border-color: var(--or);
      box-shadow: 0 3px 14px rgba(232, 97, 10, .1)
    }

    .cm-ic {
      width: 46px;
      height: 46px;
      border-radius: 11px;
      flex-shrink: 0;
      background: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 14px rgba(232, 97, 10, .28)
    }

    .cm-txt label {
      display: block;
      font-size: .66rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--mut);
      margin-bottom: 3px
    }

    .cm-txt a,
    .cm-txt p {
      color: var(--ink);
      font-weight: 700;
      font-size: .88rem;
      line-height: 1.5
    }

    /* Social links in contact */
    .contact-socials {
      margin-top: 28px
    }

    .contact-socials h4 {
      font-size: .75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--mut);
      margin-bottom: 12px
    }

    .soc-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .soc-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 10px;
      border: 1.5px solid var(--bdr);
      background: var(--crm);
      font-size: .8rem;
      font-weight: 700;
      color: var(--txt);
      transition: all .2s;
    }

    .soc-btn:hover {
      border-color: var(--or);
      color: var(--or);
      background: var(--orp)
    }

    /* ── Per-platform branded hover effects ── */

    /* Instagram: pink-to-blue gradient glow */
    [title="Instagram"] {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      will-change: transform;
    }

    [title="Instagram"]:hover,
    .soc-btn-v.revealed[title="Instagram"] {
      background: linear-gradient(135deg, rgba(245, 96, 64, 0.15), rgba(131, 58, 180, 0.15), rgba(64, 93, 230, 0.15)) !important;
      border-color: #C13584 !important;
      color: #C13584 !important;
      box-shadow: 0 10px 30px rgba(193, 53, 132, 0.35) !important;
      transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
      z-index: 10;
    }

    [title="Instagram"]:hover svg rect,
    [title="Instagram"]:hover svg circle,
    [title="Instagram"]:hover svg path,
    .soc-btn-v.revealed[title="Instagram"] svg rect,
    .soc-btn-v.revealed[title="Instagram"] svg circle,
    .soc-btn-v.revealed[title="Instagram"] svg path {
      stroke: #C13584 !important;
      fill: none !important;
    }

    [title="Instagram"]:hover svg circle:last-child,
    .soc-btn-v.revealed[title="Instagram"] svg circle:last-child {
      fill: #C13584 !important;
    }

    /* WhatsApp: brand green glow */
    [title="WhatsApp"],
    [title="Contact us on WhatsApp"],
    .wa-soc {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      will-change: transform;
    }

    [title="WhatsApp"]:hover,
    [title="Contact us on WhatsApp"]:hover,
    .wa-soc:hover,
    .soc-btn-v.revealed[title="WhatsApp"] {
      background: rgba(37, 211, 102, 0.1) !important;
      border-color: #25D366 !important;
      color: #25D366 !important;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
      transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
      z-index: 10;
    }

    [title="WhatsApp"]:hover svg,
    [title="Contact us on WhatsApp"]:hover svg,
    .wa-soc:hover svg,
    .soc-btn-v.revealed[title="WhatsApp"] svg {
      fill: #25D366 !important;
    }


    /* Facebook: blue-to-white glow */
    [title="Facebook"] {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      will-change: transform;
    }

    [title="Facebook"]:hover,
    .soc-btn-v.revealed[title="Facebook"] {
      background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(255, 255, 255, 0.08)) !important;
      border-color: #1877F2 !important;
      color: #1877F2 !important;
      box-shadow: 0 10px 30px rgba(24, 119, 242, 0.35) !important;
      transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
      z-index: 10;
    }

    [title="Facebook"]:hover svg rect,
    [title="Facebook"]:hover svg path,
    .soc-btn-v.revealed[title="Facebook"] svg rect,
    .soc-btn-v.revealed[title="Facebook"] svg path {
      stroke: #1877F2 !important;
      fill: none !important;
    }

    /* ── Static bordered soc-btn (Contact section) ── */
    .soc-btn[title="Instagram"] {
      border-color: rgba(193, 53, 132, 0.45);
      color: #C13584;
    }


    .soc-btn[title="Facebook"] {
      border-color: rgba(24, 119, 242, 0.45);
      color: #1877F2;
    }

    .soc-btn[title="Contact us on WhatsApp"] {
      border-color: rgba(37, 211, 102, 0.45);
      color: #25D366;
    }

    /* ── Static bordered f-soc (Footer) ── */
    .f-soc[title="Instagram"] {
      border-color: rgba(193, 53, 132, 0.5);
    }



    [title="YouTube"] {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      will-change: transform;
    }

    [title="YouTube"]:hover {
      background: rgba(255, 0, 0, 0.08) !important;
      border-color: #FF0000 !important;
      color: #FF0000 !important;
      box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3) !important;
      transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
      z-index: 10;
    }

    [title="YouTube"]:hover svg path {
      stroke: #FF0000 !important;
    }

    [title="YouTube"]:hover svg path:last-child {
      fill: #FF0000 !important;
      stroke: none !important;
    }

    .soc-btn-v.revealed[title="Contact Us"],
    .soc-btn-v.revealed[title="Call Now"] {
      background: var(--orp) !important;
      border-color: var(--or) !important;
      color: var(--or) !important;
      box-shadow: 0 10px 30px rgba(232, 97, 10, 0.25) !important;
    }

    /* Branded states are now consolidated in the main per-platform hover block above */

    /* Branded SVG colors consolidated above */

    .soc-btn-v.revealed span {
      color: var(--ink) !important;
    }


    .soc-btn[title="YouTube"] {
      border-color: rgba(255, 0, 0, 0.3);
      color: #FF0000;
    }

    .soc-btn[title="Contact Us"] {
      border-color: var(--or);
      color: var(--or);
    }


    .f-soc[title="YouTube"] {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .f-soc[title="YouTube"]:hover {
      background: #FF0000 !important;
      border-color: #FF0000 !important;
    }

    /* ── Social Hub (Contact Section) ── */
    .contact-socials-ref {
      margin-top: 40px;
    }

    .contact-socials-ref h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 900;
      color: var(--or);
      margin: 0 auto 30px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      text-align: center;
      background: rgba(232, 97, 10, 0.06);
      padding: 10px 24px;
      border-radius: 12px;
      border: 1.5px solid rgba(232, 97, 10, 0.15);
      display: table;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact-socials-ref h4:hover {
      background: rgba(232, 97, 10, 0.12);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(232, 97, 10, 0.1);
    }

    .soc-row-final {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .soc-btn-v {
      display: block;
      text-decoration: none;
      background: #fff;
      border: 1.5px solid var(--bdr);
      border-radius: 20px;
      padding: 18px 12px;
      text-align: center;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .soc-btn-v:hover {
      border-color: var(--or);
      background: var(--crm);
      transform: translateY(-10px) scale(1.05) rotateX(5deg);
      box-shadow: 0 16px 32px rgba(232, 97, 10, 0.18);
    }

    .soc-btn-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .soc-btn-wrap svg {
      width: 32px;
      height: 32px;
      transition: transform 0.35s ease;
    }

    .soc-btn-v:hover svg {
      transform: scale(1.1);
    }

    .soc-btn-wrap span {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--mut);
      transition: color 0.3s ease;
      letter-spacing: -0.01em;
    }

    .soc-btn-v:hover .soc-btn-wrap span {
      color: var(--ink);
    }

    @media (max-width: 580px) {
      .soc-row-final {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 400px) {
      .soc-row-final {
        grid-template-columns: 1fr;
      }
    }

    /* ── Logo Modal (Simple) ── */
    #logoModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(12px);
      align-items: center;
      justify-content: center;
      padding: 40px;
      cursor: zoom-out;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    #logoModal.open {
      display: flex;
      opacity: 1;
    }

    #logoModal img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    #logoModal.open img {
      transform: scale(1);
    }

    @media (min-width: 768px) {
      .owner-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 1024px) {
      .owner-grid {
        grid-template-columns: 1fr;
      }
    }

    .owner-card {
      cursor: pointer;
    }

    .f-soc[title="Facebook"] {
      border-color: rgba(24, 119, 242, 0.5);
    }

    .f-soc[title="Contact us on WhatsApp"] {
      border-color: rgba(85, 219, 134, 0.5);
    }

    .soc-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0
    }

    /* ── Owner Section ── */
    .owner-wrap {
      background: #fff;
      border: 1.5px solid var(--bdr);
      border-radius: 22px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
      display: flex;
      flex-direction: column;
    }

    .owner-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 20px;
      text-align: center;
    }

    .owner-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      flex: 1;
      align-content: space-evenly;
    }

    .owner-card {
      display: flex;
      gap: 24px;
      align-items: center;
      padding: 24px;
      background: var(--crm);
      border: 1.5px solid var(--bdr);
      border-radius: 18px;
      transition: all .35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .owner-card:hover {
      border-color: var(--or);
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(232, 97, 10, 0.1);
    }

    .owner-pic {
      position: relative;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      color: #fff;
      font-weight: 900;
      flex-shrink: 0;
      border: 3px solid #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
      overflow: hidden;
    }

    .owner-pic {
      position: relative;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      font-weight: 900;
      flex-shrink: 0;
      z-index: 10;
      margin: 15px;
    }

    /* PREMIUM QUALITY DOTTED RING (2s) */
    .owner-pic::before {
      content: '';
      position: absolute;
      inset: -6px;
      padding: 3px;
      /* Dot thickness */
      background: conic-gradient(from 0deg, #E8610A 0%, #fff 50%, #E8610A 100%);
      -webkit-mask:
        repeating-conic-gradient(#000 0deg 4deg, transparent 4deg 12deg),
        radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px + 0.5px));
      -webkit-mask-composite: destination-in;
      mask:
        repeating-conic-gradient(#000 0deg 4deg, transparent 4deg 12deg),
        radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px + 0.5px));
      mask-composite: intersect;
      border-radius: 50%;
      animation: rotateRing 2s linear infinite;
      z-index: -1;
    }

    /* OUTER GLOW FOR RICHNESS */
    .owner-pic::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      box-shadow: 0 0 20px rgba(232, 97, 10, 0.4);
      z-index: -2;
      opacity: 0.7;
    }

    .owner-pic-img-wrap {
      position: absolute;
      inset: 3px;
      background: #fff;
      border-radius: 50%;
      overflow: hidden;
      z-index: 12;
      border: 3px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Deep "Rich" Shadow */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .owner-pic span {
      position: relative;
      z-index: 0;
      /* Behind wrap */
    }

    @keyframes rotateRing {
      to {
        transform: rotate(360deg);
      }
    }

    .owner-pic-img-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transform: scale(1.15);
      transform-origin: top center;
      z-index: 3;
    }

    .owner-info h4 {
      font-size: .95rem;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .owner-info .owner-badge {
      display: inline-block;
      font-size: .6rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--or);
      margin-bottom: 6px;
    }

    .owner-info p {
      font-size: .78rem;
      color: var(--mut);
      line-height: 1.5;
      font-style: italic;
    }

    /* ── Reviews Modal ── */
    #reviewsModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10, 5, 0, 0.9);
      backdrop-filter: blur(18px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    #reviewsModal.open {
      display: flex;
    }

    .rm-inner {
      background: #0D0700;
      /* Deep Ebony */
      width: 100%;
      max-width: 700px;
      border-radius: 28px;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(232, 97, 10, 0.2);
      animation: fadeUp .4s cubic-bezier(0.19, 1, 0.22, 1) both;
      color: #F7E7D3;
    }

    .rm-header {
      padding: 24px 32px;
      background: rgba(255, 255, 255, 0.03);
      border-bottom: 1.5px solid rgba(232, 97, 10, 0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .rm-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: #fff;
    }

    .btn-rm-close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--crm);
      border: none;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rm-content {
      padding: 24px 32px;
      overflow-y: auto;
      flex: 1;
    }

    .rm-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .btn-check-reviews {
      margin-top: 12px;
      width: 100%;
      background: #fff;
      color: var(--or);
      border: 2px solid var(--or);
      padding: 12px;
      border-radius: 10px;
      font-family: inherit;
      font-size: .9rem;
      font-weight: 800;
      cursor: pointer;
      transition: all .2s;
    }

    .btn-check-reviews:hover {
      background: var(--or);
      color: #fff;
    }

    /* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
    footer {
      background: rgba(44, 18, 5, 0.95);
      /* Brighter footer */
      padding: 70px 5% 36px;
      /* Bigger footer padding */
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 54px;
      border-bottom: 1px solid rgb(255, 255, 255)
        /* Brighter border */
    }

    .fb-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 16px
    }

    .fbl-ic {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px
    }

    .fbl-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 900;
      color: #fff
    }

    .fbl-tag {
      font-size: .57rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--ors);
      margin-top: 1px
    }

    .fb-desc {
      color: rgba(255, 255, 255, 0.747);
      font-size: .8rem;
      line-height: 1.72;
      margin-bottom: 16px
    }

    .fb-sanskrit {
      color: var(--ors);
      font-style: italic;
      font-size: .8rem;
      font-weight: 600;
      margin-bottom: 20px
    }

    /* Footer social icons */
    .footer-socials {
      display: flex;
      gap: 8px;
    }

    .f-soc {
      width: 35px;
      height: 35px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .f-soc:hover {
      background: var(--or);
      border-color: var(--or);
      transform: translateY(-2px)
    }

    .f-soc[title="Contact us on WhatsApp"] {
      background: rgba(255, 255, 255, .07);
      border-color: rgba(80, 173, 113, 0.726);
    }

    .f-soc[title="Contact us on WhatsApp"]:hover {
      background: rgba(37, 211, 102, 0.1) !important;
      border-color: #25D366 !important;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
      transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
    }

    .f-soc svg {
      width: 15px;
      height: 15px
    }

    .fc h4 {
      color: #fff;
      font-size: .78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 16px
    }

    .fc ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .fc ul li a {
      color: rgba(255, 255, 255, .6);
      /* Brighter text */
      font-size: .88rem;
      /* Bigger font */
      transition: color .2s
    }

    .fc ul li a:hover {
      color: var(--ors)
    }

    .fc-addr {
      color: rgba(255, 255, 255, .6);
      /* Brighter text */
      font-size: .88rem;
      /* Bigger font */
      line-height: 1.72
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 22px;
      flex-wrap: wrap;
      gap: 10px
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.904);
      font-size: .73rem
    }

    .footer-btm-links {
      display: flex;
      gap: 18px
    }

    .footer-btm-links a,
    .footer-btm-links button {
      color: rgba(255, 255, 255, 0.945);
      font-size: .73rem;
      transition: color .2s;
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      cursor: pointer;
    }

    .footer-btm-links a:hover,
    .footer-btm-links button:hover {
      color: var(--ors)
    }

    /* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
    @media(max-width:1024px) {
      .hero {
        padding-top: 130px;
      }

      /* Hero keeps 2-col layout on landcape tablets */
      .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .about-grid {
        grid-template-columns: 1fr
      }

      .mos-main {
        width: 220px;
        height: 280px
      }

      .mos-sec {
        width: 165px;
        height: 195px
      }

      .prog-grid {
        grid-template-columns: 1fr 1fr
      }

      .csr-grid {
        grid-template-columns: 1fr
      }

      .testi-grid {
        grid-template-columns: 1fr
      }

      .contact-grid {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:1800px) {
      .nav-socials {
        display: none
      }
    }

    @media(max-width:768px) {
      .hero {
        align-items: start;
        padding-top: 90px;
        padding-bottom: 180px;
        height: auto;
        min-height: 100vh;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }

      .hero-desc,
      .hero-btns,
      .hero-socials {
        justify-content: center;
        margin-left: auto;
        margin-right: auto
      }

      .hero-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
        position: static;
        width: 100%;
      }

      .strip {
        flex-wrap: wrap
      }

      .strip-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 10px 0
      }

      .strip-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .18)
      }

      .prog-grid {
        grid-template-columns: 1fr
      }

      .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
      }

      .gi.tall {
        grid-row: auto
      }

      .footer-top {
        grid-template-columns: 1fr
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }

      .vm-grid {
        grid-template-columns: 1fr
      }

      .fgrow {
        grid-template-columns: 1fr
      }

      .soc-row {
        flex-direction: column
      }
    }

    /* ── animations ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(26px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .au {
      animation: fadeUp .62s ease both
    }

    .d1 {
      animation-delay: .1s
    }

    .d2 {
      animation-delay: .2s
    }

    .d3 {
      animation-delay: .3s
    }

    .d4 {
      animation-delay: .4s
    }

    /* ─────────────────────────────────────────
   WATERMARK & LOADER
───────────────────────────────────────── */
    .watermark-overlay {
      position: fixed;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90vw;
      height: 80vh;
      object-fit: contain;
      opacity: 40;
      pointer-events: none;
      z-index: -1;
    }

    #loader-wrap {
      position: fixed;
      inset: 0;
      background: #FFFAF5;
      /* exactly matched opaque background */
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
    }

    #loader-wrap.loaded {
      opacity: 0;
      visibility: hidden;
      transform: scale(1.05);
    }

    .loader-ring {
      position: relative;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .loader-ring::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 4px solid rgba(232, 97, 10, .15);
      border-top-color: var(--or);
      border-radius: 50%;
      opacity: 0;
      animation: spin 1s linear infinite, ringFadeIn 0.3s ease 0.2s forwards;
    }

    @keyframes ringFadeIn {
      to {
        opacity: 1;
      }
    }

    .loader-logo {
      width: 40px;
      height: auto;
      animation: pulse 2s infinite ease-in-out;
    }

    .loader-text {
      margin-top: 24px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      color: var(--or);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-size: 0.85rem;
      animation: pulse 1.5s infinite ease-in-out;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ─────────────────────────────────────────
   PROGRAM INFO MODAL
───────────────────────────────────────── */
    .prog-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, .7);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow-y: auto;
    }

    .prog-modal.show {
      display: flex
    }

    .prog-modal-inner {
      position: relative;
      background: #fff;
      border-radius: 22px;
      max-width: 640px;
      width: 100%;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
      animation: fadeUp .35s ease both;
    }

    .prog-modal-img {
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4.5rem;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .prog-modal-body {
      padding: 32px
    }

    .prog-modal-tag {
      display: inline-block;
      font-size: .65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--or);
      background: var(--orp);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
    }

    .prog-modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.22;
    }

    .prog-modal-desc {
      color: var(--mut);
      font-size: .92rem;
      line-height: 1.78;
    }

    .prog-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .35);
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      z-index: 10;
    }

    .prog-modal-close:hover {
      background: var(--or)
    }

    /* ─────────────────────────────────────────
   THOUGHTS / COMMENTS SECTION
───────────────────────────────────────── */
    .thoughts {
      background: linear-gradient(180deg, #FFFAF5 0%, #fff 100%);
      padding: 100px 0;
    }

    @media(max-width:700px) {
      .prog-modal-inner {
        border-radius: 14px
      }

      .prog-modal-body {
        padding: 22px
      }

      .prog-modal-title {
        font-size: 1.25rem
      }

      .thoughts {
        padding: 60px 0
      }
    }

    /* ─────────────────────────────────────────
   GOOGLE TRANSLATE WIDGET
───────────────────────────────────────── */
    #google_translate_element {
      display: inline-flex;
      align-items: center;
    }

    /* Remove the Google bar at the top of the page */
    body {
      top: 0 !important;
    }

    .goog-te-banner-frame,
    .skiptranslate {
      display: none !important;
    }

    .goog-te-gadget {
      font-family: inherit !important;
      color: transparent !important;
      font-size: 0 !important;
    }

    .goog-te-gadget .goog-te-combo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      color: var(--ink);
      background: var(--orp);
      border: 1.5px solid var(--bdr);
      border-radius: 8px;
      padding: 6px 10px;
      cursor: pointer;
      outline: none;
      transition: border-color .2s, background .2s;
      max-width: 130px;
    }

    .goog-te-gadget .goog-te-combo:hover,
    .goog-te-gadget .goog-te-combo:focus {
      border-color: var(--or);
      background: #fff;
    }

    @media(max-width:700px) {
      #google_translate_element {
        display: none
      }
    }

    /* CUSTOM USER LAYOUT FIXES */
    .hero {
      margin-top: 20px;
    }

    .hero-inner {
      padding-top: 40px;
    }

    /* Removed ultra-wide 1-column override per user request */
    /* @media (min-width: 2500px) { ... } */


    @media (max-width: 550px) {
      #topnav {
        min-height: 60px;
        padding: 5px 5%;
        justify-content: flex-start;
      }

      .nav-center {
        position: static !important;
        transform: none !important;
        text-align: left !important;
        margin-left: 15px;
      }

      .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0;
      }

      .nav-phone {
        display: flex !important;
        font-size: 0.72rem !important;
        margin-right: 8px !important;
        gap: 4px !important;
      }

      .nav-phone svg {
        width: 14px !important;
        height: 14px !important;
      }

      #google_translate_element,
      .header-contact {
        display: none !important;
      }

      .logo-wrap {
        width: 45px;
        height: 45px;
        border-radius: 12px;
      }

      .logo-wrap img {
        height: 100% !important;
      }

      .brand-name {
        font-size: 22px !important;
      }

      .brand-sub {
        font-size: 10px !important;
      }

      .hero-inner {
        display: flex !important;
        flex-direction: column-reverse;
        justify-content: center;
        width: 100%;
        gap: 12px;
      }

      .hero-right {
        display: flex !important;
        min-height: 55vh;
        width: 100%;
        align-items: center;
        justify-content: center;
        transform: scale(0.9);
        /* Scale down to fit on screen */
        padding-top: 0px;
      }

      .sc1 {
        left: 10px !important;
      }

      .sc5 {
        left: -5px !important;
        right: auto !important;
      }

      .sc4 {
        right: 210px !important;
      }

      .sc2 {
        right: 10px !important;
      }

      .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 90vh;
        /* Independent structural view */
        justify-content: center;
        padding-bottom: 40px;
      }

      .hero-h1 {
        font-size: 3.6rem !important;
        margin-bottom: 28px !important;
        line-height: 1.15 !important;
      }

      .hero-pill {
        justify-content: center;
        width: 95% !important;
      }

      .hero-pill .hero-dot {
        width: 10px !important;
        height: 10px !important;
      }

      /* Donation Modal Mobile Adjustments */
      .donate-inner {
        padding: 20px 18px !important;
        border-radius: 20px !important;
      }

      .donate-inner h3 {
        font-size: 1.3rem !important;
      }

      .donate-upi-id {
        padding: 12px 10px !important;
        font-size: 0.8rem !important;
      }

      .donate-accepted-row {
        padding: 10px 8px !important;
        margin-bottom: 20px !important;
      }

      .dar-logos img {
        height: 32px !important;
      }

      .donate-step-btn {
        padding: 12px !important;
        font-size: 0.9rem !important;
        margin-bottom: 10px;
      }

      .hero-sanskrit {
        position: relative;
        border-left: none !important;
        padding-left: 0 !important;
        text-align: center;
        font-size: 1.15rem !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px !important;
        justify-content: center;
        display: flex;
      }

      /* Fake floating orange line to perfectly duplicate screenshot */
      .hero-sanskrit::before {
        content: '';
        position: absolute;
        left: -8%;
        top: 4px;
        bottom: 4px;
        width: 4px;
        background: var(--or);
        border-radius: 4px;
      }

      .hero-desc {
        text-align: center;
        font-size: 1.25rem !important;
        margin-bottom: 45px !important;
        padding: 0 10px;
        line-height: 1.7 !important;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-btns {
        flex-direction: column;
        width: 90% !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px !important;
      }

      .hero-btns a {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 20px !important;
        font-size: 1.2rem !important;
        border-radius: 16px !important;
      }

      .fab-btn {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
      }

      .fab-btn svg {
        stroke: var(--ink) !important;
        width: 32px !important;
        height: 32px !important;
      }

      .right-fab-container {
        margin-left: 0 !important;
      }
    }



    @media (max-width: 430px) {
      #topnav {
        width: 100%;
        left: 0;
        top: 0;
        border-radius: 0;
        padding: 5px 10px !important;
        min-height: 48px !important;
      }

      .nav-right {
        padding-right: 4px;
      }

      .brand-name {
        font-size: 14px !important;
        white-space: nowrap;
      }

      .brand-sub {
        font-size: 7px !important;
        letter-spacing: 0.05em;
        white-space: nowrap;
      }

      .logo-wrap {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
      }

      .logo-wrap img {
        width: 100% !important;
        height: 100% !important;
      }

      .nav-center {
        margin-left: 6px !important;
      }

      .fab-btn svg {
        width: 24px !important;
        height: 24px !important;
      }

      .nav-phone {
        font-size: 0.7rem !important;
        margin: 0 4px !important;
        gap: 3px !important;
      }

      .nav-phone svg {
        width: 12px !important;
        height: 12px !important;
      }
    }

    /* ── FULL GALLERY MODAL ── */
    #galleryModal {
      position: fixed;
      inset: 0;
      background: rgba(10, 5, 0, 0.9);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 0;
      backdrop-filter: blur(18px);
    }

    #galleryModal.open {
      display: flex;
    }

    .gm-inner {
      width: 100%;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      background: #0D0700;
      position: relative;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      animation: modalSlideUp .4s cubic-bezier(0.19, 1, 0.22, 1) both;
      color: #F7E7D3;
    }

    .gm-head {
      padding: 24px 5%;
      background: linear-gradient(135deg, #1A0A00, #3D1800);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .gm-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .gm-brand img {
      height: 38px;
    }

    .gm-brand-txt h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: #fff;
    }

    .gm-brand-txt p {
      font-size: .65rem;
      color: var(--ors);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .gm-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all .2s;
    }

    .gm-close:hover {
      background: var(--or);
      border-color: var(--or);
      transform: rotate(90deg);
    }

    .gm-body {
      padding: 40px 5%;
      flex: 1;
    }

    .gm-hero {
      text-align: center;
      margin-bottom: 40px;
    }

    .gm-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: #fff;
      /* Changed to White */
      margin-bottom: 8px;
    }

    .gm-hero h1 span {
      color: var(--or);
      /* Saffron Orange Accent */
    }

    .gm-hero p {
      color: rgba(255, 255, 255, 0.6);
      /* Lighter for readability on dark */
      max-width: 600px;
      margin: 0 auto;
      font-size: .95rem;
    }

    .gm-filter {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .gm-fbtn {
      padding: 8px 18px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      /* Transparent Dark */
      color: rgba(255, 255, 255, 0.6);
      font-weight: 700;
      font-size: .8rem;
      cursor: pointer;
      transition: all .23s;
    }

    .gm-fbtn.active,
    .gm-fbtn:hover {
      background: var(--or);
      color: #fff;
      border-color: var(--or);
    }

    .gm-grid {
      columns: 4;
      column-gap: 16px;
    }

    @media(max-width: 1024px) {
      .gm-grid {
        columns: 3;
      }
    }

    @media(max-width: 768px) {
      .gm-grid {
        columns: 2;
      }
    }

    @media(max-width: 480px) {
      .gm-grid {
        columns: 1;
      }
    }

    .gm-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #f0ece8;
      transition: all .3s;
      border: 1px solid var(--bdr);
    }

    .gm-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .gm-item img,
    .gm-item video {
      width: 100%;
      display: block;
    }

    .gm-item-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 12px;
    }

    .gm-item:hover .gm-item-ov {
      opacity: 1;
    }

    .gm-title {
      color: #fff;
      font-weight: 800;
      font-size: .82rem;
    }

    .gm-type {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: .6rem;
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 800;
      text-transform: uppercase;
    }

    /* ─────────────────────────────────────────
       SCROLL REVEAL TRANSITIONS
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .reveal-up {
      /* No translation to prevent scroll-sapping layout shifts */
    }

    .reveal-down {
      /* No translation to prevent scroll-sapping layout shifts */
    }

    .reveal-left {
      /* No translation to prevent scroll-sapping layout shifts */
    }

    .reveal-right {
      /* No translation to prevent scroll-sapping layout shifts */
    }

    .reveal-scale {
      transform: scale(0.97);
    }

    .reveal.active {
      opacity: 1;
      transform: scale(1);
    }

    /* Staggered children */
    .stagger-reveal>* {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .stagger-reveal.active>* {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delay classes for up to 12 items */
    .stagger-reveal.active>*:nth-child(1) {
      transition-delay: 0.1s;
    }

    .stagger-reveal.active>*:nth-child(2) {
      transition-delay: 0.2s;
    }

    .stagger-reveal.active>*:nth-child(3) {
      transition-delay: 0.3s;
    }

    .nav-shadow {
      box-shadow: 0 4px 24px rgba(232, 97, 10, 0.12) !important;
    }

    /* --- COMPREHENSIVE RESPONSIVENESS FIXES --- */
    .nav-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      transition: all 0.3s ease;
      z-index: 10;
      pointer-events: none;
    }

    @media (max-width: 1400px) {
      .nav-socials {
        display: none !important;
      }
    }

    @media (max-width: 1150px) {
      #google_translate_element {
        display: none !important;
      }

      .brand-name {
        font-size: 26px !important;
      }

      .logo-wrap {
        width: 70px !important;
        height: 70px !important;
      }

      #topnav {
        min-height: 80px !important;
      }
    }

    @media (max-width: 1024px) {
      .nav-center {
        position: static !important;
        transform: none !important;
        text-align: left !important;
        margin-left: 15px;
        pointer-events: auto;
      }

      .nav-right {
        margin-left: auto;
      }

      #topnav {
        justify-content: flex-start;
      }

      .nav-cta {
        padding: 9px 18px !important;
        font-size: 0.8rem !important;
      }
    }

    @media (max-width: 850px) {
      .nav-cta {
        display: none !important;
      }

      .nav-phone {
        font-size: 0.8rem !important;
      }
    }

    /* Fix Hero and Body Overflow */
    html,
    body {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    .hero-inner {
      max-width: 1400px !important;
      width: 90% !important;
    }

    @media (max-width: 480px) {
      .hero-h1 {
        font-size: 2.8rem !important;
        /* Reduced for small phones */
      }

      .brand-name {
        font-size: 18px !important;
      }
    }

    @media (min-width: 1800px) {
      .hero-inner {
        max-width: 1600px !important;
      }
    }

    /* ─────────────────────────────────────────
   PROJECTS SECTION & MODALS
───────────────────────────────────────── */
    .projects {
      padding: 80px 5%;
      background: rgba(26, 10, 0, 0.92);
    }

    .projects .eyebrow {
      color: var(--ors);
    }

    .projects .eyebrow::before,
    .projects .eyebrow::after {
      background: var(--ors);
    }

    .projects .sec-title {
      color: #fff;
    }

    .projects .sec-sub {
      color: rgba(255, 255, 255, 0.65);
    }

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

    .proj-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
      backdrop-filter: blur(6px);
    }

    .proj-card:hover {
      transform: translateY(-8px);
      border-color: var(--or);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 12px 35px rgba(232, 97, 10, .25);
    }

    .proj-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .proj-info p {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }

    .proj-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }

    .proj-info {
      padding: 20px;
    }

    /* Placeholder cards not clickable */
    .proj-card.placeholder-card {
      cursor: default;
      opacity: 0.75;
    }

    .proj-card.placeholder-card:hover {
      transform: none;
      box-shadow: none;
    }

    /* ── Mobile: single card ── */
    @media (max-width: 768px) {
      .proj-grid {
        grid-template-columns: 1fr;
      }

      .proj-grid .proj-card:nth-child(n+2) {
        display: none;
      }

      .proj-mobile-hint {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(232, 97, 10, 0.15);
        border: 1px solid rgba(232, 97, 10, 0.3);
        border-radius: 12px;
        padding: 12px 18px;
        margin-bottom: 20px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 700;
      }
    }

    @media (min-width: 769px) {
      .proj-mobile-hint {
        display: none !important;
      }
    }

    /* ── View All Projects Modal ── */
    #viewAllModal {
      position: fixed;
      inset: 0;
      background: rgba(15, 6, 0, 0.97);
      z-index: 10000;
      display: none;
      flex-direction: column;
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    #viewAllModal.open {
      display: flex;
    }

    .va-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 40px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      flex-shrink: 0;
    }

    .va-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.01em;
    }

    .va-header h2 span {
      color: var(--or);
    }

    .va-header-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .va-count {
      font-size: 0.82rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .va-close-btn {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      backdrop-filter: blur(5px);
      transition: all 0.25s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .va-close-btn:hover {
      background: var(--or);
      transform: rotate(90deg) scale(1.1);
    }

    .va-grid-wrap {
      flex: 1;
      overflow-y: auto;
      padding: 32px 40px 40px;
      scrollbar-width: thin;
      scrollbar-color: var(--or) transparent;
    }

    .va-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 24px;
    }

    .va-card {
      background: rgba(44, 20, 10, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      position: relative;
    }

    .va-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      border-color: rgba(232, 97, 10, 0.35);
    }

    .va-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

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

    .va-card-img-wrap {
      overflow: hidden;
    }

    .va-card-body {
      padding: 22px 22px 18px;
    }

    .va-card-date {
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--or);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .va-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .va-card-desc {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .va-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 22px 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .va-card-cta {
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--or);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .va-card-arrow {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(232, 97, 10, 0.15);
      color: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: background 0.2s, transform 0.2s;
    }

    .va-card:hover .va-card-arrow {
      background: var(--or);
      color: #fff;
      transform: translateX(3px);
    }

    .va-no-projects {
      grid-column: 1/-1;
      text-align: center;
      padding: 80px 20px;
      color: rgba(255, 255, 255, 0.3);
      font-size: 1.1rem;
    }

    /* ── Scroll-To-Top Button ── */
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--or);
      color: #fff;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(232, 97, 10, 0.45);
      opacity: 0;
      transform: translateY(20px) scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }

    #scrollTopBtn.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    #scrollTopBtn:hover {
      background: var(--orv);
      transform: translateY(-3px) scale(1.08);
      box-shadow: 0 12px 32px rgba(232, 97, 10, 0.6);
    }

    .close-modal {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(255, 255, 255, .2);
      color: #fff;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 10001;
      backdrop-filter: blur(5px);
      transition: all 0.2s;
    }

    .close-modal:hover {
      background: var(--or);
      transform: rotate(90deg);
    }

    /* Wiki Modal */
    #wikiModal {
      position: fixed;
      inset: 0;
      background: rgba(26, 10, 0, .85);
      z-index: 10005;
      display: none;
      overflow-y: auto;
      padding: 40px 5%;
      backdrop-filter: blur(15px);
    }

    .wiki-content {
      max-width: 800px;
      margin: 0 auto;
      background: rgba(44, 20, 10, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
      overflow: hidden;
      position: relative;
      animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .wiki-hero {
      width: 100%;
      height: 350px;
      position: relative;
    }

    .wiki-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wiki-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, .5);
      color: #fff;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      backdrop-filter: blur(4px);
      transition: all 0.2s;
    }

    .wiki-close:hover {
      background: var(--or);
    }

    .wiki-body {
      padding: 40px;
    }

    .wiki-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .wiki-text {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.8;
      white-space: pre-wrap;
    }