/*
Theme Name: PageForge Landing Theme
Theme URI: https://pageforgeconverter.netlify.app/html-to-wordpress
Author: PageForge Converter Suite
Author URI: https://pageforgeconverter.netlify.app/
Description: Fast, responsive WordPress landing theme converted by PageForge with in-browser privacy.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: erd-ezyzip
*/

/* ================= EMBEDDED STYLESHEET ================= */
    /* =========================================================
   ERD — Company Profile Website
   Built on the structural template of tatasteel.com:
   fixed header -> cascading dark flyout menu -> full-bleed
   hero folds -> content pages with breadcrumbs -> footer.
   Typeface note: Tata Steel's live site does not expose its
   licensed display face in a way that can be extracted from
   screenshots, so this mock substitutes the closest open
   pairing: Playfair Display (thin-serif fold headlines, e.g.
   "VISION", "Company Profile") + Poppins (nav/body/UI, the
   geometric sans used everywhere else on the real site).
   ========================================================= */
    :root {
      --navy: #0c1b3d;
      --navy-2: #132a5e;
      --blue: #1c3f94;
      --blue-light: #2f5bc9;
      --red: #e2231a;
      --green: #7ec13f;
      --green-dark: #5da428;
      --ink: #1c1f26;
      --muted: #6b7280;
      --line: #e3e7ef;
      --bg: #f4f6fa;
      --white: #ffffff;
      --gold: #f2b705;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Poppins', -apple-system, Segoe UI, Roboto, sans-serif;
      --header-h: 64px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    html.a11y-large {
      font-size: 112%;
    }

    html.a11y-contrast body {
      filter: contrast(1.15) saturate(1.05);
    }

    body {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    :focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
    }

    /* ---------- HEADER ---------- */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      background: rgba(255, 255, 255, .98);
      border-bottom: 1px solid var(--line);
      z-index: 900;
      backdrop-filter: blur(6px);
      transition: background .3s, box-shadow .3s;
    }

    .site-header.on-dark {
      background: rgba(12, 27, 61, .55);
      border-bottom-color: rgba(255, 255, 255, .15);
    }

    .site-header.on-dark .brand-word {
      color: #fff;
    }

    .site-header.on-dark .brand-tag {
      color: #cfd8ef;
    }

    .site-header.on-dark .menu-toggle {
      color: #fff;
    }

    .site-header.on-dark .icon-btn {
      color: #fff;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .menu-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      letter-spacing: .14em;
      font-weight: 600;
      color: var(--ink);
    }

    .menu-toggle .bars {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .menu-toggle .bars span {
      width: 18px;
      height: 2px;
      background: currentColor;
      display: block;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .brand-logo {
      width: 142px;
      height: auto;
    }

    .brand-mark {
      width: 30px;
      height: 22px;
      position: relative;
    }

    .brand-mark svg {
      width: 100%;
      height: 100%;
    }

    .brand-word {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 20px;
      color: var(--blue);
      letter-spacing: .01em;
    }

    .brand-word span {
      color: var(--red);
    }

    .brand-tag {
      font-size: 9.5px;
      letter-spacing: .12em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: -2px;
      display: block;
    }

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

    .icon-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      position: relative;
      transition: background .2s;
    }

    .icon-btn:hover {
      background: rgba(0, 0, 0, .06)
    }

    .icon-btn svg {
      width: 18px;
      height: 18px;
    }

    .icon-btn.a11y {
      background: var(--green);
      color: #fff;
    }

    .icon-btn.a11y:hover {
      background: var(--green-dark);
    }

    .icon-btn.settings {
      background: var(--gold);
      color: #3a2c00;
    }

    .header-divider {
      width: 1px;
      height: 24px;
      background: var(--line);
      margin: 0 6px;
    }

    /* header dropdowns */
    .hdropdown {
      position: absolute;
      top: 52px;
      right: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: 0 18px 40px rgba(20, 30, 60, .18);
      padding: 14px;
      min-width: 230px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: .18s;
    }

    .hdropdown.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .hdropdown h6 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .hdropdown .loc-item {
      display: flex;
      justify-content: space-between;
      padding: 7px 4px;
      font-size: 13.5px;
      border-radius: 6px;
    }

    .hdropdown .loc-item:hover {
      background: var(--bg);
    }

    .hdropdown .a11y-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 7px 2px;
      font-size: 13.5px;
    }

    .hdropdown .stepper {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hdropdown .stepper button {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg);
      font-weight: 700;
    }

    .hdropdown .reset-btn {
      margin-top: 10px;
      width: 100%;
      background: var(--navy);
      color: #fff;
      padding: 8px;
      border-radius: 6px;
      font-size: 12.5px;
      letter-spacing: .05em;
    }

    .search-box {
      position: absolute;
      top: 52px;
      right: 0;
      width: 300px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: 0 18px 40px rgba(20, 30, 60, .18);
      padding: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: .18s;
    }

    .search-box.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .search-box input {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 9px 10px;
      font-size: 13.5px;
      font-family: inherit;
    }

    .search-results {
      margin-top: 8px;
      max-height: 220px;
      overflow: auto;
    }

    .search-results a {
      display: block;
      padding: 7px 8px;
      font-size: 13px;
      border-radius: 6px;
    }

    .search-results a:hover {
      background: var(--bg);
    }

    .search-results .none {
      padding: 8px;
      font-size: 12.5px;
      color: var(--muted);
    }

    /* ---------- MEGA / CASCADING SIDE MENU ---------- */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(4, 8, 20, .55);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s;
      z-index: 950;
    }

    .menu-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .menu-shell {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      display: flex;
      z-index: 960;
      transform: translateX(-100%);
      transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    }

    .menu-shell.open {
      transform: translateX(0);
    }

    .menu-close {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .35);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }

    .menu-col {
      width: 290px;
      height: 100vh;
      background: var(--navy);
      padding: 80px 30px 30px;
      overflow-y: auto;
      flex-shrink: 0;
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .menu-col:nth-child(2) {
      background: #101f47;
    }

    .menu-col:nth-child(3) {
      background: #142654;
    }

    .menu-col-title {
      color: #8fa3d6;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-bottom: 18px;
    }

    .menu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      font-size: 16px;
      font-weight: 400;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      cursor: pointer;
      transition: color .2s, padding-left .2s;
    }

    .menu-item:hover {
      color: var(--green);
      padding-left: 5px;
    }

    .menu-item.active-path {
      color: var(--green);
    }

    .menu-item .chev {
      width: 9px;
      height: 9px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(-45deg);
      opacity: .7;
      flex-shrink: 0;
      margin-left: 10px;
    }

    .menu-col .home-link {
      display: block;
      color: #9db0de;
      font-size: 12.5px;
      margin-bottom: 22px;
      letter-spacing: .05em;
    }

    .menu-col .home-link:hover {
      color: #fff;
    }

    /* ---------- BREADCRUMB ---------- */
    .crumbbar {
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      padding: 14px 26px;
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .crumbbar a {
      color: var(--muted);
    }

    .crumbbar a:hover {
      color: var(--blue);
      text-decoration: underline;
    }

    .crumbbar .sep {
      opacity: .6;
    }

    .crumbbar .current {
      color: var(--ink);
      font-weight: 500;
    }

    .crumb-home-ico {
      width: 14px;
      height: 14px;
      vertical-align: -2px;
    }

    /* ---------- FLOATING SIDE BUTTONS ---------- */
    .side-floaters {
      position: fixed;
      right: 16px;
      top: 120px;
      z-index: 500;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
    }

    .floater-btn {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 10.5px;
      letter-spacing: .06em;
      font-weight: 700;
      color: var(--blue);
      text-align: center;
      box-shadow: 0 8px 22px rgba(20, 30, 60, .12);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      min-width: 74px;
      transition: transform .15s;
    }

    .floater-btn:hover {
      transform: translateY(-2px);
    }

    .floater-btn.floater-shop {
      background: linear-gradient(135deg, #0c1b3d, #1c3f94);
      color: #fff;
      border-color: var(--green);
      box-shadow: 0 8px 24px rgba(28, 63, 148, .28);
    }

    .floater-btn.floater-shop svg {
      color: var(--green);
    }

    .floater-btn svg {
      width: 16px;
      height: 16px;
    }

    .fold-dots {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 2px;
    }

    .fold-dots button {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 1px solid var(--blue);
      background: transparent;
    }

    .fold-dots button.active {
      background: var(--blue);
    }

    /* ---------- PAGES ---------- */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* HOME hero folds */
    #page-home.active {
      display: block;
    }

    .fold {
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .fold-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .fold-tint {
      position: absolute;
      inset: 0;
    }

    .fold-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .fold-down {
      position: absolute;
      bottom: 26px;
      left: 50%;
      transform: translateX(-50%);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      z-index: 3;
      animation: bob 2.2s ease-in-out infinite;
    }

    @keyframes bob {

      0%,
      100% {
        transform: translate(-50%, 0);
      }

      50% {
        transform: translate(-50%, 6px);
      }
    }

    /* ============ HERO BANNER AUTO SLIDER (FOLD 1) ============ */
    #fold-1.video-banner-fold,
    #fold-1.hero-slider-fold {
      position: relative;
      width: 100%;
      padding-top: var(--header-h);
      background: #061126;
      display: block;
      overflow: hidden;
      box-sizing: border-box;
      height: auto;
      min-height: auto;
    }

    .hero-slider-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1759 / 894;
      max-height: calc(100vh - var(--header-h));
      min-height: 280px;
      overflow: hidden;
      background: #061126;
      user-select: none;
    }

    .hero-slider-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.75s;
      pointer-events: none;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      z-index: 2;
    }

    .hero-slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(12, 27, 61, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity 0.3s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }

    .hero-slider-btn svg {
      width: 22px;
      height: 22px;
    }

    .hero-slider-wrap:hover .hero-slider-btn {
      opacity: 1;
    }

    .hero-slider-btn.prev-btn {
      left: 24px;
    }

    .hero-slider-btn.next-btn {
      right: 24px;
    }

    .hero-slider-btn:hover {
      background: rgba(12, 27, 61, 0.95);
      border-color: rgba(255, 255, 255, 0.8);
      transform: translateY(-50%) scale(1.1);
      color: #7ec13f;
    }

    .hero-slider-dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 10;
      padding: 7px 16px;
      border-radius: 20px;
      background: rgba(10, 24, 56, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-radius 0.35s ease, box-shadow 0.3s ease;
    }

    .hero-dot.active {
      width: 28px;
      border-radius: 6px;
      background: #7ec13f;
      box-shadow: 0 0 12px rgba(126, 193, 63, 0.7);
    }

    @media (max-width: 768px) {
      .hero-slider-wrap {
        aspect-ratio: 1759 / 894;
        min-height: 200px;
      }

      .hero-slider-btn {
        width: 38px;
        height: 38px;
        opacity: 0.85;
      }

      .hero-slider-btn.prev-btn {
        left: 10px;
      }

      .hero-slider-btn.next-btn {
        right: 10px;
      }

      .hero-slider-dots {
        bottom: 12px;
        gap: 8px;
        padding: 5px 12px;
      }

      .hero-dot {
        width: 8px;
        height: 8px;
      }

      .hero-dot.active {
        width: 22px;
      }
    }

    /* Fold 1 hero fallback */
    #fold-1 .fold-bg {
      background: linear-gradient(135deg, #0c1b3d, #1c3f94);
      filter: brightness(.55);
    }

    #fold-1 .fold-tint {
      background: linear-gradient(100deg, rgba(12, 27, 61, .92) 0%, rgba(12, 27, 61, .55) 45%, rgba(12, 27, 61, .15) 75%);
    }

    .eyebrow-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .25);
      padding: 7px 14px;
      border-radius: 30px;
      color: #fff;
      font-size: 12px;
      letter-spacing: .08em;
      margin-bottom: 26px;
    }

    .eyebrow-badge b {
      color: var(--green);
    }

    .hero-title {
      font-family: var(--serif);
      color: #fff;
      font-weight: 500;
      font-size: clamp(34px, 5.4vw, 64px);
      line-height: 1.12;
      max-width: 760px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--green);
    }

    .hero-sub {
      color: #dbe2f5;
      font-size: 17px;
      max-width: 560px;
      margin-top: 20px;
      line-height: 1.7;
    }

    .hero-cta-row {
      display: flex;
      gap: 16px;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 6px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .03em;
      transition: .2s;
    }

    .btn-primary {
      background: var(--green);
      color: #0c1b1a;
    }

    .btn-primary:hover {
      background: var(--green-dark);
      color: #fff;
    }

    .btn-outline {
      border: 1.5px solid rgba(255, 255, 255, .55);
      color: #fff;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, .12);
    }

    .btn-arrow {
      width: 9px;
      height: 9px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(-45deg);
    }

    .hero-certs {
      display: flex;
      gap: 14px;
      margin-top: 46px;
    }

    .hero-certs span {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 800;
      color: var(--navy);
      text-align: center;
    }

    /* quick link cards on hero (arrow-linked, like tata's carousel "know more" cards) */
    .quicklinks {
      position: absolute;
      right: 40px;
      bottom: 70px;
      z-index: 3;
      display: flex;
      gap: 16px;
    }

    .qcard {
      width: 210px;
      background: rgba(12, 27, 61, .55);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 10px;
      padding: 16px 16px 44px;
      position: relative;
      color: #fff;
      backdrop-filter: blur(4px);
      transition: .2s;
    }

    .qcard:hover {
      background: rgba(12, 27, 61, .8);
      transform: translateY(-4px);
    }

    .qcard .qc-label {
      font-size: 9.5px;
      letter-spacing: .1em;
      color: #8fa3d6;
      text-transform: uppercase;
    }

    .qcard .qc-title {
      font-size: 14.5px;
      font-weight: 600;
      margin-top: 6px;
      line-height: 1.35;
    }

    .qcard .qc-go {
      position: absolute;
      bottom: 14px;
      right: 14px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qcard .qc-go svg {
      width: 11px;
      height: 11px;
      color: #0c1b1a;
    }

    /* ================= FOLD: SUSTAINABILITY & CSR (ESG) ================= */
    #fold-sustainability {
      position: relative;
      min-height: 100vh;
      width: 100%;
      background: radial-gradient(ellipse 90% 70% at 50% -10%, #0e2759 0%, #0c1b3d 45%, #060e1f 100%);
      color: #fff;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 100px 0 80px;
    }

    /* Background Visual Graphic Behind */
    .csr-visual-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }

    .csr-grid-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(126, 193, 63, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 193, 63, 0.05) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.8;
    }

    .csr-ambient-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(85px);
      opacity: 0.42;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .csr-glow-1 {
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(126, 193, 63, 0.75), transparent 70%);
      top: -10%;
      right: 2%;
      animation: floatGlow 14s ease-in-out infinite alternate;
    }

    .csr-glow-2 {
      width: 580px;
      height: 580px;
      background: radial-gradient(circle, rgba(47, 91, 201, 0.7), transparent 70%);
      bottom: -15%;
      left: -5%;
      animation: floatGlow 18s ease-in-out infinite alternate-reverse;
    }

    .csr-glow-3 {
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(0, 210, 255, 0.45), transparent 70%);
      top: 40%;
      left: 42%;
      animation: floatGlow 11s ease-in-out infinite alternate;
    }

    @keyframes floatGlow {
      0% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(25px, -20px) scale(1.08);
      }

      100% {
        transform: translate(-20px, 18px) scale(0.95);
      }
    }

    .csr-svg-graphic {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.88;
    }

    .csr-orbit {
      position: absolute;
      border-radius: 50%;
      border: 1px dashed rgba(126, 193, 63, 0.2);
      pointer-events: none;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .csr-orbit-1 {
      width: 920px;
      height: 920px;
      animation: spinSlow 100s linear infinite;
    }

    .csr-orbit-2 {
      width: 660px;
      height: 660px;
      border-color: rgba(47, 91, 201, 0.28);
      border-style: dotted;
      animation: spinSlow 70s linear infinite reverse;
    }

    @keyframes spinSlow {
      from {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      to {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    /* Foreground Content Styling */
    .csr-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .csr-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(126, 193, 63, 0.12);
      border: 1px solid rgba(126, 193, 63, 0.4);
      padding: 7px 16px;
      border-radius: 30px;
      color: #9fe262;
      font-size: 11.5px;
      letter-spacing: .12em;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 20px;
      backdrop-filter: blur(10px);
    }

    .csr-pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px var(--green);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {

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

      50% {
        opacity: 0.35;
        transform: scale(0.75);
      }
    }

    .csr-header-flex {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 36px;
      margin-bottom: 34px;
      flex-wrap: wrap;
    }

    .csr-heading {
      font-family: var(--serif);
      font-size: clamp(28px, 3.6vw, 44px);
      font-weight: 500;
      line-height: 1.18;
      color: #fff;
      max-width: 660px;
    }

    .csr-heading span {
      display: block;
      color: #b9d5ff;
      font-size: clamp(17px, 2.1vw, 25px);
      font-family: var(--sans);
      font-weight: 400;
      margin-top: 8px;
    }

    .csr-heading em {
      font-style: normal;
      color: var(--green);
    }

    .csr-intro-p {
      color: #cdd8f0;
      font-size: 15px;
      line-height: 1.7;
      max-width: 440px;
    }

    /* 3 Pillar Cards */
    .csr-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 32px;
    }

    .csr-card {
      background: rgba(19, 42, 94, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 28px 24px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: all .25s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .csr-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .csr-card:hover {
      transform: translateY(-6px);
      background: rgba(19, 42, 94, 0.72);
      border-color: rgba(126, 193, 63, 0.45);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(126, 193, 63, 0.15);
    }

    .csr-card:hover::before {
      opacity: 1;
    }

    .csr-card-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(126, 193, 63, 0.12);
      border: 1px solid rgba(126, 193, 63, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--green);
      transition: all .25s ease;
    }

    .csr-card-icon svg {
      width: 26px;
      height: 26px;
    }

    .csr-card:hover .csr-card-icon {
      background: var(--green);
      color: #0c1b3d;
      transform: scale(1.06);
    }

    .csr-card-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #9db0de;
      margin-bottom: 8px;
    }

    .csr-card h3 {
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .csr-card p {
      color: #c3cdec;
      font-size: 13.8px;
      line-height: 1.65;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .csr-tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }

    .csr-tag-list span {
      font-size: 11.5px;
      padding: 5px 10px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 20px;
      color: #e3e9f8;
      font-weight: 500;
    }

    /* Bottom KPI Stats Strip */
    .csr-metrics-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: rgba(12, 27, 61, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 20px 28px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      gap: 20px;
      align-items: center;
      margin-bottom: 28px;
    }

    .csr-metric-item {
      text-align: left;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      padding-right: 15px;
    }

    .csr-metric-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .csr-metric-item b {
      display: block;
      font-size: 26px;
      font-family: var(--serif);
      color: var(--green);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .csr-metric-item span {
      font-size: 11.8px;
      color: #b5c4e8;
      letter-spacing: .02em;
      line-height: 1.4;
      display: block;
    }

    /* Bottom Action Row */
    .csr-action-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
    }

    .csr-btn-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .csr-ext-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #9fe262;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: color .2s;
    }

    .csr-ext-link:hover {
      color: #fff;
      text-decoration: underline;
    }

    /* Fold 2 - legacy/leadership style */
    #fold-2 {
      background: linear-gradient(180deg, #eef1f8, #fff);
    }

    .fold-2-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .fold-2-grid img {
      border-radius: 10px;
      box-shadow: 0 30px 60px rgba(20, 30, 60, .18);
    }

    .kicker {
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--blue);
      font-weight: 700;
      margin-bottom: 14px;
    }

    .fold-2-grid h2 {
      font-family: var(--serif);
      font-size: 34px;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--ink);
    }

    .fold-2-grid p {
      color: var(--muted);
      font-size: 15.5px;
      max-width: 480px;
      margin-bottom: 22px;
    }

    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 40px;
      padding: 8px 16px 8px 8px;
      font-size: 12.5px;
      font-weight: 600;
    }

    .badge-pill .dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    /* ================= 5-COLUMN PRODUCT CATEGORY CHECKERBOARD GRID ================= */
    .category-grid-section {
      width: 100%;
      background: #020202;
      padding: 12px;
      box-sizing: border-box;
    }

    /* ================= 5-COLUMN PRODUCT CATEGORY CHECKERBOARD GRID ================= */
    .category-grid-section {
      width: 100%;
      background: #000000;
      padding: 16px 12px;
      box-sizing: border-box;
    }

    .category-checker-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0 14px;
      width: 100%;
      box-sizing: border-box;
    }

    .category-checker-col {
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
      transition: transform 0.32s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.32s ease;
    }

    .category-checker-col:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.2);
    }

    .cat-tile {
      position: relative;
      width: 100%;
      aspect-ratio: 1.2 / 1;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      box-sizing: border-box;
      transition: filter 0.25s ease;
    }

    .category-checker-col>.cat-tile:first-child {
      border-radius: 16px 16px 0 0;
    }

    .category-checker-col>.cat-tile:last-child {
      border-radius: 0 0 16px 16px;
    }

    .cat-tile-card:hover {
      filter: brightness(1.05);
    }

    .cat-tile-card {
      padding: clamp(20px, 1.8vw, 28px) clamp(16px, 1.5vw, 22px);
      color: #fff;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    /* Glass specular highlight across top half of card */
    .cat-tile-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 52%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
      pointer-events: none;
      z-index: 1;
    }

    /* Ambient glow accent at top-right */
    .cat-tile-card::after {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    /* 1. Bright Luminous Neon Coral */
    .cat-tile-orange {
      background: linear-gradient(140deg, #ff3366 0%, #ff5252 50%, #ff7675 100%);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    /* 2. Bright Electric Violet */
    .cat-tile-amber {
      background: linear-gradient(140deg, #a855f7 0%, #8b5cf6 45%, #7c3aed 100%);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    /* 3. Bright Electric Cyan Aqua */
    .cat-tile-green {
      background: linear-gradient(140deg, #00f2fe 0%, #00c6ff 45%, #0077ff 100%);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    /* 4. Bright Neon Fuchsia Magenta */
    .cat-tile-cyan {
      background: linear-gradient(140deg, #ff1493 0%, #f72585 45%, #c026d3 100%);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    /* 5. Bright Radiant Tangerine Sunburst */
    .cat-tile-dark {
      background: linear-gradient(140deg, #ff9e00 0%, #ff7900 45%, #ff5400 100%);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    .cat-tile-card h3 {
      font-family: var(--sans);
      font-size: clamp(17px, 1.35vw, 22px);
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 clamp(4px, 0.5vw, 8px) 0;
      color: #ffffff;
      letter-spacing: -0.01em;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
      position: relative;
      z-index: 2;
    }

    .cat-tile-card p {
      font-size: clamp(11.5px, 0.8vw, 13px);
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.94);
      font-weight: 400;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
      position: relative;
      z-index: 2;
    }

    .cat-tile-card .cat-btn-view {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      margin-top: auto;
      padding: 6.5px 22px;
      background: rgba(255, 255, 255, 0.95);
      color: #0f172a;
      font-size: 12.5px;
      font-weight: 700;
      border-radius: 20px;
      letter-spacing: 0.03em;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      position: relative;
      z-index: 2;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .cat-tile:hover .cat-btn-view {
      background: #ffffff;
      transform: scale(1.07);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
    }

    .cat-tile-image {
      background: #0d1117;
      overflow: hidden;
      position: relative;
    }

    .cat-tile-image::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      pointer-events: none;
    }

    .cat-tile-image img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1.2 / 1;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    }

    .cat-tile:hover.cat-tile-image img {
      transform: scale(1.07);
    }

    @media (max-width: 1100px) {
      .category-checker-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 12px;
      }
    }

    @media (max-width: 720px) {
      .category-checker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
      }

      .category-grid-section {
        padding: 8px;
      }

      .category-checker-col {
        border-radius: 14px;
      }

      .category-checker-col>.cat-tile:first-child {
        border-radius: 14px 14px 0 0;
      }

      .category-checker-col>.cat-tile:last-child {
        border-radius: 0 0 14px 14px;
      }

      .cat-tile-card {
        padding: 16px 14px;
      }

      .cat-tile-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
      }

      .cat-tile-card p {
        font-size: 11.5px;
      }

      .cat-tile-card .cat-btn-view {
        padding: 5px 16px;
        font-size: 11.5px;
      }
    }

    @media (max-width: 480px) {
      .category-checker-grid {
        grid-template-columns: 1fr;
        gap: 14px 0;
      }
    }

    /* Fold 3 - Global Footprints */
    #fold-3.fold-footprints {
      position: relative;
      min-height: 80vh;
      width: 100%;
      background: radial-gradient(ellipse 90% 70% at 50% 30%, #10224d 0%, #081126 60%, #030814 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 90px 24px;
      box-sizing: border-box;
      overflow: hidden;
    }

    #fold-3.fold-footprints::before {
      content: '';
      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;
      pointer-events: none;
    }

    .footprint-header {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
      z-index: 2;
    }

    .footprint-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    /* ============ FOOTPRINT REGION CARDS (NO BORDERS) ============ */
    .footprint-region-card {
      background: rgba(12, 27, 61, 0.38);
      border: none;
      outline: none;
      border-radius: 24px;
      padding: 44px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      cursor: pointer;

      /* Card entrance state */
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        box-shadow 0.35s ease;
      will-change: transform, opacity;
    }

    .footprint-region-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .footprint-region-card:nth-child(1).is-visible {
      transition-delay: 0.08s;
    }

    .footprint-region-card:nth-child(2).is-visible {
      transition-delay: 0.22s;
    }

    .footprint-region-card:nth-child(3).is-visible {
      transition-delay: 0.36s;
    }

    /* Card hover lift */
    .footprint-region-card.is-visible:hover,
    .footprint-region-card:hover {
      transform: translateY(-14px);
      transition-delay: 0s;
      background: rgba(18, 38, 85, 0.62);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(47, 91, 201, 0.3);
      border: none;
    }

    /* ============ MAP IMAGE (SLIDING UP ON SCROLL) ============ */
    .region-map-box {
      width: 175px;
      height: 175px;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      background: transparent;
      border: none;
      outline: none;
      box-shadow: none;

      /* Initial state: pushed down and invisible */
      opacity: 0;
      transform: translateY(55px) scale(0.92);
      transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }

    /* Image slides up when scrolled into view */
    .footprint-region-card.is-visible .region-map-box {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .footprint-region-card:nth-child(1).is-visible .region-map-box {
      transition-delay: 0.15s;
    }

    .footprint-region-card:nth-child(2).is-visible .region-map-box {
      transition-delay: 0.3s;
    }

    .footprint-region-card:nth-child(3).is-visible .region-map-box {
      transition-delay: 0.45s;
    }

    /* Image hover sliding up */
    .footprint-region-card:hover .region-map-box {
      transform: translateY(-10px) scale(1.04);
      transition-delay: 0s !important;
      border: none;
    }

    .region-map-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border: none;
      outline: none;
      border-radius: 16px;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
      will-change: transform;
    }

    .footprint-region-card:hover .region-map-img {
      transform: scale(1.08);
      filter: drop-shadow(0 12px 28px rgba(47, 91, 201, 0.65));
    }

    /* ============ COUNTRY NAME (SLIDING UP ON SCROLL) ============ */
    .region-name {
      font-family: var(--sans);
      font-size: 24px;
      font-weight: 600;
      color: #ffffff;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin: 0;
      position: relative;
      display: inline-block;

      /* Initial state: pushed down and invisible */
      opacity: 0;
      transform: translateY(40px);
      transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease,
        letter-spacing 0.3s ease,
        text-shadow 0.3s ease;
      will-change: transform, opacity;
    }

    /* Country name slides up right after image on scroll */
    .footprint-region-card.is-visible .region-name {
      opacity: 1;
      transform: translateY(0);
    }

    .footprint-region-card:nth-child(1).is-visible .region-name {
      transition-delay: 0.26s;
    }

    .footprint-region-card:nth-child(2).is-visible .region-name {
      transition-delay: 0.42s;
    }

    .footprint-region-card:nth-child(3).is-visible .region-name {
      transition-delay: 0.58s;
    }

    /* Country name sliding up on hover */
    .footprint-region-card:hover .region-name {
      transform: translateY(-8px);
      color: #ffffff;
      letter-spacing: 0.09em;
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 4px 16px rgba(47, 91, 201, 0.6);
      transition-delay: 0s !important;
    }

    @media (max-width: 860px) {
      .footprint-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 24px;
      }

      .region-map-box {
        width: 150px;
        height: 150px;
      }

      .region-name {
        font-size: 20px;
      }

      #fold-3.fold-footprints {
        min-height: auto;
        padding: 70px 20px;
      }
    }

    /* Fold 4 - quality/desk */
    #fold-4 .fold-bg {
      background: linear-gradient(135deg, #0c1b3d, #1c3f94);
      filter: brightness(.5) saturate(.9);
    }

    #fold-4 .fold-tint {
      background: linear-gradient(0deg, rgba(12, 27, 61, .92), rgba(12, 27, 61, .35));
    }

    .fold-4-inner {
      text-align: center;
      color: #fff;
      max-width: 720px;
      margin: 0 auto;
    }

    .fold-4-inner .kicker {
      color: var(--green);
    }

    .fold-4-inner h2 {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .fold-4-inner p {
      color: #dbe2f5;
      font-size: 16px;
      margin-bottom: 30px;
    }

    .stat-row {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .stat-row .stat b {
      display: block;
      font-size: 32px;
      font-family: var(--serif);
      color: var(--green);
    }

    .stat-row .stat span {
      font-size: 12px;
      letter-spacing: .05em;
      color: #c3cdec;
    }

    /* ---------- GENERIC INNER PAGE LAYOUT ---------- */
    .page-hero {
      position: relative;
      height: 340px;
      display: flex;
      align-items: flex-end;
      background-size: cover;
      background-position: center;
      color: #fff;
      overflow: hidden;
    }

    .page-hero .fold-tint {
      background: linear-gradient(0deg, rgba(9, 16, 38, .88), rgba(9, 16, 38, .35));
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      padding: 0 40px 34px;
      max-width: 1180px;
      margin: 0 auto;
      width: 100%;
    }

    .page-hero h1 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(28px, 4vw, 44px);
    }

    .page-hero p {
      color: #dbe2f5;
      margin-top: 8px;
      max-width: 600px;
      font-size: 15px;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 64px 40px;
    }

    .container.tight {
      padding-top: 44px;
      padding-bottom: 44px;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 36px;
    }

    .section-head .kicker {
      margin-bottom: 10px;
    }

    .section-head h2 {
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 500;
    }

    .section-head p {
      color: var(--muted);
      margin-top: 12px;
      font-size: 15px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

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

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

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 26px;
    }

    .card h3 {
      font-size: 17px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .card p {
      color: var(--muted);
      font-size: 14px;
    }

    .soft-bg {
      background: var(--bg);
    }

    .divider-band {
      background: var(--blue);
      color: #fff;
      text-align: center;
      padding: 64px 40px;
    }

    .divider-band h2 {
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 500;
      max-width: 760px;
      margin: 0 auto 14px;
    }

    .divider-band p {
      color: #cfe0ff;
      max-width: 640px;
      margin: 0 auto;
      font-size: 15px;
    }

    /* about us specifics */
    .stat-strip {
      display: flex;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 34px;
    }

    .stat-strip .cell {
      flex: 1;
      padding: 26px 20px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stat-strip .cell:last-child {
      border-right: none;
    }

    .stat-strip .cell b {
      display: block;
      font-family: var(--serif);
      font-size: 26px;
      color: var(--blue);
    }

    .stat-strip .cell span {
      font-size: 12px;
      color: var(--muted);
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .tag-list span {
      background: var(--bg);
      border: 1px solid var(--line);
      padding: 7px 14px;
      border-radius: 30px;
      font-size: 12.5px;
    }

    /* vision / mission / core values */
    .vm-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      margin-top: 10px;
    }

    .vm-card {
      border-radius: 14px;
      padding: 34px;
      color: #fff;
    }

    .vm-card.vision {
      background: linear-gradient(135deg, #5fce6b, #1a9e6a);
    }

    .vm-card.mission {
      background: linear-gradient(135deg, #2f7bd6, #123a86);
    }

    .vm-card .ico {
      width: 44px;
      height: 44px;
      margin-bottom: 16px;
    }

    .vm-card h3 {
      font-family: var(--serif);
      font-size: 22px;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .vm-card p {
      font-size: 14.5px;
      opacity: .95;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 14px;
    }

    .value-card {
      border-radius: 12px;
      padding: 22px;
      color: #fff;
      font-size: 13.5px;
    }

    .value-card h4 {
      font-size: 15.5px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .value-card p {
      opacity: .92;
    }

    .v1 {
      background: linear-gradient(135deg, #2f7bd6, #164a9e);
    }

    .v2 {
      background: linear-gradient(135deg, #e2589a, #a3226b);
    }

    .v3 {
      background: linear-gradient(135deg, #e0a938, #b9781d);
    }

    .v4 {
      background: linear-gradient(135deg, #2fb5b0, #0c6f6b);
    }

    .v5 {
      background: linear-gradient(135deg, #3aa1e0, #1a5aa6);
    }

    .v6 {
      background: linear-gradient(135deg, #9a7be0, #5f3fae);
    }

    /* leadership messages */
    .leader-block {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 44px;
      align-items: start;
      margin-bottom: 60px;
    }

    .leader-photo-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(20, 30, 60, .16);
      width: 100%;
      background: #0c1b3d;
    }

    .leader-photo-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      transition: transform .3s ease;
    }

    .leader-photo-wrap:hover img {
      transform: scale(1.025);
    }

    /* Small left-aligned social overlay directly ON the image at the bottom */
    .leader-img-social-bar {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(12, 27, 61, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 30px;
      padding: 4px 8px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
      transition: background .2s, transform .2s;
    }

    .leader-img-social-bar:hover {
      background: rgba(12, 27, 61, 0.96);
      transform: translateY(-2px);
    }

    .leader-img-social-btn {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: all .2s ease;
    }

    .leader-img-social-btn svg {
      width: 12px;
      height: 12px;
    }

    .leader-img-social-btn.linkedin:hover {
      background: #0077b5;
      color: #fff;
      transform: scale(1.12);
    }

    .leader-img-social-btn.x:hover {
      background: #000;
      color: #fff;
      transform: scale(1.12);
    }

    /* Small left-aligned social links below the photo */
    .leader-below-social {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
    }

    .leader-below-social a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      background: #f1f5f9;
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 3px 8px;
      text-decoration: none;
      transition: all .2s ease;
    }

    .leader-below-social a svg {
      width: 11px;
      height: 11px;
      color: var(--blue);
    }

    .leader-below-social a:hover {
      background: #fff;
      color: var(--blue);
      border-color: var(--blue);
      box-shadow: 0 2px 6px rgba(28, 63, 148, 0.12);
    }

    .leader-block .quote-mark {
      font-family: var(--serif);
      font-size: 64px;
      color: var(--green);
      line-height: .6;
      margin-bottom: 10px;
      display: block;
    }

    .leader-block p {
      color: var(--ink);
      font-size: 15.5px;
      margin-bottom: 14px;
    }

    .leader-name {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }

    .leader-name b {
      font-size: 16.5px;
      display: block;
    }

    .leader-name span {
      color: var(--muted);
      font-size: 13px;
    }

    /* products tabs */
    .tabbar {
      display: flex;
      gap: 8px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .tabbar button {
      padding: 12px 20px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--muted);
      border-bottom: 2px solid transparent;
    }

    .tabbar button.active {
      color: var(--blue);
      border-color: var(--blue);
    }

    .prod-cat {
      margin-bottom: 44px;
      scroll-margin-top: 100px;
    }

    .prod-cat-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 16px;
    }

    .prod-cat-head h3 {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
    }

    .prod-cat-img {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .prod-cat-img img {
      width: 100%;
    }

    /* infrastructure gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 30px;
    }

    .gallery img {
      border-radius: 10px;
      aspect-ratio: 4/3;
      object-fit: cover;
    }

    .gallery .wide {
      grid-column: span 2;
    }

    .stat-block {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 36px;
    }

    .stat-block .item {
      text-align: center;
      padding: 22px 10px;
      border: 1px solid var(--line);
      border-radius: 12px;
    }

    .stat-block .item b {
      font-family: var(--serif);
      font-size: 28px;
      color: var(--blue);
      display: block;
    }

    .stat-block .item span {
      font-size: 12px;
      color: var(--muted);
    }

    /* awards */
    .awards-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 10px;
    }

    .award-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 10px;
    }

    .award-item .ico {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3a2c00;
      font-weight: 700;
      font-size: 13px;
    }

    .award-item p {
      font-size: 13.8px;
    }

    /* legacy timeline */
    .timeline {
      position: relative;
      margin: 40px 0;
      padding-left: 36px;
      border-left: 2px solid var(--line);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 36px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -44px;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--blue);
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px var(--blue);
    }

    .timeline-item.active::before {
      background: var(--green);
      box-shadow: 0 0 0 2px var(--green);
    }

    .timeline-year {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--blue);
      margin-bottom: 4px;
    }

    .timeline-item h4 {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .timeline-item p {
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.6;
      max-width: 680px;
    }

    /* blogs */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 24px;
    }

    .blog-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .2s, box-shadow .2s;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(20, 30, 60, .09);
    }

    .blog-card-body {
      padding: 26px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .blog-tag {
      background: rgba(28, 63, 148, .08);
      color: var(--blue);
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11px;
    }

    .blog-card h3 {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .blog-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .blog-link {
      color: var(--blue);
      font-weight: 600;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* Manufacturing Plant */
    .plant-specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 30px 0;
    }

    .plant-spec-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 24px;
    }

    .plant-spec-card h4 {
      font-size: 16px;
      color: var(--blue);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .plant-spec-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin: 36px 0;
    }

    .flow-step {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 20px;
      position: relative;
    }

    .flow-num {
      font-family: var(--serif);
      font-size: 24px;
      color: var(--green-dark);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .flow-step h5 {
      font-size: 14px;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .flow-step p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

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

    .tcard {
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
    }

    .tcard .quote {
      background: var(--blue);
      color: #fff;
      padding: 22px;
      font-size: 13.5px;
      min-height: 150px;
    }

    .tcard .who {
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tcard .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--blue);
      font-size: 14px;
    }

    .stars {
      color: var(--gold);
      font-size: 13px;
      margin-top: 6px;
    }

    /* events */
    .event-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 20px;
    }

    .event-list img {
      border-radius: 10px;
      aspect-ratio: 4/3;
      object-fit: cover;
    }

    .event-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .event-tags span {
      background: var(--navy);
      color: #fff;
      padding: 9px 16px;
      border-radius: 30px;
      font-size: 12.5px;
    }

    /* CSR */
    .csr-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .csr-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 24px;
    }

    .csr-pillars .pillar {
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 16px;
      font-size: 13.5px;
    }

    .csr-pillars .pillar b {
      display: block;
      color: var(--blue);
      margin-bottom: 4px;
    }

    /* contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

    .contact-card {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 16px;
    }

    .contact-card h4 {
      font-size: 14px;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .contact-card p {
      font-size: 14.5px;
    }

    .form-field {
      margin-bottom: 16px;
    }

    .form-field label {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--muted);
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 11px 12px;
      font-family: inherit;
      font-size: 14px;
    }

    .map-box {
      height: 220px;
      border-radius: 12px;
      background: linear-gradient(135deg, #eef1f8, #dbe2f5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 13px;
      margin-top: 18px;
      border: 1px solid var(--line);
    }

    /* legal / sitemap simple pages */
    .legal p {
      margin-bottom: 14px;
      color: var(--muted);
      font-size: 14.5px;
      max-width: 760px;
    }

    .sitemap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
      margin-top: 10px;
    }

    .sitemap-grid h4 {
      color: var(--blue);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .sitemap-grid li {
      margin-bottom: 9px;
      font-size: 14px;
    }

    .sitemap-grid a:hover {
      text-decoration: underline;
    }

    /* ---------- FOOTER ---------- */
    .site-footer {
      background: var(--navy);
      color: #c3cdec;
      padding: 56px 40px 26px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .footer-brand .brand-word {
      color: #fff;
    }

    .footer-top p {
      font-size: 13.5px;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col h5 {
      color: #fff;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col li {
      margin-bottom: 10px;
      font-size: 13.5px;
    }

    .footer-col a:hover {
      color: #fff;
    }

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

    .footer-bottom .links a {
      margin-right: 14px;
      color: #9db0de;
    }

    .footer-bottom .links a:hover {
      color: #fff;
    }

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

    .social-row a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-row a:hover {
      background: var(--green);
    }

    .social-row svg {
      width: 15px;
      height: 15px;
    }

    /* utility */
    .mt-cert-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .mt-cert-row span {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 800;
      color: var(--blue);
      text-align: center;
    }

    @media (max-width:980px) {

      .grid-2,
      .grid-3,
      .grid-4,
      .fold-2-grid,
      .globe-wrap,
      .leader-block,
      .csr-wrap,
      .contact-grid,
      .sitemap-grid,
      .csr-cards-grid,
      .blog-grid,
      .plant-specs-grid,
      .flow-steps {
        grid-template-columns: 1fr !important;
      }

      .csr-metrics-strip {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
      }

      .csr-metric-item:nth-child(2) {
        border-right: none !important;
      }

      .quicklinks {
        display: none;
      }

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

      .value-grid,
      .tgrid,
      .event-list,
      .awards-list,
      .stat-block {
        grid-template-columns: 1fr 1fr;
      }

      .gallery {
        grid-template-columns: 1fr 1fr;
      }

      .menu-col {
        width: 82vw;
      }

      .side-floaters {
        top: auto;
        bottom: 16px;
        flex-direction: row;
      }
    }

    /* ============ RIGHT-EDGE VERTICAL ENQUIRY FORM STRIP (REFERENCE STYLE) ============ */
    .side-enquiry-tab {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%) translateX(0);
      opacity: 1;
      z-index: 99998;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      user-select: none;
      filter: drop-shadow(-3px 4px 10px rgba(0, 0, 0, 0.32));
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, filter 0.22s ease;
    }

    .side-enquiry-tab:hover {
      transform: translateY(-50%) translateX(-4px);
      filter: drop-shadow(-6px 6px 16px rgba(0, 0, 0, 0.45));
    }

    .side-enquiry-tab.is-hidden {
      transform: translateY(-50%) translateX(calc(100% + 20px));
      opacity: 0;
      pointer-events: none;
    }

    .side-enquiry-arrow-box {
      width: 44px;
      height: 42px;
      background: #000000;
      border-top-left-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }

    .side-enquiry-arrow-box svg {
      color: #ffffff;
      transition: transform 0.2s ease;
    }

    .side-enquiry-tab:hover .side-enquiry-arrow-box svg {
      transform: translateX(3px);
    }

    .side-enquiry-strip {
      width: 44px;
      background: #a31919;
      border-bottom-left-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 14px 0 20px 0;
      gap: 12px;
      transition: background 0.2s ease;
    }

    .side-enquiry-tab:hover .side-enquiry-strip {
      background: #8b1414;
    }

    .side-enquiry-mail-icon {
      width: 18px;
      height: 18px;
      color: #ffffff;
      flex-shrink: 0;
    }

    .side-enquiry-text {
      font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      letter-spacing: 0.8px;
      white-space: nowrap;
      line-height: 1;
    }

    @media (max-width: 600px) {
      .side-enquiry-tab {
        top: 45%;
      }

      .side-enquiry-arrow-box {
        width: 36px;
        height: 36px;
      }

      .side-enquiry-strip {
        width: 36px;
        padding: 10px 0 16px 0;
        gap: 8px;
      }

      .side-enquiry-mail-icon {
        width: 15px;
        height: 15px;
      }

      .side-enquiry-text {
        font-size: 12px;
      }
    }

    /* ============ HIGH Z-INDEX FLOATING WIDGETS STACK ============ */
    .floating-widgets-stack {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
      z-index: 9999;
      pointer-events: none;
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
      transform: translateX(0);
      opacity: 1;
    }

    .floating-widgets-stack.is-hidden {
      transform: translateX(calc(100% + 50px));
      opacity: 0;
      pointer-events: none;
    }

    /* Ensure none of the 3 widgets have borders on their main divs */
    .floating-widgets-stack>div,
    .floating-widgets-stack>a,
    .enquiry-floating-widget,
    .floating-whatsapp-widget,
    .erdshop-floating-widget {
      border: none !important;
    }

    /* -------- 1. TOP WIDGET: ENQUIRY FORM (THEME BLUE) -------- */
    .enquiry-floating-widget {
      position: relative;
      background: linear-gradient(135deg, #0c1b3d 0%, #163270 100%);
      border: none !important;
      border-radius: 16px;
      padding: 10px 18px 10px 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      pointer-events: auto;
      box-shadow: 0 12px 32px rgba(4, 8, 20, 0.45), 0 4px 16px rgba(22, 50, 112, 0.35);
      transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .28s ease;
      user-select: none;
    }

    .enquiry-floating-widget:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 42px rgba(4, 8, 20, 0.55), 0 6px 24px rgba(22, 50, 112, 0.5);
    }

    .enquiry-widget-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(126, 193, 63, 0.18);
      color: #7ec13f;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
      transition: transform .25s ease, background .25s ease;
    }

    .enquiry-floating-widget:hover .enquiry-widget-icon-wrap {
      transform: scale(1.08) rotate(-4deg);
      background: rgba(126, 193, 63, 0.28);
    }

    .enquiry-widget-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: flex-start;
    }

    .enquiry-widget-title {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      white-space: nowrap;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .enquiry-widget-sub {
      font-family: var(--sans);
      font-size: 11.5px;
      font-weight: 800;
      color: #7ec13f;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.2;
    }

    /* -------- 2. MIDDLE WIDGET: WHATSAPP CIRCULAR ICON -------- */
    .floating-whatsapp-widget {
      position: relative;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #ffffff;
      border: none !important;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32), 0 2px 10px rgba(37, 211, 102, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
      pointer-events: auto;
      transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .28s ease;
    }

    .floating-whatsapp-widget:hover {
      transform: scale(1.12) translateY(-2px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 22px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-circle-inner {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
      transition: transform .25s ease;
    }

    .floating-whatsapp-widget:hover .whatsapp-circle-inner {
      transform: scale(1.04);
    }

    .whatsapp-svg {
      width: 28px;
      height: 28px;
      fill: #ffffff;
    }

    .whatsapp-badge-pulse {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 12px;
      height: 12px;
      background: #7ec13f;
      border: 2.5px solid #ffffff;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
      animation: pulseDot 1.6s infinite;
    }

    .whatsapp-fly-tooltip {
      position: absolute;
      right: calc(100% + 14px);
      top: 50%;
      transform: translateY(-50%) translateX(10px);
      background: #0c1b3d;
      color: #ffffff;
      font-family: var(--sans);
      font-size: 12.5px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 8px;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity .24s ease, transform .24s ease;
    }

    .whatsapp-fly-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #0c1b3d;
    }

    .floating-whatsapp-widget:hover .whatsapp-fly-tooltip {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    /* -------- 3. BOTTOM WIDGET: BUY NOW ERDSHOP.COM -------- */
    .erdshop-floating-widget {
      position: relative;
      background: linear-gradient(135deg, rgba(10, 24, 56, 0.96) 0%, rgba(16, 36, 84, 0.94) 100%);
      border: none !important;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: 18px;
      box-shadow: 0 14px 38px rgba(4, 8, 20, 0.5), 0 0 26px rgba(126, 193, 63, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.18);
      padding: 12px 22px 12px 16px;
      display: flex;
      align-items: center;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
      width: auto;
      max-width: -webkit-fit-content;
      max-width: fit-content;
      pointer-events: auto;
    }

    .erdshop-floating-widget:hover {
      box-shadow: 0 18px 46px rgba(4, 8, 20, 0.6), 0 0 34px rgba(126, 193, 63, 0.48), inset 0 1px 1px rgba(255, 255, 255, 0.3);
      transform: translateY(-4px);
    }

    .erdshop-widget-link {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      color: #fff;
    }

    .erdshop-widget-icon-wrap {
      position: relative;
      width: 58px;
      height: 58px;
      background: linear-gradient(135deg, rgba(126, 193, 63, 0.24) 0%, rgba(126, 193, 63, 0.08) 100%);
      border: 1.5px solid rgba(126, 193, 63, 0.5);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    }

    .erdshop-floating-widget:hover .erdshop-widget-icon-wrap {
      border-color: rgba(126, 193, 63, 0.9);
      box-shadow: 0 6px 18px rgba(126, 193, 63, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    }

    .erdshop-cart-img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
      transition: transform .32s cubic-bezier(0.2, 0, 0.2, 1);
    }

    .erdshop-floating-widget:hover .erdshop-cart-img {
      transform: scale(1.12) rotate(-5deg);
    }

    .widget-pulse {
      position: absolute;
      top: -3px;
      right: -3px;
      width: 11px;
      height: 11px;
      background: #ff2a85;
      border: 2px solid #ffffff;
      border-radius: 50%;
      animation: pulseDot 1.6s infinite;
    }

    @keyframes pulseDot {
      0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 42, 133, 0.7);
      }

      70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(255, 42, 133, 0);
      }

      100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 42, 133, 0);
      }
    }

    .erdshop-widget-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-start;
    }

    .erdshop-widget-domain {
      font-family: var(--sans);
      font-size: 17.5px;
      font-weight: 700;
      color: #ffffff;
      white-space: nowrap;
      letter-spacing: 0.01em;
      line-height: 1.2;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    .erdshop-widget-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, #7ec13f 0%, #5ba227 100%);
      color: #091630;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 8px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(126, 193, 63, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .erdshop-floating-widget:hover .erdshop-widget-cta {
      background: linear-gradient(135deg, #90e045 0%, #68b82e 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(126, 193, 63, 0.6);
    }

    /* -------- QUICK ENQUIRY MODAL (CONTACT FORM - REFERENCE IMAGE STYLE) -------- */
    .enquiry-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 100000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .enquiry-modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .enquiry-modal-shell {
      background: #ffffff;
      border-radius: 20px;
      max-width: 480px;
      width: 100%;
      padding: 28px 32px 32px 32px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
      transform: translateY(20px) scale(0.96);
      transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
      box-sizing: border-box;
    }

    .enquiry-modal-overlay.open .enquiry-modal-shell {
      transform: translateY(0) scale(1);
    }

    .contact-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .contact-modal-title {
      font-family: var(--sans, sans-serif);
      font-size: 25px;
      font-weight: 600;
      color: #27882b;
      /* green from reference screenshot */
      margin: 0;
      line-height: 1.2;
    }

    .contact-modal-close {
      background: none;
      border: none;
      font-size: 22px;
      line-height: 1;
      color: #6b7280;
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .contact-modal-close:hover {
      color: #111827;
      transform: scale(1.15);
    }

    .contact-modal-form {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .contact-modal-input,
    .contact-modal-textarea {
      width: 100%;
      background: #f4f5f7;
      /* subtle light gray input background */
      border: 1px solid #dcdfe4;
      border-radius: 9px;
      padding: 13px 16px;
      font-family: var(--sans, sans-serif);
      font-size: 15px;
      color: #1f2937;
      outline: none;
      box-sizing: border-box;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-modal-input::placeholder,
    .contact-modal-textarea::placeholder {
      color: #9ca3af;
      font-size: 15px;
    }

    .contact-modal-input:focus,
    .contact-modal-textarea:focus {
      background: #ffffff;
      border-color: #27882b;
      box-shadow: 0 0 0 3px rgba(39, 136, 43, 0.15);
    }

    .contact-modal-textarea {
      min-height: 74px;
      resize: vertical;
    }

    .contact-modal-submit-btn {
      width: 100%;
      background: #a31919;
      /* deep rich red matching reference image */
      color: #ffffff;
      border: none;
      border-radius: 30px;
      /* full pill button */
      padding: 15px 20px;
      font-family: var(--sans, sans-serif);
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 6px;
      box-shadow: 0 4px 14px rgba(163, 25, 25, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }

    .contact-modal-submit-btn:hover {
      background: #8b1414;
      box-shadow: 0 6px 20px rgba(163, 25, 25, 0.5);
      transform: translateY(-1px);
    }

    .contact-modal-submit-btn:active {
      transform: translateY(1px);
    }

    @media (max-width: 720px) {
      .floating-widgets-stack {
        bottom: 14px;
        right: 14px;
        gap: 10px;
      }

      .enquiry-floating-widget {
        padding: 8px 14px 8px 10px;
        border-radius: 12px;
      }

      .enquiry-widget-icon-wrap {
        width: 38px;
        height: 38px;
      }

      .enquiry-widget-title {
        font-size: 14px;
      }

      .enquiry-widget-sub {
        font-size: 10px;
      }

      .floating-whatsapp-widget {
        width: 50px;
        height: 50px;
      }

      .whatsapp-circle-inner {
        width: 40px;
        height: 40px;
      }

      .whatsapp-svg {
        width: 24px;
        height: 24px;
      }

      .erdshop-floating-widget {
        padding: 10px 16px 10px 12px;
        border-radius: 14px;
      }

      .erdshop-widget-icon-wrap {
        width: 48px;
        height: 48px;
      }

      .erdshop-cart-img {
        width: 34px;
        height: 34px;
      }

      .erdshop-widget-domain {
        font-size: 15px;
      }

      .erdshop-widget-cta {
        padding: 5px 14px;
        font-size: 11.5px;
      }

      .enquiry-modal-shell {
        padding: 22px 20px 24px;
        border-radius: 16px;
      }

      .contact-modal-title {
        font-size: 22px;
      }
    }

    /* ============ ERDSHOP E-COMMERCE SECTION ============ */
    .erdshop-home-section {
      background: linear-gradient(135deg, #09142b 0%, #102454 50%, #0d1e42 100%);
      border-radius: 20px;
      padding: 44px 36px;
      margin: 36px 0;
      color: #fff;
      position: relative;
      overflow: hidden;
      border: 1.5px solid rgba(126, 193, 63, 0.4);
      box-shadow: 0 24px 60px rgba(8, 18, 44, 0.35);
    }

    .erdshop-bg-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .erdshop-glow-1 {
      top: -100px;
      right: -100px;
      background: rgba(126, 193, 63, 0.18);
    }

    .erdshop-glow-2 {
      bottom: -150px;
      left: -100px;
      background: rgba(28, 63, 148, 0.35);
    }

    .erdshop-header-flex {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .erdshop-headline h2 {
      font-family: var(--serif);
      font-size: clamp(24px, 3.2vw, 36px);
      color: #fff;
      font-weight: 500;
      line-height: 1.25;
      margin-top: 8px;
    }

    .erdshop-headline h2 span {
      color: var(--green);
      font-family: var(--sans);
      font-weight: 700;
    }

    .erdshop-perks-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .erdshop-perk {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 30px;
      padding: 6px 14px;
      font-size: 12px;
      color: #e2e8f0;
    }

    .erdshop-perk span.dot {
      color: var(--green);
      font-weight: 800;
    }

    .erdshop-categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      position: relative;
      z-index: 2;
      margin-bottom: 28px;
    }

    .erdshop-category-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 22px 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      color: inherit;
      transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
      cursor: pointer;
    }

    .erdshop-category-card:hover {
      transform: translateY(-5px);
      border-color: var(--green);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    }

    .erdshop-cat-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .erdshop-cat-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(126, 193, 63, 0.15);
      border: 1px solid rgba(126, 193, 63, 0.3);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all .2s;
    }

    .erdshop-category-card:hover .erdshop-cat-icon {
      background: var(--green);
      color: #0c1b1a;
      transform: scale(1.06);
    }

    .erdshop-cat-tag {
      font-size: 10px;
      font-weight: 700;
      color: #a5f3fc;
      background: rgba(255, 255, 255, 0.08);
      padding: 3px 8px;
      border-radius: 20px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .erdshop-category-card h4 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 8px 0;
      line-height: 1.35;
    }

    .erdshop-category-card p {
      font-size: 12.5px;
      color: #cbd5e1;
      line-height: 1.5;
      margin: 0 0 16px 0;
      flex-grow: 1;
    }

    .erdshop-cat-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--green);
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      transition: gap .2s ease;
    }

    .erdshop-category-card:hover .erdshop-cat-action {
      gap: 10px;
      color: #91db50;
    }

    .erdshop-banner-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(126, 193, 63, 0.12);
      border: 1px dashed rgba(126, 193, 63, 0.4);
      border-radius: 12px;
      padding: 16px 22px;
      flex-wrap: wrap;
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .erdshop-cta-big-btn {
      background: var(--green);
      color: #0c1b1a;
      font-weight: 700;
      font-size: 13.5px;
      padding: 11px 22px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(126, 193, 63, 0.35);
      transition: all .2s;
    }

    .erdshop-cta-big-btn:hover {
      background: #91db50;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(126, 193, 63, 0.5);
    }

    /* ============ CENTERED NEWS (3 NEWS + ONE ARROW FOR DISCOVER NEWS) ============ */
    .news-section-wrap {
      width: 100%;
      margin: 40px 0 65px 0;
    }

    .news-center-header {
      text-align: center;
      margin: 0 auto 36px auto;
      max-width: 680px;
    }

    .news-center-header .kicker {
      margin-bottom: 8px;
    }

    .news-center-header h2 {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 500;
      color: #0c1b3d;
      margin: 0 0 10px 0;
    }

    .news-center-header p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    .news-center-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 22px;
      width: 100%;
      margin: 0 auto;
    }

    .news-card {
      width: 310px;
      max-width: 320px;
      height: 440px;
      background: #ffffff;
      border: 1px solid rgba(20, 30, 60, 0.1);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 18px rgba(12, 27, 61, 0.06);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      flex-shrink: 0;
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(12, 27, 61, 0.14);
      border-color: #1c3f94;
    }

    .news-card-img-wrap {
      position: relative;
      width: 100%;
      height: 180px;
      overflow: hidden;
      background: #f1f5f9;
      flex-shrink: 0;
    }

    .news-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .news-card:hover .news-card-img-wrap img {
      transform: scale(1.06);
    }

    .news-card-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(12, 27, 61, 0.88);
      backdrop-filter: blur(6px);
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .news-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }

    .news-card-date {
      font-size: 11px;
      color: #8a99ad;
      font-weight: 500;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .news-card-title {
      font-family: var(--serif);
      font-size: 15.5px;
      line-height: 1.35;
      font-weight: 600;
      color: #0c1b3d;
      margin: 0 0 8px 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-card-desc {
      font-size: 12px;
      line-height: 1.5;
      color: #64748b;
      margin: 0 0 12px 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-card-read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #1c3f94;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .news-card:hover .news-card-read {
      gap: 10px;
      color: #7ec13f;
    }

    /* ONE ARROW & DISCOVER NEWS TEXT (NO DIV GRID / NO CARD BOX / PURE ARROW & TEXT) */
    .news-arrow-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-decoration: none;
      cursor: pointer;
      padding: 10px;
      background: none;
      border: none;
      box-shadow: none;
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }

    .news-arrow-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #0c1b3d;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(12, 27, 61, 0.25);
      transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .news-arrow-link:hover .news-arrow-icon {
      background: #7ec13f;
      color: #0c1b3d;
      transform: translateX(6px) scale(1.1);
      box-shadow: 0 8px 26px rgba(126, 193, 63, 0.5);
    }

    .news-arrow-text {
      font-size: 13px;
      font-weight: 700;
      color: #0c1b3d;
      white-space: nowrap;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }

    .news-arrow-link:hover .news-arrow-text {
      color: #1c3f94;
    }

    @media (max-width: 1100px) {
      .news-center-row {
        flex-wrap: wrap;
        gap: 20px;
      }

      .news-card {
        width: calc(50% - 20px);
        max-width: 340px;
      }

      .news-arrow-link {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
      }

      .erdshop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 680px) {
      .news-card {
        width: 100%;
        max-width: 100%;
        height: auto;
      }

      .erdshop-categories-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ================= SECTION: INSIDE ERD MANUFACTURING ================= */
    .mfg-showcase-section {
      width: 100%;
      background: #f1f5fa;
      background: linear-gradient(180deg, #f4f8fc 0%, #eaf2fb 100%);
      padding: 60px 20px 70px;
      box-sizing: border-box;
    }

    .mfg-showcase-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .mfg-showcase-title {
      text-align: center;
      font-family: var(--serif);
      font-size: clamp(28px, 3.2vw, 38px);
      font-weight: 500;
      color: #0c1b3d;
      margin: 0 0 34px 0;
      letter-spacing: -0.01em;
    }

    .mfg-showcase-grid {
      display: grid;
      grid-template-columns: 7.5fr 4.5fr;
      gap: 24px;
      align-items: stretch;
    }

    .mfg-main-media {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      background: #000000;
      box-shadow: 0 25px 60px rgba(12, 27, 61, 0.14);
      min-height: 0;
    }

    .mfg-video-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 24px;
      overflow: hidden;
    }

    .mfg-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .mfg-side-stack {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 24px;
      height: 100%;
      min-height: 0;
    }

    .mfg-side-card {
      border-radius: 20px;
      background: #0c1b3d;
      overflow: hidden;
      position: relative;
      box-shadow: 0 16px 40px rgba(12, 27, 61, 0.10);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      min-height: 0;
      height: 100%;
    }

    .mfg-side-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(12, 27, 61, 0.18);
    }

    .mfg-side-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mfg-side-card:hover .mfg-side-img {
      transform: scale(1.08);
    }

    @media (max-width: 960px) {
      .mfg-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .mfg-main-media {
        aspect-ratio: 16 / 9;
      }

      .mfg-side-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 16px;
        height: auto;
      }

      .mfg-side-card {
        height: auto;
        aspect-ratio: 16 / 10;
      }
    }

    @media (max-width: 600px) {
      .mfg-showcase-section {
        padding: 40px 16px 45px;
      }

      .mfg-side-stack {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 14px;
      }

      .mfg-side-card {
        min-height: 180px;
        aspect-ratio: 16 / 10;
      }
    }

    @media (max-width: 600px) {
      .mfg-showcase-section {
        padding: 40px 16px 45px;
      }

      .mfg-side-stack {
        flex-direction: column;
        gap: 14px;
      }

      .mfg-side-card {
        min-height: 180px;
      }
    }

    /* Standalone active page override */
    .page {
      display: none;
    }

    #page-home.page,
    .page.active {
      display: block !important;
    }

/* ============ BOTTOM PROMO BANNER ============ */
      .bottom-banner-strip {
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        line-height: 0;
        display: block;
        overflow: hidden;
        box-sizing: border-box;
      }

      .bottom-banner-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
      }

      .brand-trust-strip {
        background: #ffffff;
        border-top: none;
        border-bottom: 1px solid #eef1f6;
        padding: 65px 0 90px;
        width: 100%;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
      }

      .brand-trust-header {
        text-align: center;
        margin-bottom: 55px;
        padding: 0 20px;
      }

      .brand-trust-heading {
        font-family: var(--serif), 'Playfair Display', Georgia, serif;
        font-size: clamp(26px, 3vw, 34px);
        font-weight: 500;
        color: #0c1b3d;
        letter-spacing: 0.02em;
        margin: 0;
        line-height: 1.3;
      }

      .brand-trust-marquee {
        display: flex;
        width: 100%;
        overflow: hidden;
        position: relative;
        user-select: none;
        mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
      }

      .brand-trust-track {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        gap: 100px;
        padding-right: 100px;
        animation: brandTrustScroll 35s linear infinite;
        will-change: transform;
      }

      .brand-trust-marquee:hover .brand-trust-track {
        animation-play-state: paused;
      }

      @keyframes brandTrustScroll {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-100%);
        }
      }

      .trust-logo {
        height: 95px;
        width: auto;
        max-width: 280px;
        object-fit: contain;
        display: block;
        flex-shrink: 0;
        transition: transform 0.25s ease, opacity 0.25s ease;
        user-select: none;
        -webkit-user-drag: none;
        cursor: pointer;
      }

      .trust-logo:hover {
        transform: scale(1.08);
      }

      @media only screen and (max-width: 991px) {
        .brand-trust-strip {
          padding: 48px 0 65px;
        }

        .brand-trust-header {
          margin-bottom: 38px;
        }

        .brand-trust-heading {
          font-size: 20px;
        }

        .brand-trust-track {
          gap: 75px;
          padding-right: 75px;
          animation-duration: 28s;
        }

        .trust-logo {
          height: 75px;
          max-width: 220px;
        }
      }

      @media only screen and (max-width: 575px) {
        .brand-trust-strip {
          padding: 38px 0 50px;
        }

        .brand-trust-header {
          margin-bottom: 28px;
        }

        .brand-trust-heading {
          font-size: 17px;
        }

        .brand-trust-track {
          gap: 50px;
          padding-right: 50px;
          animation-duration: 22s;
        }

        .trust-logo {
          height: 58px;
          max-width: 170px;
        }
      }