@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.nav-links a,
.btn,
button {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 700;
}

.nav-links a {
    font-weight: 600;
}

.btn {
    font-weight: 700;
}

body,
p {
    font-weight: 400;
}


:root {
  --primary: #0B4DFF;
  --secondary: #00C2FF;
  --dark: #08111F;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --muted: #5B6B85;
  --border: rgba(11, 77, 255, 0.10);
  --gradient: linear-gradient(135deg, #0B4DFF 0%, #00C2FF 100%);
  --gradient-soft: linear-gradient(135deg, rgba(11,77,255,0.08), rgba(0,194,255,0.08));
  --radius: 20px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 20px rgba(8, 17, 31, 0.06);
  --shadow-md: 0 18px 50px rgba(8, 17, 31, 0.10);
  --shadow-lg: 0 30px 80px rgba(11, 77, 255, 0.18);
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1600px;
}
/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  /* font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; */
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--muted); }
section { padding: 70px 0; position: relative; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
/* ---------- Typography Helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px var(--secondary);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin: 20px 0 16px; }
.section-head p { font-size: 17px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600; font-size: 15px;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 77, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(11, 77, 255, 0.45); }
.btn-primary::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, #00C2FF, #0B4DFF);
  opacity:0; transition: opacity .4s var(--ease); z-index:-1;
}
.btn-primary:hover::after { opacity:1; }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline {
  color: var(--primary); border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0px 0;
  transition: all .4s var(--ease);
  background: #fff;
}
.header.scrolled {
  padding: 0px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 4px 30px rgba(8,17,31,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--dark);
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 8px 20px rgba(11, 77, 255, 0.35);
  position: relative;
}
.logo-mark::after{
  content:''; position:absolute; inset:8px;
  border-radius:50%;
  background: radial-gradient(circle at 50% 45%, #08111F 0 30%, #fff 32% 40%, #08111F 42% 100%);
  opacity:.85;
}
.nav-menu {
  display: flex; align-items: center; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.nav-menu a {
  padding: 10px 16px;
  font-size: 15px; font-weight: 500;
  color: var(--dark);
  border-radius: 10px;
  transition: all .3s var(--ease);
  position: relative;
}
.nav-menu a:hover { color: var(--primary); background: rgba(11,77,255,0.06); }
.nav-menu a::after {
  content:''; position:absolute; left:16px; right:16px; bottom:6px;
  height:2px; background: var(--gradient); border-radius:2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--white); box-shadow: var(--shadow-sm);
  place-items: center;
}
.hamburger span {
  display:block; width:20px; height:2px; background: var(--dark);
  position: relative; transition: all .3s var(--ease);
}
.hamburger span::before, .hamburger span::after{
  content:''; position:absolute; left:0; width:20px; height:2px; background: var(--dark);
  transition: all .3s var(--ease);
}
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before{ top:0; transform: rotate(45deg); }
body.menu-open .hamburger span::after{ top:0; transform: rotate(-45deg); }
/* ---------- Mobile Menu Fullscreen ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  color: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  padding: 120px 32px 40px;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a {
  display: block;
  padding: 22px 0;
  font-size: 24px; font-weight: 600;
  color: #fff;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-menu .btn { margin-top: 32px; }
/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 0px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,194,255,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(11,77,255,0.15), transparent 60%),
    var(--bg);
    padding-bottom: 0px !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  margin: 24px 0 24px;
  letter-spacing: -0.03em;
}
.hero p.lead {
  font-size: 18px; max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Hero visual */
.hero-visual {
  position: relative; height: 560px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .6;
}
.orb-1 { width: 340px; height: 340px; background: var(--primary); top: 40px; right: 30px; }
.orb-2 { width: 260px; height: 260px; background: var(--secondary); bottom: 30px; left: 20px; opacity:.55; }
.dashboard {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  overflow: hidden;
  animation: float 8s ease-in-out infinite;
}
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid rgba(8,17,31,0.06);
  margin-bottom: 20px;
}
.dashboard-title { font-weight: 700; font-size: 15px; }
.dot-row { display: flex; gap: 6px; }
.dot-row span { width: 10px; height: 10px; border-radius: 50%; background: rgba(8,17,31,0.12); }
.dot-row span:first-child { background: #FF5F57; }
.dot-row span:nth-child(2) { background: #FEBC2E; }
.dot-row span:nth-child(3) { background: #28C840; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.stat-cell {
  padding: 14px; border-radius: 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(11,77,255,0.06);
}
.stat-cell b { font-size: 22px; display: block; color: var(--primary); font-weight: 700; }
.stat-cell span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.chart {
  height: 130px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(11,77,255,0.10), rgba(0,194,255,0.03));
  position: relative; overflow: hidden;
  margin-bottom: 16px;
}
.chart svg { width: 100%; height: 100%; }
.bars { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; height: 90px; align-items: end; }
.bars i {
  display: block; background: var(--gradient); border-radius: 6px 6px 0 0;
  animation: rise 1.4s var(--ease) both;
}
.float-card {
  position: absolute;
  padding: 16px 18px; border-radius: 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center;
}
.float-card b { font-size: 18px; display: block; font-weight: 700; }
.float-card span { font-size: 12px; color: var(--muted); }
.fc-1 { top: 40px; left: -40px; animation-delay: -1s; }
.fc-2 { bottom: 90px; right: -30px; animation-delay: -3s; }
.fc-3 { bottom: -10px; left: 60px; animation-delay: -5s; }
@keyframes float { 0%,100%{transform: translateY(0)} 50%{transform: translateY(-14px)} }
@keyframes rise { from{ transform: scaleY(0); transform-origin: bottom } to{ transform: scaleY(1) } }
/* ---------- Trust Bar ---------- */
.trust {
  padding: 60px 0;
  border-top: 1px solid rgba(8,17,31,0.06);
  border-bottom: 1px solid rgba(8,17,31,0.06);
  background: #fff;
  overflow: hidden;
}
.trust-label { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 30px; }
.marquee { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.marquee-track { display: flex; gap: 80px; width: max-content; animation: scroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-item {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: #94A3B8; filter: grayscale(1); opacity: .8;
  transition: all .35s var(--ease); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.logo-item:hover { filter: none; opacity: 1; color: var(--primary); }
.logo-item .dotmark { width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
@keyframes scroll { to { transform: translateX(-50%); } }
/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(8,17,31,0.06);
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: var(--gradient); opacity: 0;
  transition: opacity .4s var(--ease); z-index:0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
/* .service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-arrow { color: #fff; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: #fff; } */
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-soft); color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all .4s var(--ease);
}
.service-card > * {
    position: relative;
    z-index: 3 !important;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; transition: color .3s; }
.service-card p { font-size: 14.5px; margin-bottom: 20px; transition: color .3s; }
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 14px; font-weight: 600;
  transition: all .3s var(--ease);
}
.service-card:hover .service-arrow svg { transform: translateX(4px); }
.service-arrow svg { transition: transform .3s var(--ease); }
/* ---------- Why Choose ---------- */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
  border: 1px solid rgba(8,17,31,0.05);
  transition: all .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.why-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(11,77,255,0.28);
}
.why-card h3 { font-size: 19px; }
.counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 72px; padding: 40px; border-radius: var(--radius-lg);
  background: var(--dark); color: #fff;
  position: relative; overflow: hidden;
}
.counters::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(600px 200px at 20% 0%, rgba(11,77,255,0.35), transparent 60%),
              radial-gradient(400px 200px at 90% 100%, rgba(0,194,255,0.3), transparent 60%);
}
.counter { text-align: center; position: relative; }
.counter b { font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; letter-spacing: -0.02em; }
.counter span { color: rgba(255,255,255,0.7); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 28px;
  aspect-ratio: 4/5;
  background: var(--gradient);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::before, .about-visual::after {
  content:''; position:absolute; border-radius: 50%;
}
.about-visual::before {
  width: 300px; height: 300px; background: rgba(255,255,255,0.15);
  top: -60px; right: -60px;
}
.about-visual::after {
  width: 200px; height: 200px; background: rgba(255,255,255,0.1);
  bottom: 40px; left: -40px;
}
.about-badge {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  padding: 24px; border-radius: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  display: flex; gap: 20px; align-items: center;
}
.about-badge b { font-size: 36px; color: var(--primary); font-weight: 800; display: block; letter-spacing: -0.02em; }
.about-badge span { font-size: 13px; color: var(--muted); }
.mvv { display: grid; gap: 20px; margin: 30px 0; }
.mvv-item { display: flex; gap: 16px; padding: 20px; border-radius: 16px; background: #fff; border: 1px solid rgba(8,17,31,0.05); }
.mvv-item .mvv-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.mvv-item h4 { font-size: 16px; margin-bottom: 4px; }
.mvv-item p { font-size: 14px; margin: 0; }
/* ---------- Industries ---------- */
.industries { background: var(--white); }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  /* padding: 32px 24px; */
  border-radius: var(--radius);
  background: #fff;
  border: 0px solid rgba(8,17,31,0.06);
  text-align: center;
  transition: all .4s var(--ease);
  cursor: pointer;
}
.ind-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.ind-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--gradient-soft); color: var(--primary);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  transition: all .4s var(--ease);
}
.ind-card:hover .ind-icon { background: var(--gradient); color: #fff; }
.ind-card h3 { font-size: 17px; margin: 0; }
/* ---------- Process ---------- */
.process-wrap { position: relative; }
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  position: relative;
}
.process::before {
  content:''; position:absolute; top: 40px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, rgba(11,77,255,0.15), rgba(0,194,255,0.15));
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(11,77,255,0.15);
  display: grid; place-items: center;
  font-size: 24px; font-weight: 800;
  color: var(--primary);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-num {
  background: var(--gradient); color: #fff; border-color: transparent;
  transform: scale(1.08); box-shadow: 0 14px 30px rgba(11,77,255,0.3);
}
.process-step h3 { font-size: 17px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; margin: 0; }
/* ---------- Featured Solutions ---------- */
.solutions { background: var(--white); }
.solution {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 100px;
}
.solution:last-child { margin-bottom: 0; }
.solution.reverse .solution-visual { order: 2; }
.solution-visual {
  aspect-ratio: 5/4;
  border-radius: 24px;
  background: var(--gradient);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.solution-visual::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 60%);
}
.mock-panel {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}
.mock-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(8,17,31,0.05); }
.mock-row:last-child { border: none; }
.mock-row .mr-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; font-size:14px; font-weight:700; }
.mock-row .mr-text { flex: 1; }
.mock-row .mr-text b { display:block; font-size: 13px; }
.mock-row .mr-text span { display:block; font-size: 11px; color: var(--muted); }
.mock-row .mr-tag { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; background: rgba(16,185,129,0.1); color: #10B981; }
.solution-body h3 { font-size: clamp(28px, 3.2vw, 40px); margin: 20px 0 20px; }
.solution-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.solution-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--dark); }
.solution-list li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient-soft); color: var(--primary);
  display: grid; place-items: center; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B4DFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
