
: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);
}

*, *::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);
}
.hero-mesh {display: none;

}

.hero-inner {
  display: grid; 
  align-items: center;
  max-width: 1280px; margin: 0 auto; width: 100%;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 20px 40px 3px;
  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); }
.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 { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-card {
    
  width: 460px; height:520px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible;  animation: none;
 
}
.manufacturing-img {
  width: 60%;;max-width: 100%;
  height: auto;
}

.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: 28px; left: -20px; animation: chipFloat1 4s ease-in-out infinite; }
.hero-chip.c2 { bottom: 60px; left: -30px; animation: chipFloat2 5s ease-in-out infinite; }
.hero-chip.c3 { top: 50px; right: -24px; animation: chipFloat3 4.5s ease-in-out infinite; }
.hero-chip.c4 { bottom: 30px; 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: italic; color: var(--sky); }

/* ── FEATURE STRIPS ── */
.features-wrap { background: var(--white); border-top: 1px solid var(--border); }
.feature-row {width: 100%;
  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: 560px;
  overflow: hidden;
}
.feature-row.flip .feature-text { order: 2; }
.feature-row.flip .feature-vis  { order: 1; }
.feature-text {
  padding: 72px 64px; display: flex; flex-direction: column; justify-content: center;
  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 {
  padding: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--sky-faint); border-left: 1px solid var(--border);
  min-height: 612px; position: relative; overflow: hidden;
  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 { border-left: none; border-right: 1px solid var(--border); transform: translateX(-60px); }
.feature-row.feat-visible .feature-vis { opacity: 1; transform: translateX(0); }
.feature-vis::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(14,165,233,0.07), transparent);
  transition: opacity 0.6s;
}
.feature-row.feat-visible .feature-vis::before { opacity: 1; }
.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);
}
.feature-row.feat-visible .lottie-frame { transform: scale(1) translateY(0); box-shadow: 0 32px 80px rgba(14,165,233,0.18), 0 2px 8px rgba(14,165,233,0.08); }
.feat-img {
  width: 100%; height: 100%; object-fit: contain; padding: 24px;
  animation: featFloat 5s ease-in-out infinite; transform-origin: center bottom;
}
@keyframes featFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-10px) rotate(0.4deg); }
  60%       { transform: translateY(-6px) rotate(-0.3deg); }
}
.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) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.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: italic; 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.75; max-width: 470px; 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-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); }

/* ── 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; }
.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); }
.atoolbar { display: flex; align-items: center; gap: 8px; padding: 16px 24px; background: #f8fafc; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.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.73rem; font-weight: 700;   border-radius: 20px; padding: 4px 12px; border: 1px solid rgba(54,191,78,0.25); }
.atabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); background: var(--white); }
.atab { padding: 12px 20px; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); cursor: pointer; border-bottom: 2px solid transparent; display: flex; align-items: center; gap: 8px; transition: color 0.15s, border-color 0.15s; }
.atab.active { color: var(--sky); border-bottom-color: var(--sky); }
.badge { font-size: 0.7rem; font-weight: 800; padding: 2px 8px; border-radius: 10px; background: var(--green-lt); color: var(--green); }
.badge.orange { background: #fef9c3; color: #854d0e; }
.badge.purple { background: #ede9fe; color: #7c3aed; }
.badge.red    { background: #fee2e2; color: #991b1b; }
.atable-wrap {  overflow-x: hidden;  width: 100%;
}
table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
thead tr { background: #f8fafc; }
th { padding: 10px 14px; text-align: left; font-size: 0.72rem; font-weight: 800; color: var(--ink-soft); letter-spacing: 0.5px; text-transform: uppercase; border-bottom: 1px solid var(--border); white-space: nowrap; }
td { padding: 12px 14px; border-bottom: 1px solid rgba(14,165,233,0.07); vertical-align: middle; }
tbody tr:hover { background: var(--sky-faint); }
tbody tr:last-child td { border-bottom: none; }
.asset-thumb { width: 32px; height: 32px; background: var(--sky-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.asset-name {  white-space: nowrap;  overflow: hidden;
  text-overflow: ellipsis;font-weight: 700; color: var(--ink); font-size: 0.8rem; }
.asset-code-small { font-size: 0.7rem; color: var(--ink-soft); font-weight: 600; margin-top: 2px; font-family:'Inter',sans-serif;
  
}
.name-cell { display: flex; align-items: center; gap: 10px; }
.tag-pill { background: var(--sky-pale); color: var(--sky); font-size: 0.68rem; font-weight: 800; padding: 3px 10px; border-radius: 12px; border: 1px solid var(--border); white-space: nowrap; }
.date-val { font-size: 0.76rem; color: var(--ink-soft); white-space: nowrap; }
.cost-val { font-size: 0.78rem; font-weight: 700; color: var(--ink-mid); white-space: nowrap; }
.apagination { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 0.76rem; color: var(--ink-soft); font-weight: 600; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.pagination-left { display: flex; align-items: center; gap: 10px; }
.page-controls { display: flex; gap: 4px; }
.pgbtn { padding: 5px 10px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); font-size: 0.75rem; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: all 0.15s; }
.pgbtn:hover { background: var(--sky-pale); color: var(--sky); border-color: var(--sky); }
.pgbtn.active { background: var(--green); color: #fff; border-color: var(--green); }
.per-page-sel { font-size: 0.75rem; font-weight: 600; color: var(--ink-mid); background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; cursor: pointer; }
table th:last-child,
table td:last-child {
  text-align: right;
}
/* ── CLIENTS ── */
.clients-section { padding: 80px 0; background: var(--white); border-top: 1px solid var(--border); }
.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: 1.5px; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.clients-label p::before { content:''; display:block; width:16px; height:2px; background:var(--sky); border-radius:2px; }
.clients-label p::after { content:''; display:block; width:16px; height:2px; background:var(--sky); border-radius:2px; }
.clients-label h3 {  font-family:'Inter',sans-serif;
     font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 400; color: var(--ink); }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

 .client-tile {
  display: flex;                 
  align-items: center;
  justify-content: center;      
  gap: 6px;
  width: 160px;                  
  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(--white); box-shadow: 0 8px 32px rgba(14,165,233,0.1); color: var(--sky); transform: translateY(-2px); }


