:root {
  --ink:      #0a1628;
  --ink-mid:  #1e3a5f;
  --ink-soft: #4a6080;
  --sky:      #0ea5e9;
  --sky-lt:   #38bdf8;
  --sky-pale: #e0f7ff;
  --sky-faint:#f0fbff;
  --teal:     #06b6d4;
  --green:    #36bf4e;
  --green-lt: #d4f7da;
  --white:    #ffffff;
  --glass:    rgba(255,255,255,0.72);
  --border:   rgba(14,165,233,0.14);
  --shadow:   0 24px 64px rgba(14,165,233,0.10);
 
}
 
.health-img1{
    width:100%;
    height:50%;  
}
   

html, body {
  overflow-x: hidden;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family:'Inter',sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  
}

/* ── HERO ── */
.hero {
  min-height: calc(88svh - 68px); padding: 10px 0 1px;  
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* animated mesh background */
.hero-mesh {display: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 20px 40px 3px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--sky); border-radius: 2px;
}

.hero-title {
  font-family:'Inter',sans-serif;
  font-size: clamp(36px, 4vw, 49px);
  font-weight:700;
  line-height:1.12;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-title b {
  font-style: bold;
  color: var(--sky);
  
}

.hero-subtitle {
  font-size: 0.9rem; font-weight: 700;color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.1px;
}

.hero-body {
  font-size: 1rem; color: var(--ink-soft);
  line-height: 1.78; max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  font-size: 0.88rem; font-weight: 700;
  padding: 13px 26px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none;
  transition: all 0.22s;
  letter-spacing: -0.2px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.18);
}
.btn-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(54,191,78,0.3); }
.btn-dark .arrow { transition: transform 0.2s; }
.btn-dark:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-size: 0.88rem; font-weight: 700;
  padding: 13px 26px; border-radius: 12px;
  border: 1.5px solid rgba(10,22,40,0.15);
  cursor: pointer; text-decoration: none;
  transition: all 0.22s;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-pale); }

/* pill trust badges */
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 32px; flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sky-faint);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px;
  font-size: 0.74rem; font-weight: 600; color: var(--ink-mid);
}
.trust-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-card {
  width: 100%;
  max-width: 460px;
  height: 520px; 
  display: flex; align-items: center; justify-content: center;
  position: relative; 
  overflow: visible;
  animation: none;

}
.healthcare-img {
  width: 110%;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
} 
/* .hero-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,165,233,0.15), transparent 70%);
  border-radius: 50%;
}*/