/* ---------- Testimonials ---------- */
.testimonials { background: var(--dark); color: #fff; overflow: hidden; }
.testimonials .section-head p { color: rgba(255,255,255,0.65); }
.testimonials .section-head h2 { color: #fff; }
.testimonials .eyebrow { background: rgba(11,77,255,0.15); border-color: rgba(11,77,255,0.3); color: var(--secondary); }
.slider {
  position: relative; max-width: 900px; margin: 0 auto;
}
.slides { overflow: hidden; border-radius: 24px; }
.slides-track { display: flex; transition: transform .7s var(--ease); }
.slide {
  min-width: 100%;
  padding: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
}
.stars { color: #FFB800; margin-bottom: 20px; font-size: 18px; letter-spacing: 3px; }
.quote { font-size: 20px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 30px; font-weight: 400; }
.author { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 18px;
}
.author-info b { display: block; font-size: 16px; }
.author-info span { color: rgba(255,255,255,0.6); font-size: 13px; }
.slider-controls {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid; place-items: center;
  transition: all .3s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.slider-btn:hover { background: var(--gradient); border-color: transparent; }
/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(8,17,31,0.06);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px;
  font-size: 17px; font-weight: 600;
  color: var(--dark); text-align: left;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient-soft); color: var(--primary);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
  font-size: 18px; font-weight: 600;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--gradient); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 28px 24px; color: var(--muted); font-size: 15px; }
/* ---------- CTA Section ---------- */
.cta {
  padding: 100px 0;
  padding-top: 0px;
}
.cta-inner {
  position: relative; overflow: hidden;
  padding: 80px 60px;
  border-radius: 32px;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 80px rgba(11,77,255,0.35);
}
.cta-inner::before, .cta-inner::after{
  content:''; position:absolute; border-radius: 50%;
  filter: blur(60px);
}
.cta-inner::before { width: 400px; height: 400px; background: rgba(255,255,255,0.2); top: -100px; right: -100px; }
.cta-inner::after { width: 300px; height: 300px; background: rgba(0,0,0,0.15); bottom: -80px; left: -80px; }
.cta-inner > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(32px, 4.5vw, 54px); margin-bottom: 16px; color: #fff; }
.cta p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.cta .btn-primary:hover { transform: translateY(-2px); }
.cta .btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.25); }
.floating-shape {
  position: absolute; border-radius: 30%;
  background: rgba(255,255,255,0.12);
  animation: float 8s ease-in-out infinite;
}
.fs-1 { width: 80px; height: 80px; top: 15%; left: 10%; }
.fs-2 { width: 60px; height: 60px; bottom: 20%; right: 15%; animation-delay: -3s; }
.fs-3 { width: 100px; height: 100px; top: 20%; right: 25%; animation-delay: -5s; }
/* ---------- Footer ---------- */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; margin-top: 20px; max-width: 320px; }
.footer-brand .logo { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 14.5px; transition: all .25s; }
.footer ul a:hover { color: var(--secondary); padding-left: 4px; }
.footer .contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.footer .contact-item svg { flex-shrink: 0; color: var(--secondary); margin-top: 2px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.social {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .3s var(--ease);
}
.social:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
/* ---------- Floating Utility Buttons ---------- */
.floaters { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: grid; gap: 12px; }
.floater {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: all .3s var(--ease);
  position: relative;
}
.floater::after {
  content:''; position:absolute; inset: 0; border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
.floater:hover { transform: translateY(-4px) scale(1.05); }
.f-whatsapp { background: #25D366; }
.f-whatsapp::after { border: 2px solid #25D366; }
.f-call { background: var(--gradient); }
.f-call::after { border: 2px solid var(--primary); }
.f-top {
  background: var(--dark);
  opacity: 0; pointer-events: none; transform: translateY(20px);
}
.f-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.f-top::after { display: none; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--white); z-index: 9999;
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--gradient);
  animation: loaderPulse 1.2s ease-in-out infinite;
  position: relative;
}
.loader-mark::after{
  content:''; position:absolute; inset:14px;
  border-radius:50%;
  background: radial-gradient(circle at 50% 45%, #08111F 0 30%, #fff 32% 40%, #08111F 42% 100%);
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(11,77,255,0.5); }
  50% { transform: scale(0.9); box-shadow: 0 0 0 20px rgba(11,77,255,0); }
}
/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s var(--ease); }
.reveal.left { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.zoom { transform: scale(0.9); }
.reveal.visible { opacity: 1; transform: none; }

.mob-flyout{
    padding: 14px 28px !important;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px !important;
    text-align: center !important;
}

.service-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    isolation: isolate;
    background: #fff;
}

/* Full Background Image */
.service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: url("assests/images/solutions.png") center center / cover no-repeat; */
    opacity: .18;
    z-index: 1;
    transition: .4s ease;
    background-size: cover;
}