/* ── CTA BAND ── */
.cta-band { background: #f0fbff; padding: 40px 56px; }
.cta-inner { width: 100%;max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-band .label { color: rgba(56,189,248,0.8); }
.cta-band .label::before { background: rgba(56,189,248,0.8); }
.cta-title {   font-family:'Inter',sans-serif;
    
    font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--ink); margin-bottom: 20px; }
.cta-title em { font-style: italic; color: var(--sky-lt); }
.cta-desc { font-size: 0.9rem; color:var(--ink); line-height: 1.78; }
.cta-contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cca-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.cca-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.cca-val { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.5; }
.cta-btns { display: flex; gap: 12px; padding-top: 24px; }
.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;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.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.7);
  font-size: 0.88rem; font-weight: 700; padding: 13px 26px; border-radius: 12px;
  text-decoration: none; transition: all 0.2s; border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer;
}
.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;
}
/*.ant-img{*/
/*  height: 40%;*/
/*  width:40%;*/
/*}*/
/* ── 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; }

/* ── TABLE HEADER STAT ── */
.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-label { justify-content: flex-end; }
.table-header-desc-mt { margin-top: 12px; }


/* ── SVG ILLUSTRATION STYLE ── */
.svg-illus { 
  width: 100%;
  height: 100%;
 }


/* ===============================
   MOBILE FIRST (DEFAULT STYLE)
   =============================== */
/* Your base CSS (already written above) is for desktop */

/* ===============================
   LARGE LAPTOP (≤1280px)
   =============================== */
@media (max-width: 1280px) {
  .hero-inner {
    padding: 40px 32px;
  }

  .section {
    padding: 80px 32px;
  }

  .table-inner {
    padding: 0 32px;
  }
}

/* ===============================
   TABLET (≤1024px)
   =============================== */
@media (max-width: 1024px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-card {
    width: 360px;
    height: auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-text {
    padding: 48px 32px;
  }

  .section {
    padding: 80px 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: 900px;  
  }
}

/* ===============================
   MOBILE (≤768px)
   =============================== */
@media (max-width: 768px) {

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .hero-visual {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-text {
    padding: 32px 16px;
  }

  .feature-vis {
    min-height: 240px;
  }

  .table-header {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .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;
}

.hero-chip {
  font-size: 0.6rem;
  padding: 5px 8px;
  transform: scale(0.85);  
}

/*  PERFECT SAFE POSITIONS */

.hero-chip.c1 {
  top: -8px;
  left: 5px;
}

.hero-chip.c2 {
  bottom: -8px;
  left: 5px;
}

.hero-chip.c3 {
  top: 20px;
  right: 5px;
}

.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 */
  }

}

/* ===============================
   SMALL MOBILE (≤480px)
   =============================== */
@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: -10%;
  }

  .hero-chip.c2 {
    bottom: 10px;
    left: -5%;
  }

  .hero-chip.c3 {
    top: -10px;
    right: -10%;
  }

  .hero-chip.c4 {
    bottom: 10px;
    right: -5%;
  }

  /* ================= 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;
  }

  /* ================= NAVBAR FIX ================= */

 
 nav{
  padding: 8px 12px !important;
  height: auto !important;

  display:flex;
  align-items:center;
  justify-content:flex-start !important;

  gap: 8px;

  overflow: visible !important;   /* FIX */
  position: relative;
  z-index: 9999;
}

/* LOGO */
.nav-logo{
  flex: 0 0 auto;
}

.nav-logo-mark img{
  width: 150px !important;
  height: auto;
  margin-left: 0 !important;
}

/* MENU */
.nav-links{
  display:flex !important;
  align-items:center;
  flex-wrap:nowrap;
  gap: 10px;
  margin-left: 0 !important;
  flex: 1;

  overflow: visible !important;  /* FIX */
}

/* menu links */
.nav-links a{
  font-size: 11px !important;
  padding: 6px 5px !important;
  white-space: nowrap;
}

/* DROPDOWN */
.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;

  display: none;
  min-width: 220px;

  background: #fff;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  z-index: 99999;
}

/* hover dropdown */
.dropdown:hover .dropdown-menu{
  display: block;
}

/* LOGIN BUTTON */
.nav-actions{
  flex: 0 0 auto;
}

.nav-actions a,
.nav-actions button{
  font-size: 11px !important;
  padding: 6px 10px !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; 
}
}