/* floating chips on hero card */
.hero-chip {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(14,165,233,0.14);
  font-size: 0.73rem; font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.hero-chip.c1 {
  top: 20px;
  left: 10px;animation: chipFloat1 4s ease-in-out infinite; }
.hero-chip.c2 { 
  bottom: 20px;
  left: 10px;
  animation: chipFloat2 5s ease-in-out infinite; }
.hero-chip.c3 { 
  top: 20px;
  right: 10px;
  animation: chipFloat3 4.5s ease-in-out infinite; }
.hero-chip.c4 {  
  bottom: 20px;
  right: 20px;
  animation: chipFloat1 6s ease-in-out infinite; }
@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes chipFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.chip-dot { width: 8px; height: 8px; border-radius: 50%; }


/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 32px;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.marquee-item strong { color: rgba(255,255,255,0.9); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION SHELL ── */
.section {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 56px;
}

.label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 18px;
}
.label::before {
  content: '';
  display: block; width: 16px; height: 2px;
  background: var(--sky); border-radius: 2px;
}

.display-title {
  font-family:'Inter',sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.display-title em { font-style: normal; color: var(--sky); }

/* ── FEATURE STRIPS ── */
.features-wrap { background: var(--white); border-top: 1px solid var(--border); }

.feature-row {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  border-bottom: 1px solid var(--border);
  /*min-height: 600px;*/ min-height:auto;
}
.feature-row.flip .feature-text { order: 2; }
.feature-row.flip .feature-vis  { order: 1; }

.feature-text {
  /*padding: 72px 64px;*/
  padding: 40px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  color: rgba(14,165,233,0.4); text-transform: uppercase; margin-bottom: 14px;
}
.feature-title {
  font-family:'Inter',sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 400; line-height: 1.22;
  color: var(--ink); margin-bottom: 8px;
}
.feature-title em { font-style: normal; color: var(--sky); }
.feature-sub {
  font-size: 0.82rem; font-weight: 700;
  color: var(--teal); margin-bottom: 18px;
}

.feature-body {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.40; max-width: 850px;
  margin-bottom: 30px; padding-left: 20px;
}

.feature-body li {
  margin-bottom: 10px;
}
.feature-body li::marker {
  font-size: 1.3rem;  
}

.feature-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 700; color: var(--green);
  text-decoration: none; border-bottom: 1.5px solid rgba(54,191,78,0.35);
  padding-bottom: 2px; transition: gap 0.2s, border-color 0.2s;
}
.feature-link:hover { gap: 12px; border-color: var(--green); }

.feature-vis {
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky-faint);
  border-left: 1px solid var(--border);
  /*min-height: 755px;*/  min-height: 400px;
  position: relative; overflow: hidden;
}
.feature-row.flip .feature-vis {
  border-left: none;
  border-right: 1px solid var(--border);
}
.feature-vis::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(14,165,233,0.07), transparent);
}
/* ── STAGGERED TEXT CHILDREN ── */
.feature-num, .feature-title, .feature-sub, .feature-tags, .feature-body, .feature-link {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.feature-row.feat-visible .feature-num   { opacity: 1; transform: none; transition-delay: 0.25s; }
.feature-row.feat-visible .feature-title { opacity: 1; transform: none; transition-delay: 0.35s; }
.feature-row.feat-visible .feature-sub   { opacity: 1; transform: none; transition-delay: 0.43s; }
.feature-row.feat-visible .feature-tags  { opacity: 1; transform: none; transition-delay: 0.50s; }
.feature-row.feat-visible .feature-body  { opacity: 1; transform: none; transition-delay: 0.57s; }
.feature-row.feat-visible .feature-link  { opacity: 1; transform: none; transition-delay: 0.65s; }

.lottie-frame {
  width: 80%;             
  max-width: 500px;        
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(14,165,233,0.15);
  box-shadow: 0 16px 48px rgba(14,165,233,0.12), 0 2px 8px rgba(14,165,233,0.06);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative; z-index: 1; transform: scale(0.88) translateY(20px);
  transition: transform 0.8s 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.8s 0.2s cubic-bezier(0.22,1,0.36,1);
}
.lottie-frame:hover {
  box-shadow: 0 40px 100px rgba(14,165,233,0.22),
              0 4px 16px rgba(14,165,233,0.1);
  transform: scale(1.02) translateY(-4px);
}
.feature-row.feat-visible .lottie-frame {
  transform: scale(1) translateY(0);
}

@keyframes featFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-10px) rotate(0.4deg); }
  60%       { transform: translateY(-6px) rotate(-0.3deg); }
}
.feat-img {
  width: 100%; height: 100%; object-fit: contain; 
  /*padding: 24px;*/
  /*animation: featFloat 5s ease-in-out infinite;*/
  transform-origin: center bottom;
}
/* feature tags */
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.ftag {
  background: var(--green-lt); color: var(--green);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(54,191,78,0.25);
}


/* animation  */
.feature-text {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}

.feature-row.flip .feature-text {
  transform: translateX(60px);
}

.feature-row.feat-visible .feature-text {
  opacity: 1;
  transform: translateX(0);
}

.feature-vis {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.75s 0.15s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s 0.15s cubic-bezier(0.22,1,0.36,1);
}

.feature-row.flip .feature-vis {
  transform: translateX(-60px);
}

.feature-row.feat-visible .feature-vis {
  opacity: 1;
  transform: translateX(0);
}

/* ── ASSET TABLE ── */
.table-section { background:var(--sky-faint);
   
  padding: 100px 0; }
.table-inner { max-width: 1380px; margin: 0 auto; padding: 0 56px; }
.table-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.table-header-text .display-title { margin-bottom: 12px; }
.table-header-desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }
.table-header-right { text-align: right; }
.table-header-label { justify-content: flex-end; }
.table-header-stat {font-family:'Inter',sans-serif;
 
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}
.table-header-stat-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  font-family:'Inter',sans-serif;
  
  font-weight: 600;
}
.table-header-desc-mt { margin-top: 12px; }