/* Left Side White Gradient */
.service-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,.82) 0%,
        rgba(255,255,255,.68) 20%,
        rgba(255,255,255,.48) 40%,
        rgba(255,255,255,.28) 60%,
        rgba(255,255,255,.10) 80%,
        rgba(255,255,255,0) 100%
    );
    z-index: 0;
}

/* Hover */
.service-card:hover::before{
    opacity: .28;
    transform: scale(1.05);
}


/* Warehouse */
.service-card.warehouse::before{
    background-image: url("assests/images/warehouse.webp");
}

/* Traceability */
.service-card.traceability::before{
    background-image: url("assests/images/people-counting.webp");
}

/* Barcode */
.service-card.barcode::before{
    background-image: url("assests/images/barcode.webp");
}

/* RFID */
.service-card.rfid::before{
    background-image: url("assests/images/rfid.webp");
}

/* Inventory */
.service-card.inventory::before{
    background-image: url("assests/images/invertory.webp");
}

/* HRMS */
.service-card.hrms::before{
    background-image: url("assests/images/hmrs.webp");
}

/* Attendance */
.service-card.attendance::before{
    background-image: url("assests/images/attendance.webp");
}

/* Stores */
.service-card.management::before{
    background-image: url("assests/images/stores.webp");
}

/* Access Control */
.service-card.control::before{
    background-image: url("assests/images/access-control.webp");
}

