/* Horizontal ≥1180px; vertical & centered <1180px */
.productProcess-steps .steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  gap: 0.25rem;
}

@media (min-width: 1180px) {
  .productProcess-steps .steps-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
}

/* all steps + connectors hidden initially */
.productProcess-steps .step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
  }


  /* OUTER */
@keyframes glowOuter {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.10);
      opacity: 0.3;
    }
  }
  
  /* MID */
  @keyframes glowMid {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.10);
      opacity: 0.3;
    }
  }
  
  /* INNER */
  @keyframes glowInner {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.10);
      opacity: 0.3;
    }
  }

  .glow-outer {
  animation: glowOuter 3s ease-in-out infinite;
}

.glow-mid {
  animation: glowMid 2.6s ease-in-out infinite; animation-delay: 0.1s;
}

.glow-inner {
  animation: glowInner 2.2s ease-in-out infinite; animation-delay: 0.1s;
}



  .glow {
    animation: rotateGlow 20s linear infinite;
  }
  
  @keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
 /*.productProcess-steps  .icon-wrap {
    position: relative;
    width: 92px;
    height: 92px;
  }
  .productProcess-steps .glow-outer {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,220,50,0.12) 0%, transparent 70%);
  }
  .productProcess-steps .glow-mid {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180,230,60,0.20) 0%, transparent 65%);
  }
  .productProcess-steps .glow-inner {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #cce840, #8bbf1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 28px rgba(160,220,50,0.5), 0 0 10px rgba(160,220,50,0.25) inset;
  } */

  .productProcess-steps  .icon-wrap::before{ display: none;}
 

  /* connector: horizontal line reveal (GSAP scaleX); initial hidden along X */
  .productProcess-steps .connector-line-img {
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
    max-width: min(70vw, 100%);
    height: auto;
    max-height: 2.875rem;
    object-fit: contain;
    object-position: left center;
    display: block;
  }

  @media (min-width: 1180px) {
    .productProcess-steps .connector-wrap {
      flex: 1 1 0%;
    }
  }

  /*
   * Vertical stack: rotate horizontal arrow 90° so it reads top → bottom.
   * Important: pre-rotate WIDTH becomes post-rotate HEIGHT in the viewport.
   * w-full / 70vw made the line ~300px+ tall and painted through the step icons
   * (transform does not shrink the layout box; the long edge overlaps neighbors).
   */
  @media (max-width: 1179px) {
    .productProcess-steps .steps-row {
      gap: 0.5rem;
    }

    .productProcess-steps .step-node {
      position: relative;
      z-index: 2;
    }

    .productProcess-steps .connector-wrap {
      flex: 0 0 auto;
      left: auto !important;
      width: auto;
      max-width: none;
      min-height: 0;
      margin-top: 0;
      margin-bottom: 0;
      padding:20px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .productProcess-steps .connector-rotator {
      transform: rotate(90deg);
      transform-origin: center center;
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
    }

    .productProcess-steps .connector-line-img {
      /* ~120–140px “line length” → same visual height after 90° — fits between steps */
      width: 40vw;
      max-width: min(40vw, 160px); 
      height:100px;
      max-height: none;
      min-width: 0;
      margin: 0 auto;
      transform-origin: center center;
      object-fit: contain;
      object-position: center center;
    }
  }

  /* travelling arrowhead group */


  /* ====================
 What are you developing?
  ====================*/
  .filter-pill {
    padding: 3px 16px;  
    font-size: var(--text-14);
    border-radius: 100px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    white-space: nowrap;
  }
  .filter-pill:hover { background: #f0f0ec; }
  .active-pill {
    background: var(--color-theme-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-theme-primary) !important;
  }

  .whatAreYouDeveloping .card {will-change: transform, opacity; height: 100%; position: relative; }
  .whatAreYouDeveloping .card-inner {will-change: transform; transition: box-shadow 0.3s ease; height: 100%; }
  .whatAreYouDeveloping .card-inner  .readmore-wrap{ position: absolute; bottom:20px;left:20px; right:20px;}
  .whatAreYouDeveloping .card-inner .img-wrap { overflow: hidden;   position: relative; /* or fixed height */}
  .whatAreYouDeveloping .card-inner .img-wrap img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }

  

  /* Hide/show cards */
  .whatAreYouDeveloping .card-wrapper { transition: opacity 0.35s, transform 0.35s;}
  .whatAreYouDeveloping .card-wrapper.hidden-card { display: none; }
  .whatAreYouDeveloping .key-outcomes-item{  font-size: var(--text-14);  font-weight: 300;  color: var(--color-black/60); opacity: 0.6; position: relative; }

  .key-outcomes-item span{ position: relative;  }
    .key-outcomes-item span::before{
      content: "·";
      margin-right: 10px;
      color: var(--color-black/60);
    }
    
    .key-outcomes-item span:first-child::before{
      display: none;
    }

    .key-outcomes-item span:last-child::after{
      display: none;
    }


    /* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Better touch scroll */
#filterBarWrapper {
  -webkit-overflow-scrolling: touch;
}



