    @import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap');

    :root {
      --green: #079365;
      --green-lt: #34d399;
      --green-bg: #bde8d4;
      --green-bdr: #d1fae5;
      --blue: #104ba9;
      --blue-mid: #091435;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-500: #6b7280;
      --gray-300: #d1d5db;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --primary-blue: #2c3e50;
      --accent-green: #27ae60;
      --warn-yellow: #f1c40f;
      --danger-red: #e74c3c;
      --node-bg: #ffffff;
      --border-color: #bdc2c7;
    }



    .flow-container {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding: 20px;
      overflow-x: auto;
      background: #f4f7f6;
    }

    .flow-header {
      background: var(--primary-blue);
      color: white;
      padding: 15px;
      text-align: center;
      font-weight: bold;
      border-radius: 8px 8px 0 0;
      margin-bottom: 20px;
    }

    .flow-grid {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
    }

    /* Node Styles */
    .node {
      border: 2px solid var(--primary-blue);
      background: var(--node-bg);
      padding: 10px 15px;
      min-width: 140px;
      text-align: center;
      font-size: 0.85rem;
      font-weight: 600;
      position: relative;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .node.oval {
      border-radius: 50px;
      background: #d5e6d5;
    }

    .node.decision {
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f9f9f9;
      padding: 20px;
    }

    /* Arrows */
    .arrow {
      align-self: center;
      color: var(--primary-blue);
      font-weight: bold;
      font-size: 1.2rem;
    }

    .label {
      font-size: 0.7rem;
      color: #666;
      text-transform: uppercase;
      display: block;
      margin-bottom: 5px;
    }

    /* Special Logic Containers */
    .logic-branch {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .rework-loop {
      border: 1px dashed var(--danger-red);
      padding: 5px;
      background: #fff5f5;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--gray-700);
      overflow-x: hidden;
    }

    /* ── UTILS ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .section {
      padding: 28px 0;
      min-height: 100vh;
    }

    .section-gray {
      background: var(--gray-50);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-bg);
      color: var(--green);
      border: 1px solid var(--green-bdr);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: '▶';
      font-size: 0.55rem;
    }

    h2.stitle {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 700;
      color: var(--blue);
      line-height: 1.12;
      margin-bottom: 14px;
    }

    h2.stitle em {
      color: var(--green);
      font-style: normal;
    }

    p.sdesc {
      color: var(--gray-500);
      font-size: 1.03rem;
      line-height: 1.75;
      max-width: 600px;
      margin-bottom: 48px;
    }

    .btn-pri {
      display: inline-block;
      background: var(--green);
      color: var(--white);
      padding: 13px 30px;
      border-radius: 4px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
    }

    .btn-pri:hover {
      background: #c44b00;
      transform: translateY(-2px);
    }

    .btn-sec {
      display: inline-block;
      background: transparent;
      color: var(--blue);
      padding: 13px 30px;
      border-radius: 4px;
      border: 2px solid var(--blue);
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    .btn-sec:hover {
      background: var(--blue);
      color: var(--white);
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--green-bdr);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 auto;
      padding: 0 28px;
      height: 70px;
    }

    .logo {
      height: 140px;
      padding-top: 12px;
    }

    .logo span {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray-900);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color .2s;
      padding: 4px 0;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover {
      color: var(--green);
      border-bottom-color: var(--green);
    }

    .nav-cta {
      background: var(--green) !important;
      color: var(--white) !important;
      padding: 8px 22px !important;
      border-radius: 4px;
      border-bottom: none !important;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: #c44b00 !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--gray-700);
      border-radius: 2px;
      transition: .3s;
    }

    /* ── HERO ── */
    #hero {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding-top: 70px;
    }

    .logo-img {
      width: 150px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('./hero.jpg') center/cover no-repeat;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(30, 58, 95, 0.93) 0%, rgba(30, 58, 95, 0.78) 55%, rgba(30, 58, 95, 0.4) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 1200px;
      padding: 20px 0px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(232, 93, 4, 0.15);
      border: 1px solid rgba(232, 93, 4, 0.4);
      color: #fbbf24;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 3px;
      margin-bottom: 24px;
    }

    .hero-badge .dot {
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .5;
        transform: scale(1.4);
      }
    }

    #hero h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.04;
      margin-bottom: 22px;
    }

    #hero h1 em {
      color: var(--green);
      font-style: normal;
    }

    #hero p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.75;
      max-width: 580px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding: 24px;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      border-radius: 14px;
    }

    .hstat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: #fb923c;
    }

    .hstat-lbl {
      font-size: 0.78rem;
      color: rgba(0, 0, 0, 0.55);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--green);
      padding: 11px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-block;
      animation: tick 30s linear infinite;
    }

    .ticker-track span {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 2px;
      color: #fff;
      margin: 0 20px;
    }

    .ticker-track span::before {
      content: '◆  ';
    }

    @keyframes tick {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      height: 720px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .about-img-badge {
      position: absolute;
      bottom: -1px;
      right: -1px;
      background: var(--green);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 24px;
      border-radius: 0 0 8px 0;
      letter-spacing: 1px;
    }

    .about-accent {
      position: absolute;
      top: -14px;
      left: -14px;
      width: 100%;
      height: 100%;
      border: 3px solid var(--green-bdr);
      border-radius: 8px;
      z-index: -1;
    }

    .about-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: var(--gray-700);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .about-list li .check {
      width: 22px;
      height: 22px;
      background: var(--green-bg);
      border: 1.5px solid var(--green-bdr);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 0.75rem;
      flex-shrink: 0;
      margin-top: 2px;
      font-weight: 700;
    }

    /* ── CAPABILITIES ── */
    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .cap-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-top: 4px solid var(--green);
      border-radius: 6px;
      padding: 32px 26px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      transition: transform .25s, box-shadow .25s;
    }

    .cap-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(232, 93, 4, 0.1);
    }

    .cap-icon {
      width: 54px;
      height: 54px;
      background: var(--green-bg);
      border: 1.5px solid var(--green-bdr);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 18px;
    }

    .cap-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 10px;
    }

    .cap-card p {
      color: var(--gray-500);
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* ── FLOWCHART ── */
    .flow-wrapper {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 10px;
      padding: 48px 36px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .flow-header {
      text-align: center;
      margin-bottom: 40px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 2px;
      color: var(--green);
      text-transform: uppercase;
    }

    .flow-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .flow-node {
      width: 108px;
      height: 80px;
      border: 2px solid var(--green);
      border-radius: 7px;
      background: linear-gradient(135deg, var(--green-bg), #fff);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8px;
      text-align: center;
      transition: box-shadow .2s, background .2s;
      cursor: default;
    }

    .flow-node:hover {
      box-shadow: 0 6px 24px rgba(232, 93, 4, 0.18);
      background: linear-gradient(135deg, #ffe0cc, var(--green-bg));
    }

    .flow-node .ni {
      font-size: 1.5rem;
      margin-bottom: 4px;
    }

    .flow-node .nt {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .flow-node.dispatch {
      border-color: var(--blue);
      background: linear-gradient(135deg, #dbeafe, #eff6ff);
    }

    .flow-node.inspect {
      border-color: var(--green-lt);
      background: linear-gradient(135deg, #fef9c3, #fffbeb);
    }

    .farr {
      display: flex;
      align-items: center;
      padding: 0 6px;
    }

    .farr svg {
      fill: var(--green);
    }

    .flow-lbl {
      font-size: 0.63rem;
      color: var(--gray-500);
      text-align: center;
      max-width: 108px;
      margin-top: 7px;
      letter-spacing: .4px;
      font-weight: 500;
    }

    .flow-step {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .flow-down {
      display: flex;
      justify-content: center;
      margin: 8px 0;
    }

    .flow-down svg {
      fill: var(--green);
    }

    .flow-decision-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 4px 0 8px;
    }

    .dec-yes {
      background: #dcfce7;
      border: 1.5px solid #16a34a;
      color: #15803d;
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 3px;
      letter-spacing: 1px;
    }

    .dec-no {
      background: #fee2e2;
      border: 1.5px solid #dc2626;
      color: #dc2626;
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 3px;
      letter-spacing: 1px;
    }

    .storage-note {
      text-align: center;
      margin-top: 28px;
      padding: 12px 24px;
      background: var(--gray-50);
      border: 1px dashed var(--gray-300);
      border-radius: 5px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gray-500);
      letter-spacing: .8px;
    }

    /* ── MACHINES ── */
    .machines-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .mcard {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-300);
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      transition: box-shadow .25s;
    }

    .mcard:hover {
      box-shadow: 0 12px 40px rgba(232, 93, 4, 0.1);
    }

    .mcard img {
      width: 100%;
      height: 250px;
      min-height: 170px;
      object-fit: contain;
      display: block;
    }

    .mcard-body {
      padding: 24px 20px;
      background: var(--white);
    }

    .mcard-body h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .mcard-body p {
      color: var(--gray-500);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .mspec-list {
      margin: 0 0 12px 0;
      padding-left: 18px;
      color: var(--gray-700);
      font-size: 0.82rem;
      line-height: 1.8;
    }

    .mspec-list li {
      border-bottom: 1px solid var(--gray-100);
      padding: 2px 0;
    }

    .mspec-list li:last-child {
      border-bottom: none;
    }

    .mspec {
      display: inline-block;
      background: var(--green-bg);
      border: 1px solid var(--green-bdr);
      color: var(--green);
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 3px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ── INDUSTRIES ── */
    .ind-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .ind-card {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-300);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform .25s, box-shadow .25s;
    }

    .ind-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    }

    .ind-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
    }

    .ind-card-body {
      padding: 20px 20px 22px;
      background: var(--white);
    }

    .ind-icon {
      width: 40px;
      height: 40px;
      background: var(--green-bg);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 12px;
      border: 1.5px solid var(--green-bdr);
    }

    .ind-card-body h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 6px;
    }

    .ind-card-body p {
      color: var(--gray-500);
      font-size: 0.85rem;
      line-height: 1.6;
    }

    /* ── PROCESS TIMELINE ── */
    .pt-wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .pt-wrap::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-lt), var(--green));
      z-index: 0;
    }

    .pt-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      z-index: 1;
    }

    .pt-num {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(232, 93, 4, 0.15);
    }

    .pt-step h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .pt-step p {
      color: var(--gray-500);
      font-size: 0.85rem;
      line-height: 1.55;
    }

    /* ── QUALITY ── */
    .quality-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .quality-img img {
      width: 100%;
      height: 720px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    }

    .q-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .q-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .q-badge {
      width: 44px;
      height: 44px;
      background: var(--green-bg);
      border: 1.5px solid var(--green-bdr);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: var(--green);
      font-size: 0.88rem;
      flex-shrink: 0;
    }

    .q-text h4 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: var(--blue);
      font-size: 1.05rem;
      margin-bottom: 4px;
    }

    .q-text p {
      color: var(--gray-500);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    /* ── STATS BANNER ── */
    .stats-banner {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      padding: 72px 0;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .sb-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 6px;
    }

    .sb-lbl {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ── CTA ── */
    .cta-strip {
      background: var(--green);
      padding: 72px 0;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .cta-inner h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      max-width: 520px;
      line-height: 1.2;
    }

    .cta-inner h2 span {
      color: #fbbf24;
    }

    .btn-white {
      display: inline-block;
      background: #fff;
      color: var(--green);
      padding: 14px 34px;
      border-radius: 4px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .btn-white:hover {
      background: var(--blue);
      color: #fff;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
      align-items: start;
    }

    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-left: 4px solid var(--green);
      border-radius: 5px;
      padding: 20px 22px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .cc-icon {
      width: 42px;
      height: 42px;
      background: var(--green-bg);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .cc-text h4 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: var(--blue);
      font-size: 1rem;
      margin-bottom: 3px;
    }

    .cc-text p {
      color: var(--gray-500);
      font-size: 0.88rem;
    }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      padding: 36px 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .contact-form h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .form-row.single {
      grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-300);
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--gray-700);
      background: var(--gray-50);
      transition: border-color .2s;
      outline: none;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--green);
    }

    .contact-form textarea {
      height: 110px;
      resize: vertical;
    }

    .contact-form .btn-pri {
      width: 100%;
      text-align: center;
      margin-top: 4px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--blue);
      border-top: 3px solid var(--green);
      padding: 64px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: var(--green);
    }

    .footer-about p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .fcol h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .fcol ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .fcol ul a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color .2s;
    }

    .fcol ul a:hover {
      color: var(--green);
    }

    .fcontact-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .fcontact-item .fi {
      color: var(--green);
      flex-shrink: 0;
      font-size: 1rem;
    }

    .fcontact-item span {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.82rem;
    }

    .ipc-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ibadge {
      background: rgba(232, 93, 4, 0.15);
      border: 1px solid rgba(232, 93, 4, 0.35);
      color: var(--green);
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 2px;
      letter-spacing: 1px;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:960px) {

      .about-grid,
      .quality-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cap-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ind-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .machines-grid {
        grid-template-columns: 1fr;
      }

      .pt-wrap {
        grid-template-columns: repeat(2, 1fr);
      }

      .pt-wrap::before {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    @media(max-width:600px) {

      .cap-grid,
      .ind-grid,
      .stats-row,
      .pt-wrap,
      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-inner {
        flex-direction: column;
      }

      .mcard {
        grid-template-columns: 1fr;
      }

      .mcard img {
        height: 200px;
      }
    }

    /* ── CLIENTS ── */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .client-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      padding: 24px 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }

    .client-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(232, 93, 4, 0.1);
      border-color: var(--green-bdr);
    }

    .client-icon {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .client-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: var(--blue);
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .client-seg {
      font-size: 0.78rem;
      color: var(--gray-500);
      letter-spacing: .5px;
    }

    .client-trust-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), #2d5282);
      border-radius: 10px;
      padding: 32px 40px;
      gap: 0;
      flex-wrap: wrap;
    }

    .ctb-item {
      text-align: center;
      padding: 0 32px;
    }

    .ctb-num {
      display: block;
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: #fb923c;
    }

    .ctb-lbl {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.65);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 3px;
      display: block;
    }

    .ctb-div {
      width: 1px;
      height: 60px;
      background: rgba(255, 255, 255, 0.15);
    }

    /* ── PROJECTS ── */
    .proj-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .proj-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform .25s, box-shadow .25s;
    }

    .proj-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .proj-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .proj-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .proj-card:hover .proj-img-wrap img {
      transform: scale(1.05);
    }

    .proj-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--green);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 1px;
      padding: 4px 12px;
      border-radius: 3px;
      text-transform: uppercase;
    }

    .proj-body {
      padding: 22px 22px 20px;
    }

    .proj-body h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .proj-body p {
      color: var(--gray-500);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .proj-meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .proj-meta span {
      background: var(--green-bg);
      border: 1px solid var(--green-bdr);
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 3px;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: .5px;
    }

    /* ── CERTIFICATIONS ── */
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .cert-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      padding: 32px 26px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
      transition: transform .25s, box-shadow .25s;
    }

    .cert-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    }

    .cert-card.cert-highlight {
      border: 2px solid var(--green);
      box-shadow: 0 4px 20px rgba(232, 93, 4, 0.1);
    }

    .cert-logo {
      margin-bottom: 18px;
    }

    .cert-shield {
      font-size: 2.6rem;
      margin-bottom: 6px;
    }

    .cert-std {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .cert-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 10px;
    }

    .cert-card p {
      color: var(--gray-500);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .cert-badge {
      display: inline-block;
      background: var(--gray-100);
      border: 1px solid var(--gray-300);
      color: var(--gray-500);
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 3px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .cert-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1200px;
      margin: 40px auto 0;
    }

    .cert-img-grid img {
      width: 100%;
      height: 560px;
      aspect-ratio: 3 / 4;
      object-fit: contain;
      /* border: 2px solid var(--green); */
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .cert-badge-green {
      background: var(--green-bg);
      border-color: var(--green-bdr);
      color: var(--green);
    }

    /* ── GALLERY ── */
    .gallery-track-wrap {
      position: relative;
      overflow: hidden;
      padding: 0;
      margin-top: 0;
    }

    .gallerySwiper {
      position: relative;
      max-width: 100%;
    }

    .swiper-wrapper {
      display: flex;
    }

    .gslide {
      width: 360px;
      height: 260px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .swiper-slide.gslide {
      width: 560px;
      height: 560px;
    }

    .gslide:hover {
      transform: scale(1.03);
    }

    .gslide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gslide-cap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(30, 58, 95, 0.85));
      color: #fff;
      padding: 28px 16px 14px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* Swiper Navigation Buttons */
    .swiper-button-next,
    .swiper-button-prev {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: auto;
      height: auto;
      background: none;
      border: none;
      color: #fff;
      font-size: 0;
      cursor: pointer;
      z-index: 10;
      outline: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      content: '';
      font-size: 24px;
      color: #fff;
      font-weight: 900;
    }

    .swiper-button-next::after {
      content: '❯';
    }

    .swiper-button-prev::after {
      content: '❮';
    }

    .swiper-button-prev {
      left: 12px;
    }

    .swiper-button-next {
      right: 12px;
    }

    /* Swiper Pagination */
    .swiper-pagination {
      position: static !important;
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      padding-bottom: 0;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-300) !important;
      opacity: 1 !important;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      margin: 0 !important;
    }

    .swiper-pagination-bullet-active {
      background: var(--green) !important;
      transform: scale(1.3);
    }

    .gallery-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      color: var(--green);
      font-size: 1.3rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
    }



    .gallery-prev {
      left: 12px;
    }

    .gallery-next {
      right: 12px;
    }

    .gallery-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }

    .gdot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-300);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .gdot.active {
      background: var(--green);
      transform: scale(1.3);
    }

    /* ── SWIPER OVERRIDES ── */
    .swiper {
      overflow: visible;
    }

    .swiper-wrapper {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .swiper-slide {
      box-sizing: border-box;
    }

    .swiper-button-prev,
    .swiper-button-next {}

    .swiper-button-disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* ── WHATSAPP ── */
    .wa-strip {
      background: linear-gradient(135deg, #075E54, #128C7E);
      padding: 48px 0;
    }

    .wa-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .wa-left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex: 1;
    }

    .wa-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .wa-left h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .wa-left p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      line-height: 1.55;
      max-width: 480px;
    }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #075E54;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, transform .2s;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .wa-btn:hover {
      background: #dcfce7;
      transform: scale(1.04);
    }

    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      animation: wapulse 2.5s infinite;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    }

    @keyframes wapulse {

      0%,
      100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
      }

      50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
      }
    }

    /* ── MAP ── */
    .map-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 32px;
      align-items: start;
    }

    .map-info-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      padding: 28px 24px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      height: 460px;
    }

    .mi-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .mi-icon {
      width: 38px;
      height: 38px;
      background: var(--green-bg);
      border: 1px solid var(--green-bdr);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .mi-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gray-500);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .mi-val {
      color: var(--gray-700);
      font-size: 0.9rem;
      line-height: 1.55;
    }

    /* ── RESPONSIVE additions ── */
    @media(max-width:960px) {
      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .proj-grid {
        grid-template-columns: 1fr;
      }

      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .map-layout {
        grid-template-columns: 1fr;
      }

      .client-trust-bar {
        gap: 16px;
        padding: 24px;
      }

      .ctb-div {
        display: none;
      }

      .ctb-item {
        padding: 8px 16px;
      }
    }

    @media(max-width:600px) {

      .clients-grid,
      .cert-grid {
        grid-template-columns: 1fr;
      }

      .wa-inner {
        flex-direction: column;
      }

      .gslide,
      .swiper-slide.gslide {
        width: 280px;
        height: 200px;
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 40px;
        height: 40px;
      }

      .gslide-cap {
        padding: 20px 12px 10px;
        font-size: 0.75rem;
      }
    }


    /* ── LOGO GRID ── */
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .logo-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      padding: 28px 20px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      cursor: default;
    }

    .logo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(232, 93, 4, 0.1);
      border-color: var(--green-bdr);
    }

    .logo-box {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      width: 100%;
    }

    .logo-sector {
      font-size: 0.73rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      border-top: 1px solid var(--gray-100);
      padding-top: 10px;
      width: 100%;
      text-align: center;
    }

    /* Brand-specific logo styles */
    .logo-text-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .lt-main {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .lt-sub {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 2px;
    }

    .lt-tiny {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 1.5px;
      color: #666;
    }

    /* Rapidtron */
    .rapidtron .lt-main {
      font-size: 1.25rem;
      color: #b91c1c;
    }

    .rapidtron .lt-sub {
      color: #374151;
      font-size: 0.72rem;
    }

    .logo-diamond {
      color: #b91c1c;
      font-size: 0.7rem;
      letter-spacing: 2px;
      margin-top: 2px;
    }

    /* Areca */
    .areca-main {
      font-size: 1.45rem;
      color: #1a5fa8;
      font-weight: 700;
      letter-spacing: 3px;
    }

    /* Alltech */
    .alltech-main {
      font-size: 1.5rem;
      color: #1a6abf;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      font-style: italic;
    }

    /* Sumith */
    .sumith {
      flex-direction: row;
      align-items: center;
      gap: 4px;
    }

    .sumith-main {
      font-size: 1.6rem;
      color: #1a7a3c;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }

    .sumith-check {
      font-size: 1.2rem;
      color: #22c55e;
      font-weight: 700;
    }

    /* Lucent */
    .lucent {
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }

    .lucent-icon {
      font-size: 1.6rem;
      color: #1a5fa8;
    }

    .lucent-main {
      font-size: 1.35rem;
      color: #1a5fa8;
      font-weight: 700;
      letter-spacing: 2px;
    }

    /* Senatla */
    .senatla {
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }

    .senatla-tower {
      font-size: 1.6rem;
    }

    .senatla-main {
      font-size: 1.2rem;
      color: #1e3a5f;
      font-weight: 700;
      letter-spacing: 2px;
      display: block;
    }

    /* ReckonGreen */
    .reckongreen {
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }

    .reckon-icon {
      font-size: 1.4rem;
    }

    .reckon-main {
      font-size: 1.1rem;
      color: #1e293b;
      font-weight: 700;
      letter-spacing: 1px;
      display: block;
    }

    /* HBL */
    .hbl-main {
      font-size: 2.8rem;
      color: #8b0000;
      font-weight: 700;
      letter-spacing: 4px;
      font-family: 'Rajdhani', sans-serif;
    }

    @media(max-width:960px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:500px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }