
    /* Reset body margin/padding */
    body {
      margin: 0;
      padding: 0;
      background: var(--pid-bg, #ffffff);
    }

    /* Ensure .pid-page fills the viewport */
    .pid-page {
      min-height: 100vh;
      width: 100%;
    }
	.pid-footer-brand img {
		max-width: 100%;
		display: block;
	}
    /* ==========================================================================
       PlotInDholera — Design System
       All rules namespaced under .pid-page to avoid collisions
       ========================================================================== */

    /* ----- Reset & Base ----- */
    .pid-page {
      --pid-primary: #2c9143;
      --pid-primary-dark: #1a5a3a;
      --pid-primary-foreground: #ffffff;
      --pid-accent: #e8f3ed;
      --pid-bg: #ffffff;
      --pid-muted: #f5f7f6;
      --pid-border: #e4e9e6;
      --pid-foreground: #17251c;
      --pid-muted-foreground: #5c6b62;

      --pid-font-heading: 'PT Serif', Georgia, serif;
      --pid-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      --pid-radius-sm: 6px;
      --pid-radius-md: 10px;
      --pid-radius-lg: 16px;

      --pid-shadow-sm: 0 2px 12px rgba(26, 90, 58, 0.08);
      --pid-shadow-md: 0 8px 32px rgba(26, 90, 58, 0.14);
      --pid-shadow-lg: 0 16px 48px rgba(26, 90, 58, 0.18);

      --pid-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
      --pid-dur-fast: 180ms;
      --pid-dur-med: 320ms;
      --pid-dur-slow: 600ms;

      font-family: var(--pid-font-body);
      color: var(--pid-foreground);
      background: var(--pid-bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .pid-page * {
      box-sizing: border-box;
    }
    /* .pid-page img {
      max-width: 100%;
      display: block;
    } */
    .pid-page a {
      text-decoration: none;
    }
    .pid-page button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }
    .pid-page ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .pid-page h1,
    .pid-page h2,
    .pid-page h3,
    .pid-page h4 {
      margin: 0;
      font-family: var(--pid-font-heading);
    }
    .pid-page p {
      margin: 0;
    }

    /* ----- Container ----- */
    .pid-container {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(20px, 4vw, 56px);
    }

    /* ----- Typography ----- */
    .pid-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--pid-primary);
      margin-bottom: 12px;
      display: inline-block;
    }

    .pid-h1 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      line-height: 1.12;
      color: var(--pid-foreground);
    }

    .pid-h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--pid-foreground);
    }

    .pid-h3 {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--pid-foreground);
    }

    .pid-sub {
      font-size: clamp(15px, 1.3vw, 17px);
      color: var(--pid-muted-foreground);
      line-height: 1.7;
      max-width: 640px;
    }

    .pid-section {
      padding-block: clamp(56px, 8vw, 112px);
    }
    .pid-section--muted {
      background: var(--pid-muted);
    }

    /* ----- Buttons ----- */
    .pid-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: var(--pid-radius-md);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        box-shadow var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-fast) var(--pid-ease),
        color var(--pid-dur-fast) var(--pid-ease),
        border-color var(--pid-dur-fast) var(--pid-ease);
      will-change: transform;
    }
    .pid-btn:active {
      transform: translateY(1px) scale(0.98);
    }

    .pid-btn--primary {
      background: var(--pid-primary);
      color: var(--pid-primary-foreground);
    }
    .pid-btn--primary:hover {
      background: var(--pid-primary-dark);
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--white {
      background: #fff;
      color: var(--pid-primary);
    }
    .pid-btn--white:hover {
      background: var(--pid-primary-dark);
      color: #fff;
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--outline-white {
      border: 2px solid rgba(255, 255, 255, 0.85);
      color: #fff;
      background: transparent;
    }
    .pid-btn--outline-white:hover {
      background: #fff;
      color: var(--pid-primary);
      transform: translateY(-2px);
    }

    .pid-btn--outline {
      border: 2px solid var(--pid-primary);
      color: var(--pid-primary);
      background: transparent;
    }
    .pid-btn--outline:hover {
      background: var(--pid-primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .pid-btn--ghost {
      color: var(--pid-primary);
      font-weight: 600;
      border-bottom: 1px solid var(--pid-primary);
      border-radius: 0;
      padding: 2px 0;
      font-size: 13px;
    }
    .pid-btn--ghost:hover {
      gap: 12px;
      color: var(--pid-primary-dark);
      border-color: var(--pid-primary-dark);
    }

    .pid-btn--sm {
      padding: 9px 18px;
      font-size: 13px;
      flex: 1;
    }

    /* ----- Scroll Reveal ----- */
    /* .pid-reveal {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
      transition: opacity var(--pid-dur-slow) var(--pid-ease),
        transform var(--pid-dur-slow) var(--pid-ease);
      will-change: opacity, transform;
    } */
    /* .pid-reveal.pid-in {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    } */

    @media (prefers-reduced-motion: reduce) {
      .pid-page * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .pid-reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* ----- HEADER / NAV ----- */
    .pid-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding-block: 20px;
      transition: padding var(--pid-dur-med) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-header.pid-scrolled {
      padding-block: 12px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }
    .pid-header.pid-scrolled .pid-navlink,
    .pid-header.pid-scrolled .pid-logo-text,
    .pid-header.pid-scrolled .pid-burger span {
      color: var(--pid-foreground);
    }
    .pid-header.pid-scrolled .pid-burger span {
      background: var(--pid-foreground);
    }

    .pid-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .pid-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pid-logo-mark {
      width: 42px;
      height: 42px;
      border-radius: var(--pid-radius-sm);
      background: var(--pid-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-logo:hover .pid-logo-mark {
      transform: rotate(-6deg) scale(1.05);
    }
    .pid-logo-mark svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      fill: none;
    }
    .pid-logo-text {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      transition: color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-logo-text b {
      color: var(--pid-primary);
      font-weight: 700;
    }
    .pid-header:not(.pid-scrolled) .pid-logo-text {
      color: #fff;
    }

    .pid-navlinks {
      display: flex;
      align-items: center;
      gap: 34px;
    }
    .pid-navlink {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-block: 4px;
      transition: color var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-navlink::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--pid-primary);
      transition: width var(--pid-dur-med) var(--pid-ease);
    }
    .pid-navlink:hover::after {
      width: 100%;
    }
    .pid-navlink.pid-active {
      color: var(--pid-primary);
    }
    .pid-navlink.pid-active::after {
      width: 100%;
    }

    .pid-header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* ----- Burger Menu ----- */
    .pid-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      z-index: 120;
    }
    .pid-burger span {
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        opacity var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-burger.pid-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .pid-burger.pid-open span:nth-child(2) {
      opacity: 0;
    }
    .pid-burger.pid-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .pid-burger.pid-open span {
      background: var(--pid-foreground);
    }

    .pid-mobile-nav {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(320px, 84vw);
      background: #fff;
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
      z-index: 110;
      padding: 100px 32px 40px;
      transform: translateX(100%);
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .pid-mobile-nav.pid-open {
      transform: translateX(0);
    }
    .pid-mobile-nav a {
      font-size: 16px;
      font-weight: 600;
      color: var(--pid-foreground);
    }
    .pid-mobile-nav a:hover {
      color: var(--pid-primary);
    }

    .pid-scrim {
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 15, 0.4);
      z-index: 105;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--pid-dur-med) var(--pid-ease);
    }
    .pid-scrim.pid-open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ----- Page Hero (for inner pages) ----- */
    .pid-page-hero {
      position: relative;
      min-height: 320px;
      display: flex;
      align-items: center;
      background: linear-gradient(105deg,
          rgba(26, 90, 58, 0.86) 0%,
          rgba(44, 145, 67, 0.55) 55%,
          rgba(26, 90, 58, 0.25) 100%),
        url('../image/hero-banner.webp') center/cover no-repeat;
      padding-top: 110px;
      padding-bottom: 60px;
    }
    .pid-page-hero-inner {
      text-align: center;
    }
    .pid-page-hero h1 {
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }
    .pid-page-hero p {
      font-size: clamp(15px, 1.4vw, 18px);
      color: rgba(255, 255, 255, 0.9);
      margin-top: 12px;
    }
    .pid-breadcrumb {
      display: inline-flex;
      gap: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 16px;
    }
    .pid-breadcrumb a {
      color: #fff;
    }
    .pid-breadcrumb a:hover {
      color: var(--pid-primary);
    }
    .pid-breadcrumb .pid-sep {
      opacity: 0.4;
    }

    /* ----- Section Headers ----- */
    .pid-section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    /* ----- Why Dholera Grid (Reused for About layout) ----- */
    .pid-why-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: stretch;
    }
    .pid-why-img {
      border-radius: var(--pid-radius-md);
      overflow: hidden;
      height: 340px;
      box-shadow: var(--pid-shadow-sm);
    }
    .pid-why-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms var(--pid-ease);
    }
    .pid-why-img:hover img {
      transform: scale(1.06);
    }

    /* ----- Cards Grid ----- */
    .pid-cardgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    /* ----- Leadership Card (fixed spacing & alignment) ----- */
    .pid-leadership-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 32px 36px;
      display: flex;
      gap: 28px;
      align-items: flex-start;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
      max-width: 720px;
      margin: 0 auto;
    }
    .pid-leadership-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--pid-shadow-md);
    }
    .pid-leadership-card .pid-avatar-lg {
      flex-shrink: 0;
      width: 96px;
      height: 96px;
      border-radius: var(--pid-radius-md);
      object-fit: cover;
      border: 3px solid var(--pid-accent);
    }
    .pid-leadership-card .pid-leadership-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .pid-leadership-card .pid-leadership-info h3 {
      font-size: 22px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: var(--pid-foreground);
    }
    .pid-leadership-card .pid-leadership-info .pid-role {
      font-size: 13px;
      font-weight: 600;
      color: var(--pid-primary);
      letter-spacing: 0.02em;
    }
    .pid-leadership-card .pid-leadership-info .pid-bio {
      font-size: 14.5px;
      line-height: 1.75;
      color: var(--pid-muted-foreground);
      margin-top: 6px;
    }

    /* ----- Blog Card (Media & Press - fixed spacing) ----- */
    .pid-blog-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-blog-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--pid-shadow-lg);
    }
    .pid-blog-img {
      height: 200px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .pid-blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 600ms var(--pid-ease);
    }
    .pid-blog-card:hover .pid-blog-img img {
      transform: scale(1.08);
    }
    .pid-blog-body {
      padding: 24px 26px 26px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .pid-blog-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      flex-wrap: wrap;
    }
    .pid-blog-tag .pid-dot {
      width: 3px;
      height: 14px;
      border-radius: 3px;
      background: var(--pid-primary);
      flex-shrink: 0;
    }
    .pid-blog-tag b {
      color: var(--pid-primary);
      font-weight: 700;
    }
    .pid-blog-tag span {
      color: var(--pid-muted-foreground);
    }
    .pid-blog-body h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--pid-foreground);
      margin: 2px 0 4px;
    }
    .pid-blog-body .pid-btn--ghost {
      margin-top: 6px;
      align-self: flex-start;
      font-size: 13px;
    }

    /* ----- Testimonials ----- */
    .pid-testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pid-testi-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-testi-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--pid-shadow-md);
    }
    .pid-stars {
      display: flex;
      gap: 2px;
      color: var(--pid-primary);
      font-family: var(--pid-font-heading);
      font-size: 16px;
    }
    .pid-testi-card p {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--pid-foreground);
    }
    .pid-testi-person {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px solid var(--pid-border);
    }
    .pid-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--pid-accent);
      color: var(--pid-primary-dark);
      font-weight: 700;
      font-size: 14px;
      font-family: var(--pid-font-heading);
    }
    .pid-testi-person strong {
      display: block;
      font-size: 13.5px;
      font-weight: 700;
    }
    .pid-testi-person span {
      font-size: 12px;
      color: var(--pid-muted-foreground);
    }

    /* ----- CTA Banner ----- */
    .pid-cta-banner {
      margin-top: 56px;
      border-radius: var(--pid-radius-lg);
      background: #fff;
      border: 1px solid var(--pid-primary);
      padding: clamp(24px, 4vw, 40px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: var(--pid-shadow-sm);
    }
    .pid-cta-banner h3 {
      font-size: 21px;
      font-weight: 700;
    }
    .pid-cta-banner p {
      font-size: 13.5px;
      color: var(--pid-muted-foreground);
      margin-top: 4px;
    }
    .pid-cta-banner-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ----- FINAL CTA ----- */
    .pid-final-cta {
      position: relative;
      overflow: hidden;
      background: linear-gradient(100deg, rgba(26, 90, 58, 0.88) 0%, rgba(44, 145, 67, 0.72) 60%, rgba(44, 145, 67, 0.5) 100%),
        url('../image/hero-banner.webp') center/cover no-repeat;
      padding-block: clamp(60px, 8vw, 100px);
    }
    .pid-final-cta-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .pid-final-cta h2 {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .pid-final-cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    .pid-final-stats {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .pid-final-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pid-final-stat strong {
      font-size: 26px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: #fff;
    }
    .pid-final-stat span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 2px;
    }
    .pid-final-divider {
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.25);
    }
    .pid-final-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ----- FOOTER ----- */
    .pid-footer {
      background: #12241a;
      color: #fff;
      padding-block: 70px 30px;
    }
    .pid-footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .pid-footer-brand span {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
    }
    .pid-footer-brand b {
      color: var(--pid-primary);
    }
    .pid-footer-col p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }
    .pid-social-row {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .pid-social-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--pid-radius-sm);
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color var(--pid-dur-fast) var(--pid-ease),
        transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-social-btn:hover {
      background: var(--pid-primary);
      transform: translateY(-3px);
    }
    .pid-social-btn svg {
      width: 17px;
      height: 17px;
      stroke: #fff;
      fill: none;
    }
    .pid-footer-col h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .pid-footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .pid-footer-col a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      transition: color var(--pid-dur-fast) var(--pid-ease),
        padding-left var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-footer-col a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .pid-footer-contact {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      padding-block: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-fc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .pid-fc-item svg {
      width: 22px;
      height: 22px;
      stroke: var(--pid-primary);
      fill: none;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pid-fc-item small {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 3px;
    }
    .pid-fc-item a,
    .pid-fc-item span {
      font-size: 14.5px;
      font-weight: 600;
      color: #fff;
    }
    .pid-fc-item a:hover {
      color: var(--pid-primary);
    }

    .pid-footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 28px;
    }
    .pid-footer-bottom p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
    }
    .pid-footer-legal a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal a:hover {
      color: #fff;
    }

    /* ----- Toast ----- */
    .pid-toast {
      position: fixed;
      bottom: 26px;
      left: 50%;
      transform: translate(-50%, 120%);
      background: var(--pid-foreground);
      color: #fff;
      padding: 14px 22px;
      border-radius: var(--pid-radius-md);
      font-size: 13.5px;
      font-weight: 600;
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
      z-index: 200;
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 90vw;
    }
    .pid-toast.pid-show {
      transform: translate(-50%, 0);
    }
    .pid-toast-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pid-primary);
      flex-shrink: 0;
    }

    /* ----- Responsive ----- */
    @media (max-width: 1080px) {
      .pid-cardgrid,
      .pid-testi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .pid-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 920px) {
      .pid-navlinks,
      .pid-header-actions .pid-btn {
        display: none;
      }
      .pid-burger {
        display: flex;
      }
      .pid-why-grid {
        grid-template-columns: 1fr;
      }
      .pid-leadership-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
      }
      .pid-leadership-card .pid-leadership-info {
        align-items: center;
      }
    }

    @media (max-width: 760px) {
      .pid-cardgrid,
      .pid-testi-grid {
        grid-template-columns: 1fr;
      }
      .pid-footer-grid {
        grid-template-columns: 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr;
      }
      .pid-cta-banner {
        flex-direction: column;
        align-items: flex-start;
      }
      .pid-leadership-card {
        padding: 24px 20px;
      }
      .pid-leadership-card .pid-avatar-lg {
        width: 80px;
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .pid-page-hero {
        min-height: 240px;
        padding-top: 96px;
        padding-bottom: 40px;
      }
      .pid-section {
        padding-block: 48px;
      }
      .pid-blog-body {
        padding: 18px 18px 20px;
      }
      .pid-blog-body h3 {
        font-size: 14px;
      }
    }
  
    /* ==========================================================================
       RESET BODY MARGIN
       ========================================================================== */
    html, body {
      margin: 0 !important;
      padding: 0 !important;
      background: #ffffff;
      overflow-x: hidden;
    }

    /* ==========================================================================
       PlotInDholera — Design System
       ========================================================================== */
    .pid-page {
      --pid-primary: #2c9143;
      --pid-primary-dark: #1a5a3a;
      --pid-primary-foreground: #ffffff;
      --pid-accent: #e8f3ed;
      --pid-bg: #ffffff;
      --pid-muted: #f5f7f6;
      --pid-border: #e4e9e6;
      --pid-foreground: #17251c;
      --pid-muted-foreground: #5c6b62;

      --pid-font-heading: 'PT Serif', Georgia, serif;
      --pid-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      --pid-radius-sm: 6px;
      --pid-radius-md: 10px;
      --pid-radius-lg: 16px;

      --pid-shadow-sm: 0 2px 12px rgba(26, 90, 58, 0.08);
      --pid-shadow-md: 0 8px 32px rgba(26, 90, 58, 0.14);
      --pid-shadow-lg: 0 16px 48px rgba(26, 90, 58, 0.18);

      --pid-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
      --pid-dur-fast: 180ms;
      --pid-dur-med: 320ms;
      --pid-dur-slow: 600ms;

      font-family: var(--pid-font-body);
      color: var(--pid-foreground);
      background: var(--pid-bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      min-height: 100vh;
      width: 100%;
    }

    .pid-page * {
      box-sizing: border-box;
    }
    /* .pid-page img {
      max-width: 100%;
      display: block;
    } */
    .pid-page a {
      text-decoration: none;
    }
    .pid-page button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }
    .pid-page ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .pid-page h1,
    .pid-page h2,
    .pid-page h3,
    .pid-page h4 {
      margin: 0;
      font-family: var(--pid-font-heading);
    }
    .pid-page p {
      margin: 0;
    }

    /* ----- Container ----- */
    .pid-container {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(20px, 4vw, 56px);
    }

    /* ----- Typography ----- */
    .pid-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--pid-primary);
      margin-bottom: 12px;
      display: inline-block;
    }

    .pid-h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--pid-foreground);
    }

    .pid-h3 {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--pid-foreground);
    }

    .pid-sub {
      font-size: clamp(15px, 1.3vw, 17px);
      color: var(--pid-muted-foreground);
      line-height: 1.7;
      max-width: 640px;
      margin-inline: auto;
    }

    .pid-section {
      padding-block: clamp(56px, 8vw, 112px);
    }
    .pid-section--muted {
      background: var(--pid-muted);
    }

    /* ----- Buttons ----- */
    .pid-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: var(--pid-radius-md);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        box-shadow var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-fast) var(--pid-ease),
        color var(--pid-dur-fast) var(--pid-ease),
        border-color var(--pid-dur-fast) var(--pid-ease);
      will-change: transform;
    }
    .pid-btn:active {
      transform: translateY(1px) scale(0.98);
    }

    .pid-btn--primary {
      background: var(--pid-primary);
      color: var(--pid-primary-foreground);
    }
    .pid-btn--primary:hover {
      background: var(--pid-primary-dark);
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--white {
      background: #fff;
      color: var(--pid-primary);
    }
    .pid-btn--white:hover {
      background: var(--pid-primary-dark);
      color: #fff;
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--outline-white {
      border: 2px solid rgba(255, 255, 255, 0.85);
      color: #fff;
      background: transparent;
    }
    .pid-btn--outline-white:hover {
      background: #fff;
      color: var(--pid-primary);
      transform: translateY(-2px);
    }

    .pid-btn--outline {
      border: 2px solid var(--pid-primary);
      color: var(--pid-primary);
      background: transparent;
    }
    .pid-btn--outline:hover {
      background: var(--pid-primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .pid-btn--ghost {
      color: var(--pid-primary);
      font-weight: 600;
      border-bottom: 1px solid var(--pid-primary);
      border-radius: 0;
      padding: 2px 0;
      font-size: 13px;
    }
    .pid-btn--ghost:hover {
      gap: 12px;
      color: var(--pid-primary-dark);
      border-color: var(--pid-primary-dark);
    }

    .pid-btn--full {
      width: 100%;
      justify-content: center;
    }

    /* ----- Scroll Reveal ----- */
    /* .pid-reveal {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
      transition: opacity var(--pid-dur-slow) var(--pid-ease),
        transform var(--pid-dur-slow) var(--pid-ease);
      will-change: opacity, transform;
    } */
    /* .pid-reveal.pid-in {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    } */

    @media (prefers-reduced-motion: reduce) {
      .pid-page * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .pid-reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* ----- HEADER / NAV ----- */
    .pid-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding-block: 20px;
      transition: padding var(--pid-dur-med) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-header.pid-scrolled {
      padding-block: 12px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }
    .pid-header.pid-scrolled .pid-navlink,
    .pid-header.pid-scrolled .pid-logo-text,
    .pid-header.pid-scrolled .pid-burger span {
      color: var(--pid-foreground);
    }
    .pid-header.pid-scrolled .pid-burger span {
      background: var(--pid-foreground);
    }

    .pid-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .pid-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pid-logo-mark {
      width: 42px;
      height: 42px;
      border-radius: var(--pid-radius-sm);
      background: var(--pid-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-logo:hover .pid-logo-mark {
      transform: rotate(-6deg) scale(1.05);
    }
    .pid-logo-mark svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      fill: none;
    }
    .pid-logo-text {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      transition: color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-logo-text b {
      color: var(--pid-primary);
      font-weight: 700;
    }
    .pid-header:not(.pid-scrolled) .pid-logo-text {
      color: #fff;
    }

    .pid-navlinks {
      display: flex;
      align-items: center;
      gap: 34px;
    }
    .pid-navlink {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-block: 4px;
      transition: color var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-navlink::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--pid-primary);
      transition: width var(--pid-dur-med) var(--pid-ease);
    }
    .pid-navlink:hover::after {
      width: 100%;
    }
    .pid-navlink.pid-active {
      color: var(--pid-primary);
    }
    .pid-navlink.pid-active::after {
      width: 100%;
    }

    .pid-header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* ----- Burger Menu ----- */
    .pid-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      z-index: 120;
    }
    .pid-burger span {
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        opacity var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-burger.pid-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .pid-burger.pid-open span:nth-child(2) {
      opacity: 0;
    }
    .pid-burger.pid-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .pid-burger.pid-open span {
      background: var(--pid-foreground);
    }

    .pid-mobile-nav {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(320px, 84vw);
      background: #fff;
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
      z-index: 110;
      padding: 100px 32px 40px;
      transform: translateX(100%);
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .pid-mobile-nav.pid-open {
      transform: translateX(0);
    }
    .pid-mobile-nav a {
      font-size: 16px;
      font-weight: 600;
      color: var(--pid-foreground);
    }
    .pid-mobile-nav a:hover {
      color: var(--pid-primary);
    }

    .pid-scrim {
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 15, 0.4);
      z-index: 105;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--pid-dur-med) var(--pid-ease);
    }
    .pid-scrim.pid-open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ==========================================================================
       BLOG HERO
       ========================================================================== */
    .pid-blog-hero {
      position: relative;
      min-height: 420px;
      width: 100%;
      background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1440&q=80');
      background-size: cover;
      background-position: center;
      padding-top: 110px;
      padding-bottom: 60px;
      overflow: hidden;
    }
    .pid-blog-hero .pid-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(44, 145, 67, 0.85) 0%,
        rgba(44, 145, 67, 0.65) 100%
      );
      z-index: 1;
    }
    .pid-blog-hero .pid-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      min-height: 420px;
      padding: 40px clamp(20px, 4vw, 64px);
      gap: 8px;
    }
    .pid-blog-hero .pid-hero-eyebrow {
      font-size: 12px;
      font-weight: 700;
      font-family: var(--pid-font-body);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.85);
      opacity: 0.9;
    }
    .pid-blog-hero h1 {
      font-size: clamp(40px, 5vw, 56px);
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: #fff;
      line-height: 1.1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      margin: 0;
    }
    .pid-blog-hero .pid-hero-desc {
      font-size: clamp(16px, 1.4vw, 18px);
      font-family: var(--pid-font-body);
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      max-width: 620px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      margin-top: 4px;
    }

    /* ==========================================================================
       BLOG GRID
       ========================================================================== */
    .pid-blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .pid-blog-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--pid-shadow-md);
    }
    .pid-blog-card .pid-card-image {
      position: relative;
      height: 176px;
      overflow: hidden;
      background: var(--pid-muted);
    }
    .pid-blog-card .pid-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 600ms var(--pid-ease);
    }
    .pid-blog-card:hover .pid-card-image img {
      transform: scale(1.06);
    }
    .pid-blog-card .pid-card-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 3px 14px;
      border-radius: 50px;
      background: var(--pid-primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .pid-blog-card .pid-card-body {
      padding: 20px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }
    .pid-blog-card .pid-card-body h3 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--pid-foreground);
    }
    .pid-blog-card .pid-card-body p {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--pid-muted-foreground);
    }
    .pid-blog-card .pid-card-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--pid-muted-foreground);
      padding-top: 12px;
      border-top: 1px solid var(--pid-border);
      margin-top: auto;
    }
    .pid-blog-card .pid-card-meta .pid-meta-sep {
      opacity: 0.4;
    }
    .pid-blog-card .pid-card-author {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 2px;
    }
    .pid-blog-card .pid-card-author .pid-avatar-sm {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(44, 145, 67, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: var(--pid-primary);
      flex-shrink: 0;
    }
    .pid-blog-card .pid-card-author .pid-author-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--pid-foreground);
    }

    /* ----- Read Article Button (FIXED: now using outline style for better visibility) ----- */
    .pid-blog-card .pid-btn-read {
      margin-top: 8px;
      padding: 11px 20px;
      border: 2px solid var(--pid-primary);
      border-radius: var(--pid-radius-md);
      background: transparent;
      color: var(--pid-primary);
      font-size: 13px;
      font-weight: 700;
      width: 100%;
      text-align: center;
      transition: all var(--pid-dur-fast) var(--pid-ease);
      cursor: pointer;
      font-family: var(--pid-font-body);
      letter-spacing: 0.02em;
    }
    .pid-blog-card .pid-btn-read:hover {
      background: var(--pid-primary);
      color: #fff;
      box-shadow: var(--pid-shadow-sm);
      transform: translateY(-2px);
    }
    .pid-blog-card .pid-btn-read:active {
      transform: translateY(0) scale(0.98);
    }

    /* ==========================================================================
       NEWSLETTER
       ========================================================================== */
    .pid-newsletter-wrap {
      max-width: 820px;
      margin: 0 auto;
      background: var(--pid-primary);
      border-radius: var(--pid-radius-lg);
      padding: 56px 48px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(44, 145, 67, 0.15);
    }
    .pid-newsletter-wrap .pid-newsletter-eyebrow {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.85);
    }
    .pid-newsletter-wrap h2 {
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      margin: 8px 0 12px;
    }
    .pid-newsletter-wrap p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 28px;
    }
    .pid-newsletter-wrap .pid-newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 480px;
      margin: 0 auto;
    }
    .pid-newsletter-wrap .pid-newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border-radius: var(--pid-radius-md);
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 14px;
      font-family: inherit;
      transition: background var(--pid-dur-fast) var(--pid-ease),
        border-color var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-newsletter-wrap .pid-newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }
    .pid-newsletter-wrap .pid-newsletter-form input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.6);
    }
    .pid-newsletter-wrap .pid-newsletter-form .pid-btn {
      background: #fff;
      color: var(--pid-primary);
      padding: 12px 28px;
      font-weight: 600;
      border-radius: var(--pid-radius-md);
      border: none;
      font-size: 14px;
    }
    .pid-newsletter-wrap .pid-newsletter-form .pid-btn:hover {
      background: var(--pid-primary-dark);
      color: #fff;
    }
    .pid-newsletter-wrap .pid-newsletter-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 16px;
    }
    .pid-newsletter-wrap .pid-field-error {
      color: #ffdddd;
      font-size: 13px;
      margin-top: 6px;
      min-height: 20px;
    }

    /* ==========================================================================
       FINAL CTA
       ========================================================================== */
    .pid-final-cta {
      position: relative;
      overflow: hidden;
      background: linear-gradient(100deg, rgba(26, 90, 58, 0.88) 0%, rgba(44, 145, 67, 0.72) 60%, rgba(44, 145, 67, 0.5) 100%),
        url('../image/hero-banner.webp') center/cover no-repeat;
      padding-block: clamp(60px, 8vw, 100px);
      width: 100%;
    }
    .pid-final-cta-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .pid-final-cta h2 {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .pid-final-cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    .pid-final-stats {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .pid-final-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pid-final-stat strong {
      font-size: 26px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: #fff;
    }
    .pid-final-stat span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 2px;
    }
    .pid-final-divider {
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.25);
    }
    .pid-final-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .pid-footer {
      background: #12241a;
      color: #fff;
      padding-block: 70px 30px;
      width: 100%;
    }
    .pid-footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .pid-footer-brand span {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
    }
    .pid-footer-brand b {
      color: var(--pid-primary);
    }
    .pid-footer-col p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }
    .pid-social-row {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .pid-social-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--pid-radius-sm);
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color var(--pid-dur-fast) var(--pid-ease),
        transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-social-btn:hover {
      background: var(--pid-primary);
      transform: translateY(-3px);
    }
    .pid-social-btn svg {
      width: 17px;
      height: 17px;
      stroke: #fff;
      fill: none;
    }
    .pid-footer-col h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .pid-footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .pid-footer-col a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      transition: color var(--pid-dur-fast) var(--pid-ease),
        padding-left var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-footer-col a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .pid-footer-contact {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      padding-block: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-fc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .pid-fc-item svg {
      width: 22px;
      height: 22px;
      stroke: var(--pid-primary);
      fill: none;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pid-fc-item small {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 3px;
    }
    .pid-fc-item a,
    .pid-fc-item span {
      font-size: 14.5px;
      font-weight: 600;
      color: #fff;
    }
    .pid-fc-item a:hover {
      color: var(--pid-primary);
    }

    .pid-footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 28px;
    }
    .pid-footer-bottom p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
    }
    .pid-footer-legal a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal a:hover {
      color: #fff;
    }

    /* ==========================================================================
       TOAST
       ========================================================================== */
    .pid-toast {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translate(-50%, 120%);
      background: var(--pid-foreground);
      color: #fff;
      padding: 16px 28px;
      border-radius: var(--pid-radius-md);
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
      z-index: 200;
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 90vw;
      pointer-events: none;
      white-space: nowrap;
    }
    .pid-toast.pid-show {
      transform: translate(-50%, 0);
      pointer-events: auto;
    }
    .pid-toast-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pid-primary);
      flex-shrink: 0;
    }

    /* ----- Section Header (centered) ----- */
    .pid-section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    /* ==========================================================================
       RESPONSIVE
       ========================================================================== */
    @media (max-width: 1080px) {
      .pid-blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .pid-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 920px) {
      .pid-navlinks,
      .pid-header-actions .pid-btn {
        display: none;
      }
      .pid-burger {
        display: flex;
      }
    }

    @media (max-width: 760px) {
      .pid-blog-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
      }
      .pid-blog-hero {
        min-height: 300px;
        padding-top: 90px;
        padding-bottom: 40px;
      }
      .pid-blog-hero .pid-hero-content {
        min-height: 300px;
        padding: 24px 20px;
      }
      .pid-blog-hero h1 {
        font-size: clamp(28px, 7vw, 36px);
      }
      .pid-blog-hero .pid-hero-desc {
        font-size: 14px;
      }
      .pid-newsletter-wrap {
        padding: 36px 24px;
      }
      .pid-newsletter-wrap h2 {
        font-size: 26px;
      }
      .pid-newsletter-wrap .pid-newsletter-form {
        flex-direction: column;
      }
      .pid-newsletter-wrap .pid-newsletter-form .pid-btn {
        width: 100%;
        justify-content: center;
      }
      .pid-footer-grid {
        grid-template-columns: 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr;
      }
      .pid-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .pid-toast {
        white-space: normal;
        padding: 14px 20px;
        font-size: 13px;
        bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .pid-section {
        padding-block: 40px;
      }
      .pid-blog-card .pid-card-body {
        padding: 16px 16px 18px;
      }
      .pid-blog-card .pid-card-body h3 {
        font-size: 14px;
      }
      .pid-newsletter-wrap {
        padding: 28px 18px;
      }
    }
  
    /* ==========================================================================
       RESET BODY MARGIN
       ========================================================================== */
    html, body {
      margin: 0 !important;
      padding: 0 !important;
      background: #ffffff;
      overflow-x: hidden;
    }

    /* ==========================================================================
       PlotInDholera — Design System
       ========================================================================== */
    .pid-page {
      --pid-primary: #2c9143;
      --pid-primary-dark: #1a5a3a;
      --pid-primary-foreground: #ffffff;
      --pid-accent: #e8f3ed;
      --pid-bg: #ffffff;
      --pid-muted: #f5f7f6;
      --pid-border: #e4e9e6;
      --pid-foreground: #17251c;
      --pid-muted-foreground: #5c6b62;

      --pid-font-heading: 'PT Serif', Georgia, serif;
      --pid-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      --pid-radius-sm: 6px;
      --pid-radius-md: 10px;
      --pid-radius-lg: 16px;

      --pid-shadow-sm: 0 2px 12px rgba(26, 90, 58, 0.08);
      --pid-shadow-md: 0 8px 32px rgba(26, 90, 58, 0.14);
      --pid-shadow-lg: 0 16px 48px rgba(26, 90, 58, 0.18);

      --pid-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
      --pid-dur-fast: 180ms;
      --pid-dur-med: 320ms;
      --pid-dur-slow: 600ms;

      font-family: var(--pid-font-body);
      color: var(--pid-foreground);
      background: var(--pid-bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      min-height: 100vh;
      width: 100%;
    }

    .pid-page * {
      box-sizing: border-box;
    }
    /* .pid-page img {
      max-width: 100%;
      display: block;
    } */
    .pid-page a {
      text-decoration: none;
    }
    .pid-page button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }
    .pid-page ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .pid-page h1,
    .pid-page h2,
    .pid-page h3,
    .pid-page h4 {
      margin: 0;
      font-family: var(--pid-font-heading);
    }
    .pid-page p {
      margin: 0;
    }

    /* ----- Container ----- */
    .pid-container {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(20px, 4vw, 56px);
    }

    /* ----- Typography ----- */
    .pid-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--pid-primary);
      margin-bottom: 12px;
      display: inline-block;
    }

    .pid-h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--pid-foreground);
    }

    .pid-h3 {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--pid-foreground);
    }

    .pid-sub {
      font-size: clamp(15px, 1.3vw, 17px);
      color: var(--pid-muted-foreground);
      line-height: 1.7;
      max-width: 640px;
      margin-inline: auto;
    }

    .pid-section {
      padding-block: clamp(56px, 8vw, 112px);
    }
    .pid-section--muted {
      background: var(--pid-muted);
    }

    /* ----- Buttons ----- */
    .pid-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: var(--pid-radius-md);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        box-shadow var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-fast) var(--pid-ease),
        color var(--pid-dur-fast) var(--pid-ease),
        border-color var(--pid-dur-fast) var(--pid-ease);
      will-change: transform;
    }
    .pid-btn:active {
      transform: translateY(1px) scale(0.98);
    }

    .pid-btn--primary {
      background: var(--pid-primary);
      color: var(--pid-primary-foreground);
    }
    .pid-btn--primary:hover {
      background: var(--pid-primary-dark);
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--white {
      background: #fff;
      color: var(--pid-primary);
    }
    .pid-btn--white:hover {
      background: var(--pid-primary-dark);
      color: #fff;
      box-shadow: var(--pid-shadow-md);
      transform: translateY(-2px);
    }

    .pid-btn--outline-white {
      border: 2px solid rgba(255, 255, 255, 0.85);
      color: #fff;
      background: transparent;
    }
    .pid-btn--outline-white:hover {
      background: #fff;
      color: var(--pid-primary);
      transform: translateY(-2px);
    }

    .pid-btn--outline {
      border: 2px solid var(--pid-primary);
      color: var(--pid-primary);
      background: transparent;
    }
    .pid-btn--outline:hover {
      background: var(--pid-primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .pid-btn--ghost {
      color: var(--pid-primary);
      font-weight: 600;
      border-bottom: 1px solid var(--pid-primary);
      border-radius: 0;
      padding: 2px 0;
      font-size: 13px;
    }
    .pid-btn--ghost:hover {
      gap: 12px;
      color: var(--pid-primary-dark);
      border-color: var(--pid-primary-dark);
    }

    .pid-btn--full {
      width: 100%;
      justify-content: center;
    }

    /* ----- Scroll Reveal ----- */
    .pid-reveal {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
      transition: opacity var(--pid-dur-slow) var(--pid-ease),
        transform var(--pid-dur-slow) var(--pid-ease);
      will-change: opacity, transform;
    }
    .pid-reveal.pid-in {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    @media (prefers-reduced-motion: reduce) {
      .pid-page * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .pid-reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* ----- HEADER / NAV ----- */
    .pid-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding-block: 20px;
      transition: padding var(--pid-dur-med) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-header.pid-scrolled {
      padding-block: 12px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }
    .pid-header.pid-scrolled .pid-navlink,
    .pid-header.pid-scrolled .pid-logo-text,
    .pid-header.pid-scrolled .pid-burger span {
      color: var(--pid-foreground);
    }
    .pid-header.pid-scrolled .pid-burger span {
      background: var(--pid-foreground);
    }

    .pid-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .pid-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pid-logo-mark {
      width: 42px;
      height: 42px;
      border-radius: var(--pid-radius-sm);
      background: var(--pid-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-logo:hover .pid-logo-mark {
      transform: rotate(-6deg) scale(1.05);
    }
    .pid-logo-mark svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      fill: none;
    }
    .pid-logo-text {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      transition: color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-logo-text b {
      color: var(--pid-primary);
      font-weight: 700;
    }
    .pid-header:not(.pid-scrolled) .pid-logo-text {
      color: #fff;
    }

    .pid-navlinks {
      display: flex;
      align-items: center;
      gap: 34px;
    }
    .pid-navlink {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-block: 4px;
      transition: color var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-navlink::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--pid-primary);
      transition: width var(--pid-dur-med) var(--pid-ease);
    }
    .pid-navlink:hover::after {
      width: 100%;
    }
    /* .pid-navlink.pid-active {
      color: var(--pid-primary);
    } */
	.pid-navlink.pid-active
	{
		color: var(--pid-primary);
		background: #fff;
		padding: 5px 10px;
		border-radius: 5px;
	}
    .pid-navlink.pid-active::after {
      width: 100%;
    }

    .pid-header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* ----- Burger Menu ----- */
    .pid-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      z-index: 120;
    }
    .pid-burger span {
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform var(--pid-dur-fast) var(--pid-ease),
        opacity var(--pid-dur-fast) var(--pid-ease),
        background-color var(--pid-dur-med) var(--pid-ease);
    }
    .pid-burger.pid-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .pid-burger.pid-open span:nth-child(2) {
      opacity: 0;
    }
    .pid-burger.pid-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .pid-burger.pid-open span {
      background: var(--pid-foreground);
    }

    .pid-mobile-nav {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(320px, 84vw);
      background: #fff;
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
      z-index: 110;
      padding: 100px 32px 40px;
      transform: translateX(100%);
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .pid-mobile-nav.pid-open {
      transform: translateX(0);
    }
    .pid-mobile-nav a {
      font-size: 16px;
      font-weight: 600;
      color: var(--pid-foreground);
    }
    .pid-mobile-nav a:hover {
      color: var(--pid-primary);
    }

    .pid-scrim {
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 15, 0.4);
      z-index: 105;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--pid-dur-med) var(--pid-ease);
    }
    .pid-scrim.pid-open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ==========================================================================
       INVESTMENT HERO
       ========================================================================== */
    .pid-investment-hero {
      position: relative;
      min-height: 420px;
      width: 100%;
      background-image: url('https://images.unsplash.com/photo-1553729784-e91953dec042?w=1440&q=80');
      background-size: cover;
      background-position: center;
      padding-top: 110px;
      padding-bottom: 60px;
      overflow: hidden;
    }
    .pid-investment-hero .pid-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(44, 145, 67, 0.85) 0%,
        rgba(44, 145, 67, 0.65) 100%
      );
      z-index: 1;
    }
    .pid-investment-hero .pid-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      min-height: 420px;
      padding: 40px clamp(20px, 4vw, 64px);
      gap: 8px;
    }
    .pid-investment-hero .pid-hero-eyebrow {
      font-size: 12px;
      font-weight: 700;
      font-family: var(--pid-font-body);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.85);
      opacity: 0.9;
    }
    .pid-investment-hero h1 {
      font-size: clamp(40px, 5vw, 56px);
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: #fff;
      line-height: 1.1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      margin: 0;
    }
    .pid-investment-hero .pid-hero-desc {
      font-size: clamp(16px, 1.4vw, 18px);
      font-family: var(--pid-font-body);
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      max-width: 620px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      margin-top: 4px;
    }
    .pid-investment-hero .pid-hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    /* ==========================================================================
       WHY INVEST CARDS
       ========================================================================== */
    .pid-why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .pid-why-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 30px 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--pid-shadow-md);
    }
    .pid-why-card .pid-icon-box {
      width: 56px;
      height: 56px;
      border-radius: var(--pid-radius-sm);
      background: rgba(44, 145, 67, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pid-why-card .pid-icon-box svg {
      stroke: var(--pid-primary);
    }
    .pid-why-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--pid-foreground);
    }
    .pid-why-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--pid-muted-foreground);
    }

    /* ==========================================================================
       RETURNS SECTION
       ========================================================================== */
    .pid-returns-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .pid-returns-chart {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 32px 36px;
      box-shadow: var(--pid-shadow-sm);
    }
    .pid-returns-chart .pid-chart-bar {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 6px 0;
    }
    .pid-returns-chart .pid-chart-bar .pid-bar-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--pid-muted-foreground);
      width: 60px;
      flex-shrink: 0;
    }
    .pid-returns-chart .pid-chart-bar .pid-bar-track {
      flex: 1;
      height: 20px;
      background: var(--pid-muted);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .pid-returns-chart .pid-chart-bar .pid-bar-track .pid-bar-fill {
      height: 100%;
      background: var(--pid-primary);
      border-radius: 4px;
      transition: width 1.2s var(--pid-ease);
    }
    .pid-returns-chart .pid-chart-bar .pid-bar-value {
      font-size: 14px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: var(--pid-primary);
      width: 60px;
      flex-shrink: 0;
      text-align: right;
    }

    .pid-returns-stats {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pid-returns-stats .pid-stat-box {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 20px 24px;
      box-shadow: var(--pid-shadow-sm);
    }
    .pid-returns-stats .pid-stat-box .pid-stat-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--pid-muted-foreground);
    }
    .pid-returns-stats .pid-stat-box .pid-stat-number {
      font-size: 32px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: var(--pid-primary);
      margin-top: 2px;
    }
    .pid-returns-stats .pid-stat-box p {
      font-size: 13px;
      color: var(--pid-foreground);
      margin-top: 6px;
      line-height: 1.6;
    }

    .pid-disclaimer {
      background: rgba(44, 145, 67, 0.06);
      border: 1px solid rgba(44, 145, 67, 0.2);
      border-radius: var(--pid-radius-md);
      padding: 16px 22px;
      margin-top: 20px;
    }
    .pid-disclaimer p {
      font-size: 13px;
      color: var(--pid-foreground);
      line-height: 1.7;
    }
    .pid-disclaimer p strong {
      color: var(--pid-primary);
    }

    /* ==========================================================================
       NEXT STEPS
       ========================================================================== */
    .pid-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .pid-step-card {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: var(--pid-shadow-sm);
      transition: transform var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--pid-shadow-md);
    }
    .pid-step-card .pid-step-number {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--pid-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      flex-shrink: 0;
    }
    .pid-step-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--pid-foreground);
    }
    .pid-step-card p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--pid-muted-foreground);
      flex: 1;
    }
    .pid-step-card .pid-btn {
      margin-top: 4px;
    }

    /* ----- CTA Banner (inside steps) ----- */
    .pid-steps-cta {
      background: var(--pid-primary);
      border-radius: var(--pid-radius-lg);
      padding: 40px 48px;
      text-align: center;
      margin-top: 48px;
    }
    .pid-steps-cta h3 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
    }
    .pid-steps-cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 8px;
      margin-bottom: 20px;
    }

    /* ==========================================================================
       FAQ
       ========================================================================== */
    .pid-faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 820px;
      margin: 0 auto;
    }
    .pid-faq-item {
      background: #fff;
      border: 1px solid var(--pid-border);
      border-radius: var(--pid-radius-md);
      overflow: hidden;
      box-shadow: var(--pid-shadow-sm);
      transition: border-color var(--pid-dur-med) var(--pid-ease),
        box-shadow var(--pid-dur-med) var(--pid-ease);
    }
    .pid-faq-item:hover {
      border-color: var(--pid-primary);
    }
    .pid-faq-item .pid-faq-question {
      width: 100%;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-size: 15px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: var(--pid-foreground);
      background: none;
      border: none;
      cursor: pointer;
      transition: background-color var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-faq-item .pid-faq-question:hover {
      background: var(--pid-muted);
    }
    .pid-faq-item .pid-faq-icon {
      font-size: 20px;
      color: var(--pid-primary);
      flex-shrink: 0;
      transition: transform var(--pid-dur-med) var(--pid-ease);
    }
    .pid-faq-item.pid-open .pid-faq-icon {
      transform: rotate(180deg);
    }
    .pid-faq-item .pid-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--pid-dur-med) var(--pid-ease),
        padding var(--pid-dur-med) var(--pid-ease);
    }
    .pid-faq-item.pid-open .pid-faq-answer {
      max-height: 300px;
      padding: 0 24px 20px 24px;
    }
    .pid-faq-item .pid-faq-answer p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--pid-muted-foreground);
      padding-top: 16px;
      border-top: 1px solid var(--pid-border);
    }

    /* ==========================================================================
       FINAL CTA
       ========================================================================== */
    .pid-final-cta {
      position: relative;
      overflow: hidden;
      background: linear-gradient(100deg, rgba(26, 90, 58, 0.88) 0%, rgba(44, 145, 67, 0.72) 60%, rgba(44, 145, 67, 0.5) 100%),
        url('../image/hero-banner.webp') center/cover no-repeat;
      padding-block: clamp(60px, 8vw, 100px);
      width: 100%;
    }
    .pid-final-cta-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .pid-final-cta h2 {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .pid-final-cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    .pid-final-stats {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .pid-final-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pid-final-stat strong {
      font-size: 26px;
      font-weight: 700;
      font-family: var(--pid-font-heading);
      color: #fff;
    }
    .pid-final-stat span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 2px;
    }
    .pid-final-divider {
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.25);
    }
    .pid-final-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .pid-footer {
      background: #12241a;
      color: #fff;
      padding-block: 70px 30px;
      width: 100%;
    }
    .pid-footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .pid-footer-brand span {
      font-family: var(--pid-font-heading);
      font-size: 19px;
      font-weight: 700;
    }
    .pid-footer-brand b {
      color: var(--pid-primary);
    }
    .pid-footer-col p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }
    .pid-social-row {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .pid-social-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--pid-radius-sm);
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color var(--pid-dur-fast) var(--pid-ease),
        transform var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-social-btn:hover {
      background: var(--pid-primary);
      transform: translateY(-3px);
    }
    .pid-social-btn svg {
      width: 17px;
      height: 17px;
      stroke: #fff;
      fill: none;
    }
    .pid-footer-col h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .pid-footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .pid-footer-col a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      transition: color var(--pid-dur-fast) var(--pid-ease),
        padding-left var(--pid-dur-fast) var(--pid-ease);
    }
    .pid-footer-col a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .pid-footer-contact {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      padding-block: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .pid-fc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .pid-fc-item svg {
      width: 22px;
      height: 22px;
      stroke: var(--pid-primary);
      fill: none;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .pid-fc-item small {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 3px;
    }
    .pid-fc-item a,
    .pid-fc-item span {
      font-size: 14.5px;
      font-weight: 600;
      color: #fff;
    }
    .pid-fc-item a:hover {
      color: var(--pid-primary);
    }

    .pid-footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 28px;
    }
    .pid-footer-bottom p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
    }
    .pid-footer-legal a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }
    .pid-footer-legal a:hover {
      color: #fff;
    }

    /* ==========================================================================
       TOAST
       ========================================================================== */
    .pid-toast {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translate(-50%, 120%);
      background: var(--pid-foreground);
      color: #fff;
      padding: 16px 28px;
      border-radius: var(--pid-radius-md);
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
      z-index: 200;
      transition: transform var(--pid-dur-med) var(--pid-ease);
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 90vw;
      pointer-events: none;
      white-space: nowrap;
    }
    .pid-toast.pid-show {
      transform: translate(-50%, 0);
      pointer-events: auto;
    }
    .pid-toast-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pid-primary);
      flex-shrink: 0;
    }

    /* ----- Section Header (centered) ----- */
    .pid-section-head-center {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 48px;
    }
    .pid-section-head-center .pid-sub {
      margin-inline: auto;
    }

    /* ==========================================================================
       RESPONSIVE
       ========================================================================== */
    @media (max-width: 1080px) {
      .pid-why-grid {
        grid-template-columns: 1fr 1fr;
      }
      .pid-returns-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .pid-steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .pid-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 920px) {
      .pid-navlinks,
      .pid-header-actions .pid-btn {
        display: none;
      }
      .pid-burger {
        display: flex;
      }
    }

    @media (max-width: 760px) {
      .pid-why-grid {
        grid-template-columns: 1fr;
      }
      .pid-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
      }
      .pid-returns-chart {
        padding: 20px 16px;
      }
      .pid-returns-chart .pid-chart-bar .pid-bar-label {
        width: 44px;
        font-size: 11px;
      }
      .pid-returns-chart .pid-chart-bar .pid-bar-value {
        width: 44px;
        font-size: 12px;
      }
      .pid-investment-hero {
        min-height: 300px;
        padding-top: 90px;
        padding-bottom: 40px;
      }
      .pid-investment-hero .pid-hero-content {
        min-height: 300px;
        padding: 24px 20px;
      }
      .pid-investment-hero h1 {
        font-size: clamp(28px, 7vw, 36px);
      }
      .pid-investment-hero .pid-hero-desc {
        font-size: 14px;
      }
      .pid-investment-hero .pid-hero-actions {
        flex-direction: column;
        width: 100%;
      }
      .pid-investment-hero .pid-hero-actions .pid-btn {
        width: 100%;
        justify-content: center;
      }
      .pid-footer-grid {
        grid-template-columns: 1fr;
      }
      .pid-footer-contact {
        grid-template-columns: 1fr;
      }
      .pid-steps-cta {
        padding: 28px 20px;
      }
      .pid-steps-cta h3 {
        font-size: 20px;
      }
      .pid-toast {
        white-space: normal;
        padding: 14px 20px;
        font-size: 13px;
        bottom: 20px;
      }
      .pid-returns-stats .pid-stat-box .pid-stat-number {
        font-size: 26px;
      }
      .pid-faq-item .pid-faq-question {
        font-size: 14px;
        padding: 14px 18px;
      }
    }

    @media (max-width: 480px) {
      .pid-section {
        padding-block: 40px;
      }
      .pid-why-card {
        padding: 20px;
      }
      .pid-why-card h3 {
        font-size: 16px;
      }
    }
    
    
    /* =========================================
   Mobile / Tablet Projects Dropdown
   ========================================= */