/* ELV */
.service-card.elv-solution::before{
    background-image: url("assests/images/elv.webp");
}

/* People Counting */
.service-card.people-count::before{
    background-image: url("assests/images/hies.webp");
}

/* Visitor Management */
.service-card.visitor-manage::before{
    background-image: url("assests/images/visitor.webp");
}

/* Vehicle Tracking */
.service-card.vehicle-track::before{
    background-image: url("assests/images/vehicle-tracking.webp");
}




.ind-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.ind-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;
}

.ind-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,102,255,.18);
}

.ind-image{
height:210px;
overflow:hidden;
}

.ind-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.ind-card:hover img{
transform:scale(1.08);
}

.ind-content{
padding:22px;
}

.ind-content h3{
font-size:24px;
margin-bottom:8px;
}

.ind-content p{
font-size:15px;
color:#6d7486;
line-height:1.7;
}





.hero-slider{
    width: 100%;
    height: 620px;
    /* border-radius: 24px; */
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.hero-slider img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* full fill */
    opacity: 0;
    transition: opacity .8s ease;
    object-fit:cover;
    object-position:center center;
}

.hero-slider img.active{
    opacity: 1;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.dropdown-menu{
position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) !important;
    transition: .35s;
    z-index: 999;
    /* max-height: 420px; */
    overflow-y: auto;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.dropdown-menu li a:hover{
    background:#f3f7ff;
    color:#0b4dff;
    padding-left:28px;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.arrow{
    font-size:12px;
    margin-left:5px;
}





/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  section { padding: 50px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .solution { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
  .solution.reverse .solution-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid, .why-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 40px 24px; }
  .process { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .process::before { display: none; }
   .dashboard {
    position: relative;
}
.solution-visual {
    aspect-ratio: unset;

}
}
@media (max-width: 768px) {
  section { padding: 40px 0; }
  .container { padding: 0 20px; }
  .nav-menu, .nav-cta .btn { display: none; }
  .hamburger { display: grid; }
  .hero { padding: 50px 0 60px; }
  .hero-visual { height: 480px; }
  .services-grid, .why-grid, .ind-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .counter b { font-size: 36px; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { padding: 50px 28px; }
  .slide { padding: 32px 24px; }
  .quote { font-size: 17px; }
  .fc-1 { left: -10px; }
  .fc-2 { right: -10px; }
  .dashboard {
    position: relative;
}
/* .header {
   
    padding: 20px 0;
    
} */
.hero-grid{
    padding-top:50px;
}
.header .logo img{
    max-width: 113px;
}
.hero-slider {
  
    height: 300px;
    
}
}
@media (max-width: 480px) {
  .floaters { right: 16px; bottom: 16px; }
  .floater { width: 48px; height: 48px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
}