/**===========================================
Not sure which format fits your requirement?
===========================================**/


/* ====================
Product modal
==================== */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.46s cubic-bezier(0.22, 1, 0.36, 1), scale cubic-bezier(1, 0, 0, 1);
  scale: 0.5;

}

.custom-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  scale: 1;
}

.custom-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 8, 0.42);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  opacity: 0;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-modal-panel {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 80vh;
  overflow: auto;
  background: #f1f1f1;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  z-index: 1;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-modal.is-open .custom-modal-backdrop {
  opacity: 1;
}

.custom-modal.is-open .custom-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #27421D;
  border: 1px solid #d5deca;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.custom-modal-content {
  clear: both;
}

.table-wrap h4 {
  color: #27421D;
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-bottom: 12px;
}

.table-scroll {
  width: 100%;
  overflow: auto;
  border: 1px solid #d9e2cd;
  border-radius: 14px;
  background: #fbfcf8;
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 24px rgba(39, 66, 29, 0.08);
}

.yarn-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.35;
}

.yarn-table th,
.yarn-table td {
  border-bottom: 1px solid #e4ebda;
  padding: 12px 13px;
  text-align: left;
  white-space: nowrap;
  color: #263224;
}

.yarn-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, #dbe98a 0%, #ccdc46 100%);
  color: #21341a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #bfd14f;
}

.yarn-table tbody tr:nth-child(odd) {
  background: rgba(39, 66, 29, 0.08);
}

.yarn-table tbody tr:nth-child(even) {
  background: rgba(204, 220, 70, 0.14);
}

.yarn-table tbody tr:hover {
  background: #e5efb1;
  box-shadow: inset 0 0 0 1px rgba(39, 66, 29, 0.08);
}

.yarn-table td:first-child {
  font-weight: 600;
  color: #27421D;
}

.yarn-table td:nth-child(4),
.yarn-table td:nth-child(5),
.yarn-table td:nth-child(6),
.yarn-table td:nth-child(7),
.yarn-table td:nth-child(8),
.yarn-table td:nth-child(9),
.yarn-table td:nth-child(10),
.yarn-table td:nth-child(11) {
  text-align: center;
}

@media (max-width: 767px) {
  .custom-modal-panel {
    width: 95vw;
    max-height: 80vh;
    padding: 14px;
    border-radius: 14px;
  }

  .table-wrap h4 {
    font-size: 18px;
  }

  .yarn-table {
    min-width: 760px;
    font-size: 13px;
  }

  .yarn-table th,
  .yarn-table td {
    padding: 10px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-modal,
  .custom-modal-backdrop,
  .custom-modal-panel {
    transition: none;
  }
}


@media screen and (min-width: 1025px) and (-webkit-min-device-pixel-ratio:1.5),screen and (min-width:1025px) and (min-resolution:144dpi) {
.lable-wrap{ font-size:12px;}
.content-wrap{ padding:1vw 1vw 0 1vw !important;}
}