.asset-panel {
  background: var(--white);
  
  /*border-radius: 24px;*/
  box-shadow: 0 16px 64px rgba(14,165,233,0.1);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* toolbar */
.atoolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.table-header-atoolbar {
    display: flex;
    justify-content: flex-end; 
    width: 100%;
    padding: 10px 20px; 
}

.abtn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.76rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.15s;font-family:'Inter',sans-serif;
  
}
.abtn.add    { background: var(--green-lt); color: var(--green); }
.abtn.add:hover    { background: var(--green); color: #fff; }
.abtn.edit   { background: var(--sky-pale); color: var(--sky); }
.abtn.edit:hover   { background: var(--sky); color: #fff; }
.abtn.del    { background: #fee2e2; color: #991b1b; }
.abtn.del:hover    { background: #ef4444; color: #fff; }
.abtn.act    { background: #fef9c3; color: #854d0e; }
.abtn.act:hover    { background: #eab308; color: #fff; }
.abtn.deact  { background: #f1f5f9; color: #475569; }
.abtn.deact:hover  { background: #64748b; color: #fff; }
.atoolbar-right { margin-right: auto; display: flex; align-items: center; gap: 14px; }
.toggle-label { font-size: 0.75rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.toggle { width: 36px; height: 20px; background: var(--green); border-radius: 10px; position: relative; cursor: pointer; }
.toggle::after { content: ''; position: absolute; width: 16px; height: 16px; background: #fff; border-radius: 50%; top: 2px; right: 2px; transition: right 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.view-sel {
  font-size: 0.75rem; font-weight: 600; color: var(--ink-mid);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 12px; cursor: pointer;
}
.status-badge {
  background: var(--sky); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  display: inline-block;
}

/* tabs */
.atabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  background: var(--white);
  padding: 0 24px;
}
.atab {
  padding: 12px 20px; font-size: 0.8rem; font-weight: 700;
  color: var(--ink-soft); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.15s; display: flex; align-items: center; gap: 7px;font-family:'Inter',sans-serif;
 
}
.atab.active { color: var(--green); border-bottom-color: var(--green); }
.atab .badge {
  font-size: 0.68rem; font-weight: 800;
  padding: 2px 7px; border-radius: 10px; color: #fff;
  background: var(--green);
}
.atab .badge.orange { background: #f59e0b; }
.atab .badge.red    { background: #ef4444; }
.atab .badge.purple { background: #8b5cf6; }

/* table */
.atable-wrap { overflow-x: hidden;
  width: 100%;
 }
table { width: 100%; border-collapse: collapse; }
thead tr { background: #f8fafc; }
thead th {
  padding: 11px 16px; text-align: left;
  font-size: 0.72rem; font-weight: 800;
  color: var(--ink-mid); letter-spacing: 0.3px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap; text-transform: uppercase;
}
tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.12s;
  cursor: default;
}
tbody tr:hover { background: var(--sky-faint); }
tbody td { padding: 13px 16px; font-size: 0.82rem; color: var(--ink-mid); vertical-align: middle; }

.asset-thumb {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.asset-name { font-weight: 700; color: var(--ink); font-size: 0.83rem; }
.asset-code-small { font-size: 0.68rem; color: var(--ink-soft);font-family:'Inter',sans-serif;
   
    margin-top: 1px; }
.name-cell { display: flex; align-items: center; gap: 10px; }

.tag-pill {
  display: inline-block; padding: 2px 10px;
  /*background: var(--sky-pale);*/
  color: var(--ink-mid);
  /*border-radius: 20px; */
  font-size: 0.69rem; font-weight: 700;
}
.cost-val { font-weight: 700; font-size: 0.85rem; color: var(--ink);font-family:'Inter',sans-serif;}
  
    
.date-val { font-size: 0.78rem; color: var(--ink-soft); }

.apagination {
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--ink-soft);
}
.pagination-left { display: flex; align-items: center; gap: 12px; }
.page-controls { display: flex; gap: 4px; align-items: center; }
.pgbtn {
  width: 30px; height: 30px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 0.75rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.15s; font-family:'Inter',sans-serif;
 
  font-weight: 600; color: var(--ink-soft);
}
.pgbtn:hover { background: var(--sky-pale); border-color: var(--sky-lt); color: var(--sky); }
.pgbtn.active { background: var(--green); color: #fff; border-color: var(--green); }
.per-page-sel {
  font-size: 0.75rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 4px 10px; cursor: pointer; color: var(--ink-mid); font-weight: 600;font-family:'Inter',sans-serif;
 
}
table th:last-child,
table td:last-child {
  text-align: right;
}

/* ── CLIENTS ── */
.clients-section { background: var(--white); padding: 80px 0; overflow: hidden; }
.clients-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.clients-label { text-align: center; margin-bottom: 48px; }
.clients-label p { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(14,165,233,0.5); }
.clients-label h3 {font-family: 'Inter',sans-serif;
 
   font-size: 1.7rem; color: var(--ink); margin-top: 6px; }

.clients-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
 .client-tile {
  display: flex;                 
  align-items: center;
  justify-content: left;      
  gap: 6px;
  width: 220px;                  
  height: 36px;                 
  padding: 0 12px;               
  background: var(--sky-faint);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-mid);
  transition: all 0.2s;
  cursor: default;
  overflow: hidden;              
  white-space: nowrap;          
  text-overflow: ellipsis;      
}
/*.client-tile:hover {
  background: var(--green); color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54,191,78,0.25);
}*/

.client-tile::before { content: '🏥'; font-size: 0.85em; }

/* ── CTA BAND ── 1*/
.cta-band {
  background:#f0fbff;
  padding: 40px 56px;
  /*position: relative;*/
  overflow: hidden;
}
/*.cta-band::before {*/
/*  content: '';*/
/*  position: absolute; top: -120px; right: -80px;*/
/*  width: 500px; height: 500px;*/
/*  background: radial-gradient(circle, rgba(14,165,233,0.15), transparent 65%);*/
/*  border-radius: 50%;*/
/*}*/
/*.cta-band::after {*/
/*  content: '';*/
/*  position: absolute; bottom: -100px; left: 10%;*/
/*  width: 380px; height: 380px;*/
/*  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 65%);*/
/*  border-radius: 50%;*/
/*}*/
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0px; align-items: center;
  position: relative; z-index: 2;
}
.cta-left .label { color: rgba(56,189,248,0.8); }
.cta-left .label::before { background: rgba(56,189,248,0.8); }
.cta-title {
  font-family:'Inter',sans-serif;
 
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700; line-height: 1.18;
  color: var(--ink); margin-bottom: 18px;
}
.cta-title em { font-style:italic; color: var(--sky-lt); }
.cta-desc { font-size: 0.95rem; color: var(--ink); line-height: 1.72; }
.cta-right {
  display: flex; flex-direction: column;
  gap: 16px; justify-content: center;
}
.cta-contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.cta-contact-card:hover { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.3); }
.cca-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(14,165,233,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cca-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; margin-bottom: 3px; text-transform: uppercase; }
.cca-val { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.cca-val a { color: var(--white); text-decoration: none; }
.cta-btns { display: flex; gap: 12px; margin-top: 8px; }
.btn-sky {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: var(--white);
  font-size: 0.88rem; font-weight: 700;
  padding: 13px 26px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none; transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4);
}
.btn-sky:hover { background: var(--sky-lt); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 700;
  padding: 13px 26px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer; text-decoration: none; transition: all 0.22s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-left{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.ant-img{
  width: 450px;
  height: auto;
  display:block;
}

.svg-illus { 
  width: 100%;
  height: 100%;
 }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── HERO LOAD ANIMS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hu0 { animation: fadeUp 0.8s 0.1s both ease; }
.hu1 { animation: fadeUp 0.8s 0.2s both ease; }
.hu2 { animation: fadeUp 0.8s 0.3s both ease; }
.hu3 { animation: fadeUp 0.8s 0.4s both ease; }
.hu4 { animation: fadeUp 0.8s 0.5s both ease; }
.hu5 { animation: fadeUp 0.8s 0.7s both ease; }


@media (max-width: 1280px) {

  .hero-inner {
    padding: 40px 32px;
  }

  .section {
    padding: 80px 32px;
  }

  .table-inner {
    padding: 0 32px;
  }
}

@media (max-width: 1024px) {

  .btn-sm {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* LAYOUT */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-card {
    width: 340px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-text {
    padding: 48px 24px;
  }

  .section {
    padding: 70px 24px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  thead th,
  tbody td {
    padding: 10px 10px;
    font-size: 0.75rem;
  }

  .asset-name {
    white-space: normal;   
  }
  .atable-wrap {
    overflow-x: auto;  
  }

  table {
  min-width: 700px;  
  width: max-content;
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
 
  .hero-inner {
    padding: 20px 16px !important;
  }
  /* FEATURES */
  .feature-text {
    padding: 32px 16px;
  }

  .feature-vis {
    min-height: 220px;
  }

  /* TABLE */
  .table-header {
    grid-template-columns: 1fr;
  }

  /* CTA */
  /*.cta-inner {*/
  /*  gap: 24px;*/
  /*}*/
  
  .cta-inner {
    grid-template-columns: 1fr;   /* stack */
    text-align: center;           /* center content */
    gap: 24px;
  }

  .cta-left {
    justify-content: center;      /* ✅ FIX */
    text-align: center;
  }

  .cta-right {
    align-items: center;          /* center cards + buttons */
  }

  .cta-desc {
    max-width: 100%;
  }

  .cta-btns {
    justify-content: center;      /* center buttons */
    flex-wrap: wrap;
  }

  .cta-contact-card {
    width: 100%;
    max-width: 320px;
  }

  .ant-img {
    width: 280px;   /* reduce image size */
  }
   .trust-pill {
    display: flex;             
    justify-content: center;   
    align-items: center;
    width: 100%;               
    max-width: 100%;            
    text-align: center;         
    padding: 6px 10px;
    white-space: nowrap;       
  }

.hero-card {
  width: 100%;
  max-width:300px;
  position: relative; 
  height: auto;margin: 20px auto;
}

/*  PERFECT SAFE POSITIONS  */

  .healthcare-img {
    width: 60%;
  }

  .hero-chip {
    position: absolute;
    max-width: 100%;   
  }

  .hero-chip.c1 {
    top: -35px;
    left: 5px;  
   }

  .hero-chip.c2 {
    bottom: -20px;
    left: 5px;
  }

  .hero-chip.c3 {
    top: 5px;
    right: 8px;
  }

  .hero-chip.c4 {
    bottom: -10px;
    right: 5px;
  }
   .cta-inner {
    grid-template-columns: 1fr;   /* stack */
    text-align: center;           /* center content */
    gap: 24px;
  }

  .cta-left {
    justify-content: center;      /* ✅ FIX */
    text-align: center;
  }

  .cta-right {
    align-items: center;          /* center cards + buttons */
  }

  .cta-desc {
    max-width: 100%;
  }

  .cta-btns {
    justify-content: center;      /* center buttons */
    flex-wrap: wrap;
  }

  .cta-contact-card {
    width: 100%;
    max-width: 320px;
  }

  .ant-img {
    width: 280px;   /* reduce image size */
  }
}

@media (max-width: 480px){

  .hero-title {
    font-size: 26px;
  }

  .hero-body {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-dark,
  .btn-ghost {
    /*width: 100%;*/
    width: 40%;
    justify-content:center;
    align-items:center;
  }

  .section {
    padding: 50px 16px;
  }

  .cta-title {
    font-size: 1.5rem;
  }
  .apagination span{
      display:none;
  }
}



/* ==================================================
   IPAD PRO 1024 × 1366 FIX
   ================================================== */

@media screen and (min-width: 820px) and (max-width: 1180px) {

  /* ================= HERO ================= */

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 40px 28px;
  }

  .hero-body {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .hero-card {
    max-width: 420px;
    height: auto;
    margin: auto;
  }

  .healthcare-img {
    width: 72%;
  }

  /* floating chips */

  .hero-chip.c1 {
    top: -10px;
    left: 0;
  }

  .hero-chip.c2 {
    bottom: 10px;
    left: 0;
  }

  .hero-chip.c3 {
    top: -10px;
    right: 0;
  }

  .hero-chip.c4 {
    bottom: 10px;
    right: 0;
  }

  /* ================= FEATURES ================= */

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-text {
    padding: 50px 32px;
    text-align: center;
  }

  .feature-body {
    max-width: 50%;   
    margin: 0 auto;  
    text-align: left;
  }

  .feature-tags {
    justify-content: center;
  }

  .feature-vis {
    min-height: 420px;
    padding: 30px;
    border-left: none !important;
    border-right: none !important;
  }

  .lottie-frame {
    width: 90%;
  }

  /* ================= TABLE ================= */

  .table-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .table-header-right {
    text-align: center;
  }

  .table-header-label {
    justify-content: center;
  }

  .atable-wrap {
    overflow-x: auto;
  }

  table {
    min-width: 950px;
  }

  /* ================= CTA ================= */

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .cta-left {
    justify-content: center;
  }

  .cta-right {
    align-items: center;
  }

  .cta-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-contact-card {
    width: 100%;
    max-width: 500px;
  }

  .ant-img {
    width: 360px;
  }

  /* ================= CLIENTS ================= */

  .clients-grid {
    justify-content: center;
  }

  .client-tile {
    width: 170px;
  }

/* =========================================================================
   HEALTHCARE PAGE — IPAD PRO NAVBAR FIX
   MATCH GOVERNMENT NAV STRUCTURE
   ========================================================================= */

@media screen and (min-width: 768px) and (max-width: 1084px) {

  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* ================= NAVBAR FIX ================= */

  nav,
  .header,
  .top-nav-bar {

    padding: 8px 12px !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 8px !important;

    overflow: visible !important;
    position: relative !important;
    z-index: 9999 !important;

    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ================= LOGO ================= */

  .nav-logo,
  .brand-logo,
  .nav-logo-mark {
    flex: 0 0 auto !important;
  }

  .nav-logo-mark img,
  .nav-logo img,
  .brand-logo img,
  nav img {

    width: 150px !important;
    height: auto !important;
    margin-left: 0 !important;
    object-fit: contain !important;
  }

  /* ================= MENU LINKS ================= */

  .nav-links,
  nav > ul,
  .links-container {

    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    gap: 10px !important;

    margin-left: 0 !important;
    padding: 0 !important;

    flex: 1 !important;

    overflow: visible !important;
  }

  /* Individual links */
  .nav-links a,
  nav a,
  .links-container a,
  .nav-links li {

    font-size: 11px !important;
    padding: 6px 5px !important;

    white-space: nowrap !important;

    display: inline-flex !important;
    align-items: center !important;

    letter-spacing: normal !important;
  }

/* ================= DROPDOWN FIX ================= */
/* ================= DROPDOWN FIX ================= */
.dropdown {
  position: relative !important;
}

/* 1. Position container directly at 100% (no gap) to stop hover blinking */
.dropdown-content {
  position: absolute !important;
  top: 100% !important; /* Touch the button edge directly */
  left: 0 !important;
  display: none !important;
  min-width: 220px !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  z-index: 99999 !important;
  flex: unset !important;
  flex-wrap: unset !important;
  gap: unset !important;
  align-items: unset !important;
}

/* 2. Show the dropdown ONLY when clicked (relying on JavaScript's .active class) */
.dropdown.active .dropdown-content {
  display: block !important;
}

/* 3. Dropdown items stacked vertically (full width) */
.nav-links .dropdown-content .dropdown-item,
.nav-links .dropdown-content a {
  display: block !important;
  width: 100% !important;
  clear: both !important;
  text-align: left !important;
  box-sizing: border-box !important;
}



  /* ================= RIGHT ACTIONS ================= */

  .nav-actions,
  .nav-right {

    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;

    gap: 8px !important;
  }

  .nav-actions a,
  .nav-actions button,
  .login-btn,
  .btn-login {

    font-size: 11px !important;
    padding: 6px 10px !important;

    white-space: nowrap !important;
  }
  
  

  /* =========================================================================
     GREY TAB SECTION (UNCHANGED)
     ========================================================================= */

  .product-body,
  .main {

    max-width: 100% !important;

    box-sizing: border-box !important;

    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .cat-tabs {

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    justify-content: flex-start !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    margin: 0 0 24px 0 !important;

    padding: 6px !important;

    background: #f1f5f9 !important;

    border-radius: 12px !important;

    overflow-x: auto !important;

    -webkit-overflow-scrolling: touch !important;

    scrollbar-width: none !important;
  }

  .cat-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .cat-tab {

    padding: 8px 16px !important;

    font-size: 12.5px !important;

    white-space: nowrap !important;

    flex-shrink: 0 !important;

    display: inline-block !important;
  }
}



  
  /* ================= FOOTER FIX ================= */

  .footer-links,
  .footer-grid,
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .footer-quick-links a {
    display: inline-block;
  }
body {
     padding-top: 0px; 
}
}

/* The Real Cost of Poor Asset Management — Section*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.lvt-cost-section {
  --lvt-navy: #0e1a3a;
  --lvt-teal: #1597b0;
  --lvt-teal-deep: #0d7a8f;
  --lvt-card-bg: #f4f7fa;
  --lvt-desc: #495567;
  --lvt-source: #9aa7b8;
  --lvt-line: #e3eaf1;
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(120% 80% at 100% 0%, #f5fbfc 0%, rgba(245,251,252,0) 55%),
    #ffffff;
  padding: 84px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.lvt-cost-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.lvt-cost-head {
  margin-bottom: 52px;
  max-width: 640px;
}

.lvt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lvt-teal-deep);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
}
.lvt-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lvt-teal);
  display: inline-block;
}

.lvt-cost-title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: var(--lvt-navy);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(18px);
}

.lvt-cost-subtitle {
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--lvt-teal);
  margin: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(18px);
}

/* Header reveal on load */
.lvt-cost-head .lvt-eyebrow   { animation: lvtUp .7s cubic-bezier(.22,.9,.32,1) .05s forwards; }
.lvt-cost-head .lvt-cost-title{ animation: lvtUp .7s cubic-bezier(.22,.9,.32,1) .16s forwards; }
.lvt-cost-head .lvt-cost-subtitle{ animation: lvtUp .7s cubic-bezier(.22,.9,.32,1) .27s forwards; }

/* ---------- Grid ---------- */
.lvt-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Card ---------- */
.lvt-cost-card {
  position: relative;
  background: var(--lvt-card-bg);
  border: 1px solid var(--lvt-line);
  border-radius: 16px;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  transition: transform .35s cubic-bezier(.22,.9,.32,1), box-shadow .35s ease, border-color .35s ease;
}
.lvt-cost-card.is-visible {
  animation: lvtCardIn .65s cubic-bezier(.22,.9,.32,1) forwards;
  animation-delay: calc(var(--i) * 90ms);
}

/* top accent bar that "fills" in */
.lvt-cost-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--lvt-teal), var(--lvt-teal-deep));
  transition: transform .5s cubic-bezier(.22,.9,.32,1);
}
.lvt-cost-card.is-visible::before {
  transform: scaleX(1);
  transition-delay: calc(var(--i) * 90ms + .25s);
}

.lvt-cost-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -14px rgba(13, 122, 143, 0.28);
  border-color: #cfe6ec;
}

/* ---------- Stat ---------- */
.lvt-stat {
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 800;
  color: var(--lvt-teal-deep);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lvt-stat-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--lvt-desc);
  line-height: 1.55;
  margin: 0 0 auto;
}

.lvt-stat-source {
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 400;
  color: var(--lvt-source);
  margin-top: 16px;
  letter-spacing: 0.01em;
}

/* ---------- Keyframes ---------- */
@keyframes lvtUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lvtCardIn {
  0%   { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .lvt-cost-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lvt-cost-section { padding: 56px 18px; }
  .lvt-cost-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lvt-cost-head .lvt-eyebrow,
  .lvt-cost-head .lvt-cost-title,
  .lvt-cost-head .lvt-cost-subtitle,
  .lvt-cost-card { animation: none !important; opacity: 1 !important; transform: none !important; }
  .lvt-cost-card::before { transform: scaleX(1) !important; }
  .lvt-cost-card { transition: none; }
}

 