@media (max-width: 991px) {

    .pid-mobile-dropdown {
        width: 100%;
    }

    .pid-mobile-dropdown-toggle {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        text-decoration: none;
        cursor: pointer;
    }

    .pid-mobile-dropdown-toggle svg {
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    /* Dropdown menu */
    .pid-mobile-dropdown-menu {
        display: none;
        width: 100%;
        max-height: 55vh;
        overflow-y: auto;
        background: rgba(0, 0, 0, 0.025);
        padding: 5px 0 8px;
    }

    /* When dropdown is opened */
    .pid-mobile-dropdown.active .pid-mobile-dropdown-menu {
        display: block;
    }

    .pid-mobile-dropdown.active .pid-mobile-dropdown-toggle svg {
        transform: rotate(180deg);
    }

    /* All dropdown links */
    .pid-mobile-dropdown-menu a {
        display: block;
        width: 100%;
        padding: 9px 20px 9px 30px !important;
        font-size: 14px !important;
        line-height: 1.4;
        text-decoration: none;
        opacity: 0.85;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* View All Projects */
    .pid-mobile-dropdown-menu a:first-child {
        padding-left: 30px !important;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 15px !important;
        opacity: 1;
        margin-bottom: 2px !important;
    }

    .pid-mobile-dropdown-menu a:last-child {
        border-bottom: 0;
    }

    .pid-mobile-dropdown-menu a:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.03);
    }

    /* Better scrollbar */
    .pid-mobile-dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }

    .pid-mobile-dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
}


/* =========================================
   Smaller Mobile
   ========================================= */

@media (max-width: 575px) {

    .pid-mobile-dropdown-toggle {
        padding: 11px 15px;
        font-size: 15px;
    }

    .pid-mobile-dropdown-menu {
        max-height: 50vh;
    }

    .pid-mobile-dropdown-menu a {
        padding: 8px 15px 8px 28px !important;
        font-size: 13px !important;
    }

    .pid-mobile-dropdown-menu a:first-child {
        padding-left: 28px !important;
        font-size: 14px !important;
    }

    .pid-mobile-dropdown-toggle svg {
        width: 15px;
        height: 15px;
    }
}


  