 :root {
      --th-red: #e85c5c;
      --th-red-dark: #c94040;
      --th-red-light: #f0837f;
      --th-dark: #1e2535;
      --th-mid: #2f3a52;
      --th-text: #3a4460;
      --th-muted: #7a8499;
      --th-bg: #f5f6f9;
      --th-white: #ffffff;
      --th-card-shadow: 0 20px 60px rgba(232,92,92,0.15);
      --th-transition: cubic-bezier(0.23, 1, 0.32, 1);
    }

   

    
    /* ─── Parallax Wrapper ─── */
    .thsp-parallax-wrapper {
      position: relative;
      overflow: hidden;
      background: var(--th-dark);
    }

    .thsp-parallax-bg {
      position: absolute;
      inset: -60px 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(232,92,92,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(232,92,92,0.10) 0%, transparent 65%),
        linear-gradient(135deg, #151c2e 0%, #1e2535 50%, #2a1e2e 100%);
      will-change: transform;
      transition: transform 0.05s linear;
    }

    .thsp-parallax-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.6;
    }

    /* ─── Section Inner ─── */
    .thsp-section-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      margin: 0 auto;
      padding: 50px 24px;
    }

    /* ─── Header ─── */
    .thsp-section-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .thsp-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,92,92,0.15);
      border: 1px solid rgba(232,92,92,0.3);
      color: var(--th-red-light);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .thsp-eyebrow i { font-size: 10px; }

    .thsp-headline {
     font-size: 2.2rem;
  font-weight: 600;
      color: var(--th-white);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .thsp-headline span {
      color: var(--th-red);
      position: relative;
    }

    .thsp-headline span::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--th-red);
      border-radius: 2px;
      opacity: 0.4;
    }

    .thsp-subline {
      color: var(--th-muted);
      font-size: 16px;
      font-weight: 300;
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ─── Stats Grid ─── */
    .thsp-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    /* ─── Stat Card ─── */
    .thsp-stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 36px 24px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform 0.5s var(--th-transition),
                  border-color 0.4s ease,
                  background 0.4s ease,
                  box-shadow 0.5s var(--th-transition);

      /* Scroll-reveal initial state */
      opacity: 0;
      transform: translateY(48px) scale(0.96);
    }

    .thsp-stat-card.thsp-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .thsp-stat-card:hover {
      background: rgba(232,92,92,0.10);
      border-color: rgba(232,92,92,0.35);
      box-shadow: var(--th-card-shadow);
      transform: translateY(-6px) scale(1.02);
    }

    /* Shimmer line at top on hover */
    .thsp-stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--th-red), transparent);
      transform: scaleX(0);
      transition: transform 0.4s var(--th-transition);
    }

    .thsp-stat-card:hover::before { transform: scaleX(1); }

    /* ─── Icon Box ─── */
    .thsp-icon-box {
      width: 72px; height: 72px;
      background: var(--th-red);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      position: relative;
      transition: transform 0.4s var(--th-transition), box-shadow 0.4s ease;
      box-shadow: 0 8px 32px rgba(232,92,92,0.35);
    }

    .thsp-stat-card:hover .thsp-icon-box {
      transform: rotate(-6deg) scale(1.08);
      box-shadow: 0 12px 40px rgba(232,92,92,0.55);
    }

    .thsp-icon-box i {
      font-size: 28px;
      color: #fff;
    }

    /* ─── Number ─── */
    .thsp-stat-number {
      font-size: 1.8rem;
  font-weight: 600;
      color: var(--th-white);
      line-height: 1;
      margin-bottom: 8px;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
    }

    .thsp-stat-number .thsp-suffix {
      font-size: 0.55em;
      color: var(--th-red-light);
      font-weight: 700;
    }

    /* ─── Label ─── */
    .thsp-stat-label {
      font-size: 13px;
      font-weight: 400;
      color: var(--th-muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      line-height: 1.5;
    }

    /* ─── Divider ─── */
    .thsp-stat-divider {
      width: 32px;
      height: 2px;
      background: rgba(232,92,92,0.3);
      border-radius: 2px;
      margin: 14px auto;
      transition: width 0.4s var(--th-transition), background 0.3s ease;
    }

    .thsp-stat-card:hover .thsp-stat-divider {
      width: 52px;
      background: var(--th-red);
    }

    /* ─── Scroll Delay Utilities ─── */
    .thsp-delay-1 { transition-delay: 0.05s; }
    .thsp-delay-2 { transition-delay: 0.15s; }
    .thsp-delay-3 { transition-delay: 0.25s; }
    .thsp-delay-4 { transition-delay: 0.35s; }

    /* ─── Counter animation ─── */
    .thsp-count-display { display: inline; }

    /* ─── Floating particles ─── */
    .thsp-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .thsp-particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(232,92,92,0.15);
      animation: thsp-float linear infinite;
    }

    @keyframes thsp-float {
      0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.5; }
      100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
    }

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .thsp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 520px) {
      .thsp-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .thsp-section-inner { padding: 64px 16px; }
      .thsp-icon-box { width: 58px; height: 58px; }
      .thsp-icon-box i { font-size: 22px; }
      .thsp-stat-card { padding: 28px 16px 24px; }
    }

    @media (max-width: 360px) {
      .thsp-stats-grid { grid-template-columns: 1fr; }
    }

    /* ─── Demo spacers (to show scroll effect) ─── */
    .thsp-demo-spacer {
      height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--th-bg);
      font-family: 'DM Sans', sans-serif;
      color: var(--th-muted);
      font-size: 15px;
      letter-spacing: 1px;
    }

    .thsp-demo-spacer span {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0.6;
    }

    .thsp-scroll-hint {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--th-dark);
      color: #fff;
      font-size: 12px;
      padding: 10px 22px;
      border-radius: 100px;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: thsp-bounce 2s ease-in-out infinite;
      z-index: 100;
      pointer-events: none;
    }

    @keyframes thsp-bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(-6px); }
    }








    /* ==================ABOUT============================= */
     :root {
      --thabout2-red:       #e85c5c;
      --thabout2-red-dark:  #c94040;
      --thabout2-red-glow:  rgba(232,92,92,0.12);
      --thabout2-ink:       #1a2235;
      --thabout2-ink2:      #2e3a52;
      --thabout2-body:      #4a5568;
      --thabout2-muted:     #8896b0;
      --thabout2-bg:        #f7f8fb;
      --thabout2-white:     #ffffff;
      --thabout2-line:      rgba(26,34,53,0.09);
      --thabout2-ease:      cubic-bezier(0.22, 1, 0.36, 1);
    }

   
    /* ── Section Shell ── */
    .thabout2-section {
      position: relative;
      padding: 110px 24px 130px;
      overflow: hidden;
    }

    .thabout2-glow-tr {
      position: absolute; top: -160px; right: -160px;
      width: 620px; height: 620px; border-radius: 50%;
      background: radial-gradient(circle, rgba(232,92,92,0.10) 0%, transparent 68%);
      pointer-events: none;
    }
    .thabout2-glow-bl {
      position: absolute; bottom: -120px; left: -120px;
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(232,92,92,0.06) 0%, transparent 68%);
      pointer-events: none;
    }
    .thabout2-dotgrid {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(26,34,53,0.055) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* ── Container — centred single column ── */
    .thabout2-container {
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin: 0 auto;
    }

    /* ── Eyebrow ── */
    .thabout2-eyebrow-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    .thabout2-eyebrow-line {
      flex: 1; max-width: 80px; height: 1px;
      background: linear-gradient(to right, transparent, var(--thabout2-red));
    }
    .thabout2-eyebrow-line.thabout2-flip {
      background: linear-gradient(to left, transparent, var(--thabout2-red));
    }
    .thabout2-eyebrow-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--thabout2-red-glow);
      border: 1px solid rgba(232,92,92,0.22);
      border-radius: 100px; padding: 6px 16px;
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--thabout2-red);
    }
    .thabout2-eyebrow-badge i { font-size: 9px; }

    /* ── Headline ── */
    .thabout2-headline-block { text-align: center; margin-bottom: 20px; }

    .thabout2-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5.5vw, 62px);
      font-weight: 700; line-height: 1.12;
      color: var(--thabout2-ink); margin-bottom: 18px;
    }
    .thabout2-h1-red  { color: var(--thabout2-red); }
    .thabout2-h1-ital { font-style: italic; }

    .thabout2-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-size: 19px;
      color: var(--thabout2-muted); letter-spacing: 0.4px;
    }

    /* ── Divider ── */
    .thabout2-divider {
      display: flex; align-items: center; gap: 0; margin: 40px 0;
    }
    .thabout2-divider-line { flex: 1; height: 1px; background: var(--thabout2-line); }
    .thabout2-divider-icon {
      width: 42px; height: 42px; background: var(--thabout2-red); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 18px;
      box-shadow: 0 6px 24px rgba(232,92,92,0.30); flex-shrink: 0;
    }
    .thabout2-divider-icon i { font-size: 15px; color: #fff; }

    /* ── Intro ── */
    .thabout2-intro {
      font-size: 17px; font-weight: 300; line-height: 1.9;
      color: var(--thabout2-body); text-align: center; margin-bottom: 44px;
    }
    .thabout2-intro strong { font-weight: 600; color: var(--thabout2-ink2); }

    /* ── Heritage Card ── */
    .thabout2-heritage-card {
      background: var(--thabout2-white); border-radius: 20px;
      border-left: 4px solid var(--thabout2-red);
      padding: 36px 40px;
      box-shadow: 0 6px 40px rgba(0,0,0,0.06); margin-bottom: 32px;
    }
    .thabout2-hcard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .thabout2-hcard-icon {
      width: 38px; height: 38px; background: var(--thabout2-red-glow);
      color: var(--thabout2-red); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; flex-shrink: 0;
    }
    .thabout2-hcard-label {
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--thabout2-red);
    }
    .thabout2-hcard-body { font-size: 15.5px; line-height: 1.95; color: var(--thabout2-body); }
    .thabout2-hcard-body strong { color: var(--thabout2-ink); font-weight: 600; }

    /* ── Pills ── */
    .thabout2-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
    .thabout2-pill {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 7px 16px; border-radius: 100px;
      background: var(--thabout2-bg); border: 1px solid var(--thabout2-line);
      font-size: 12.5px; font-weight: 500; color: var(--thabout2-ink2); cursor: default;
      transition: background 0.28s, border-color 0.28s, color 0.28s, transform 0.28s var(--thabout2-ease);
    }
    .thabout2-pill i { font-size: 10px; color: var(--thabout2-red); }
    .thabout2-pill:hover {
      background: var(--thabout2-red-glow); border-color: rgba(232,92,92,0.28);
      color: var(--thabout2-red); transform: translateY(-2px);
    }

    /* ── Dark Callout ── */
    .thabout2-callout {
      background: var(--thabout2-ink); border-radius: 20px;
      padding: 36px 40px; display: flex; align-items: flex-start; gap: 22px;
      position: relative; overflow: hidden; margin-bottom: 44px;
    }
    .thabout2-callout::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--thabout2-red), var(--thabout2-red-dark));
    }
    .thabout2-callout::after {
      content: '30+'; position: absolute; right: 24px; bottom: -10px;
      font-family: 'Cormorant Garamond', serif; font-size: 100px; font-weight: 700;
      color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
    }
    .thabout2-callout-icon {
      width: 50px; height: 50px; background: var(--thabout2-red); border-radius: 14px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(232,92,92,0.4);
    }
    .thabout2-callout-icon i { font-size: 20px; color: #fff; }
    .thabout2-callout-text { font-size: 15.5px; line-height: 1.9; color: rgba(255,255,255,0.72); }
    .thabout2-callout-text strong { color: #fff; font-weight: 600; }
    .thabout2-callout-text .thabout2-red-hi { color: var(--thabout2-red); font-weight: 600; }

    /* ── CTA Row ── */
    .thabout2-cta-row {
      display: flex; align-items: center; justify-content: center;
      gap: 24px; flex-wrap: wrap;
    }
    .thabout2-btn-fill {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--thabout2-red); color: #fff;
      font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
      padding: 14px 28px; border-radius: 12px; text-decoration: none;
      box-shadow: 0 8px 28px rgba(232,92,92,0.35);
      transition: background 0.28s, transform 0.28s var(--thabout2-ease), box-shadow 0.28s;
    }
    .thabout2-btn-fill:hover {
      background: var(--thabout2-red-dark); transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(232,92,92,0.45);
    }
    .thabout2-btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 500; color: var(--thabout2-ink); text-decoration: none;
      transition: color 0.2s;
    }
    .thabout2-btn-ghost:hover { color: var(--thabout2-red); }
    .thabout2-btn-ghost i { font-size: 11px; transition: transform 0.28s; }
    .thabout2-btn-ghost:hover i { transform: translateX(5px); }

    /* ── Scroll Reveal ── */
    .thabout2-rv {
      opacity: 0; transform: translateY(34px);
      transition: opacity 0.75s var(--thabout2-ease), transform 0.75s var(--thabout2-ease);
    }
    .thabout2-rv.thabout2-in { opacity: 1; transform: translateY(0); }

    .thabout2-rv-scale {
      opacity: 0; transform: scale(0.94);
      transition: opacity 0.75s var(--thabout2-ease), transform 0.75s var(--thabout2-ease);
    }
    .thabout2-rv-scale.thabout2-in { opacity: 1; transform: scale(1); }

    .thabout2-d1 { transition-delay: 0.05s; }
    .thabout2-d2 { transition-delay: 0.15s; }
    .thabout2-d3 { transition-delay: 0.25s; }
    .thabout2-d4 { transition-delay: 0.32s; }
    .thabout2-d5 { transition-delay: 0.40s; }
    .thabout2-d6 { transition-delay: 0.48s; }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      .thabout2-section { padding: 72px 18px 90px; }
      .thabout2-heritage-card, .thabout2-callout { padding: 26px 22px; }
      .thabout2-callout { flex-direction: column; }
      .thabout2-h1 { font-size: clamp(30px, 8vw, 46px); }
    }