:root {
      --green:      #22c55e;
      --green-dark: #16a34a;
      --green-bg:   #edf9f3;
      --green-border:#b8e6cd;
      --blue:       #3b5de7;
      --blue-light: #eff6ff;
      --navy:       #0f172a;
      --slate:      #4b5563;
      --muted:      #9ca3af;
      --border:     #e2e8f0;
      --card-bg:    #f8fafc;
      --teal-start: #1a8fa0;
      --teal-end: #1db8c4;
      --text-dark: #0f1b2d;
      --text-muted: #5a6a7e;
      --connector: #a0bcd8;
      --icon-size: 68px;
    }
    /* ── HERO WRAPPER ── */
    .hero-section {
      background: #fff;
      padding: 120px 0 0px;
      position: relative;
      overflow: hidden;
    }

    /* ── LEFT COLUMN ── */
    .hero-left { position: relative; z-index: 1; }

    /* badge pill */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-bg);
      border: 1px solid var(--green-border);
      border-radius: 50px;
      padding: 5px 16px 5px 10px;
      margin-bottom: 15px;
    }
    .badge-dot {
      width: 9px; height: 9px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(1.3); }
    }
    .badge-text {
      font-size: 12px;
      font-weight: 700;
      color: #15803d;
      letter-spacing: .4px;
    }

    /* headline */
    .hero-title {
      font-size: clamp(26px, 3.2vw, 38px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.6px;
    }
    .hero-title .highlight { color: var(--blue); }

    /* description */
    .hero-desc {
      font-size: 16px;
      color: var(--slate);
      line-height: 1.5;
      margin-bottom: 32px;
      max-width: 510px;
    }
    /* ── RIGHT COLUMN — DASHBOARD ── */
    .hero-right {
      position: relative;
      z-index: 1;
    }

    .dashboard-card {
      background: var(--card-bg);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      box-shadow: 0 8px 40px rgba(59,93,231,.10), 0 2px 8px rgba(0,0,0,.04);
      animation: floatUp .7s ease both;
    }
    @keyframes floatUp {
      from { opacity:0; transform:translateY(24px); }
      to   { opacity:1; transform:translateY(0); }
    }

    .dash-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .dash-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1px;
      color: #94a3b8;
    }
    .dash-dots { display:flex; gap:5px; }
    .dash-dot  { width:8px; height:8px; border-radius:50%; }

    /* stat cards */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 8px;
      margin-bottom: 12px;
    }
    .stat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 11px 8px 9px;
      text-align: center;
    }
    .stat-num  { font-size: 19px; font-weight: 800; line-height:1; }
    .stat-num.c-blue   { color: var(--blue); }
    .stat-num.c-green  { color: #16a34a; }
    .stat-num.c-orange { color: #ea580c; }
    .stat-lbl  { font-size: 9.5px; color: var(--muted); margin-top:4px; font-weight:600; }

    /* bar chart */
    .chart-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 12px 14px;
      margin-bottom: 10px;
    }
    .chart-box-label {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .6px;
      color: #94a3b8;
      margin-bottom: 10px;
    }
    .bars-wrap {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 72px;
    }
    .bar-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      gap: 0;
    }
    .bar-fill {
      width: 100%;
      border-radius: 4px 4px 0 0;
      animation: growUp .8s ease both;
    }
    @keyframes growUp {
      from { transform: scaleY(0); transform-origin: bottom; }
      to   { transform: scaleY(1); transform-origin: bottom; }
    }
    .bar-fill.dim  { background: #bfdbfe; }
    .bar-fill.bold { background: var(--blue); }
    .bar-month { font-size: 8px; color: var(--muted); text-align: center; width: 100%; flex-shrink: 0; margin-top: 4px; display: block; }

    /* activity feed */
    .activity-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 10px 12px;
    }
    .activity-title {
      font-size: 9px; font-weight:800; letter-spacing:.6px; color:#94a3b8; margin-bottom:8px;
    }
    .act-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 6px;
    }
    .act-row:last-child { margin-bottom:0; }
    .act-dot  { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
    .act-dot.g { background:var(--green); }
    .act-dot.b { background:var(--blue); }
    .act-dot.o { background:#f59e0b; }
    .act-text  { font-size:10px; color:#4b5563; flex:1; font-weight:500; }
    .act-time  { font-size:9px; color:#d1d5db; white-space:nowrap; }

    /* floating chips */
    .float-chip {
      position: absolute;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      padding: 8px 13px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(0,0,0,.09);
      z-index: 2;
    }
    .float-chip.top-chip {
      top: -16px;
      right: -16px;
      animation: floatUp .5s .3s ease both;
    }
    .float-chip.bot-chip {
      bottom: -14px;
      left: -16px;
      animation: floatUp .5s .5s ease both;
    }
    .chip-icon {
      width: 28px; height: 28px; border-radius:8px;
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .chip-icon.green-bg { background:#dcfce7; }
    .chip-icon.blue-bg  { background:#eff6ff; }
    .chip-num  { font-size:14px; font-weight:800; color:#15803d; line-height:1; }
    .chip-num.blue { color:#1e40af; }
    .chip-sub  { font-size:9.5px; color:var(--muted); font-weight:500; }

    /* hero left slide-in */
    .hero-left { animation: slideLeft .65s ease both; }
    @keyframes slideLeft {
      from { opacity:0; transform:translateX(-20px); }
      to   { opacity:1; transform:translateX(0); }
    }

    .ibox {
    width: 100px;
    height: 100px;
    background: #d5f0e1;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.modalities .card{
 box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border: none;
  border-radius: 15px;
  background: #fff;
  height: 100%;
}
.modalities .card img{
    height: 80px;
    margin-bottom: 5px;
    padding-top: 5px;
}
.modalities h4{
  color: #222;
  font-size: 18px;
  font-weight: bold;
}
.modalities p {
  color:#4a5565;
  font-size: 16px;
}
.benefits-section .benefits-icon-box img{
  width: auto!important;
  height: 100px!important;
  padding-bottom: 0!important;
}


    /* Step connector row */
    .steps-row {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 0;
      padding-top: 50px;
    }

    .step-col {
      flex: 1;
      max-width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      position: relative;
    }

    /* Dashed connector between icons */
    .step-col:not(:last-child)::after {
      content: '';
      position: absolute;
      top: calc(var(--icon-size) / 2);
      left: calc(50% + var(--icon-size) / 2 + 4px);
      width: calc(100% - var(--icon-size) - 8px);
      height: 2px;
      border-top: 2.5px dashed var(--connector);
      z-index: 0;
    }

    .step-icon-wrap {
      width: var(--icon-size);
      height: var(--icon-size);
      border-radius: 50%;
      background: #1A5DE5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
      flex-shrink: 0;
    }

    .step-icon-wrap:hover {
      transform: translateY(-4px) scale(1.06);
      box-shadow: 0 14px 32px rgba(29, 184, 196, 0.40);
    }

    .step-icon-wrap i {
      font-size: 1.55rem;
      color: #fff;
    }

    .step-title {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-top: 22px;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .step-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 400;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 36px;
      }
      .step-col::after {
        display: none;
      }
      .step-col {
        max-width: 340px;
        width: 100%;
      }
    }

   .featurelimsCard .feature-card-lims {
    background: transparent;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}
  .feature-card-lims h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    color: var(--gray-900);
}
 .feature-card-lims p{
  margin-bottom: 0;
 }
  .feature-card-lims .feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}
  .feature-card-lims .feature-icon-wrapper img {
    width: 3rem;
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
    vertical-align: middle;
}
.featurelimsCard .feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
