/* =====================================================
   HARI KRUSHNA INFOTECH — Complete Stylesheet v3
   Fixed: visibility, hero slider, animation, mobile
   Fonts: Outfit + Nunito
   Brand: Navy #1A2E6E | Cyan #1EAFD4 | Orange #F47B20
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #1a2e6e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* CSS Variables */
:root {
  --navy: #1A2E6E;
  --navy2: #0f1d4e;
  --cyan: #1EAFD4;
  --cyan2: #17a0c4;
  --orange: #F47B20;
  --orange2: #d96a10;
  --white: #fff;
  --off: #F0F5FF;
  --gray: #5a6a8a;
  --border: #d8e4f5;
  --r: 12px;
  --r2: 20px;
  --sh: 0 4px 24px rgba(26,46,110,.10);
  --sh2: 0 16px 48px rgba(26,46,110,.18);
}

/* ── UTILITY CLASSES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off); }

/* Section headings */
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.sec-label::before { content: ''; width: 24px; height: 3px; background: var(--orange); border-radius: 2px; }
.sec-title { font-size: clamp(1.7rem,3vw,2.6rem); color: var(--navy); margin-bottom: 14px; }
.sec-title span { color: var(--cyan2); }
.sec-desc { color: var(--gray); font-size: .97rem; max-width: 540px; line-height: 1.75; }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 0 auto; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  border: 2px solid var(--orange); transition: all .28s; cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.btn-primary:hover { background: transparent; color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,32,.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  border: 2px solid rgba(255,255,255,.5); transition: all .28s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  transition: all .28s;
}
.btn-navy:hover { background: var(--cyan2); transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy); padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  transition: all .28s;
}
.btn-white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy2);
  padding: 9px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  position: relative;
  z-index: 1001;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-left a, .topbar-right a { color: rgba(255,255,255,.8); transition: color .2s; }
.topbar-left a:hover, .topbar-right a:hover { color: var(--cyan); }
.topbar-sep { color: rgba(255,255,255,.25); }
.tb-cta {
  background: var(--orange); color: #fff !important; padding: 4px 14px;
  border-radius: 30px; font-weight: 700; font-size: .75rem; transition: background .2s;
}
.tb-cta:hover { background: var(--orange2) !important; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,46,110,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26,46,110,.12);
  border-bottom-color: var(--border);
}
.nav-wrap { display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.nav-logo img { height: 52px; width: auto; transition: transform .3s; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-menu > a,
.nav-drop > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .88rem; color: rgba(255,255,255,.9);
  letter-spacing: .02em; padding: 6px 0; position: relative; transition: color .25s;
  text-decoration: none;
}
.navbar.scrolled .nav-menu > a,
.navbar.scrolled .nav-drop > a { color: var(--navy); }
.nav-menu > a::after,
.nav-drop > a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--cyan); border-radius: 2px; transition: width .3s;
}
.nav-menu > a:hover, .nav-drop > a:hover { color: var(--cyan) !important; }
.nav-menu > a:hover::after, .nav-drop > a:hover::after { width: 100%; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: 4px; }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: var(--r); box-shadow: var(--sh2);
  min-width: 260px; padding: 8px 0; opacity: 0; visibility: hidden;
  transition: all .25s ease; border: 1px solid var(--border); z-index: 999;
}
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px; font-size: .86rem; font-weight: 600; color: var(--navy) !important;
  transition: all .2s; font-family: 'Nunito', sans-serif;
}
.drop-menu a::after { display: none !important; }
.drop-menu a:hover { background: var(--off); color: var(--cyan2) !important; padding-left: 24px; }
.dicon {
  width: 32px; height: 32px; background: var(--off); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.nav-cta {
  background: var(--orange); color: #fff !important; padding: 10px 20px;
  border-radius: 50px; font-weight: 700; font-size: .84rem; transition: all .25s;
  white-space: nowrap; font-family: 'Outfit', sans-serif;
}
.nav-cta:hover { background: var(--orange2) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(244,123,32,.4); }
.nav-cta::after { display: none !important; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.9); }
.navbar.scrolled .nav-phone { color: var(--navy); }
.nav-phone i { color: var(--cyan); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy2); z-index: 997; padding: 80px 24px 32px;
  overflow-y: auto; flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 700;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif;
}
.mobile-nav a:hover { color: var(--cyan); }
.mob-close-btn {
  position: absolute; top: 18px; right: 22px; background: none;
  border: none; color: #fff; font-size: 28px; cursor: pointer; z-index: 999;
}

/* ── HERO SLIDER ── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy2); /* fallback so no blank */
}

/* FIXED: Each slide is block/flex, not position:absolute */
.hero-slider { position: relative; }
.hero-slide {
  display: none; /* hidden by default */
  position: relative;
  min-height: 100vh;
  align-items: center;
}
.hero-slide.active {
  display: flex; /* shown when active */
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 10s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,16,50,.9) 0%, rgba(26,46,110,.75) 55%, rgba(30,175,212,.12) 100%);
}
.hero-content-wrap {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 140px 0 100px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,175,212,.18); border: 1px solid rgba(30,175,212,.4);
  color: #7be0f5; padding: 6px 18px; border-radius: 50px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px; animation: fadeInUp .6s .1s both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--cyan);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.8)} }
.hero-title {
  font-size: clamp(2.4rem,5vw,3.8rem); color: #fff;
  margin-bottom: 20px; animation: fadeInUp .6s .2s both;
}
.hero-title em { color: var(--cyan); font-style: normal; display: block; }
.hero-desc {
  color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 32px; animation: fadeInUp .6s .35s both; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp .6s .5s both; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12); animation: fadeInUp .6s .65s both; flex-wrap: wrap;
}
.hs { text-align: left; }
.hs-num {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--cyan); line-height: 1;
}
.hs-lbl { display: block; font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 3px; }

/* Hero right panel */
.hero-cards { display: flex; flex-direction: column; gap: 14px; animation: fadeInRight .7s .4s both; }
.hero-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r2);
  padding: 20px 22px; color: #fff; transition: all .3s; cursor: default;
}
.hero-card:hover { background: rgba(255,255,255,.16); transform: translateX(-4px); }
.hc-row { display: flex; align-items: center; gap: 14px; }
.hc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(30,175,212,.4);
}
.hc-title { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.hc-sub { font-size: .78rem; opacity: .7; }
.hero-img-card {
  border-radius: var(--r2); overflow: hidden; height: 170px;
  border: 1px solid rgba(255,255,255,.15);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* Slider bottom wave */
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 4; line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* Slider dots & arrows */
.slider-controls {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 5;
}
.s-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s;
  border: none; outline: none;
}
.s-dot.active { background: var(--cyan); width: 28px; border-radius: 5px; }

/* ── TICKER STRIP ── */
.ticker-strip {
  background: var(--navy); padding: 16px 0; overflow: hidden;
  position: relative; z-index: 3;
}
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px; font-size: .84rem; font-weight: 700;
  color: rgba(255,255,255,.75); white-space: nowrap;
}
.ticker-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── QUICK FEATURES BAR ── */
.features-bar { background: #fff; border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feat-box {
  padding: 28px 24px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all .3s; cursor: default;
}
.feat-box:last-child { border-right: none; }
.feat-box::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.feat-box:hover { background: var(--off); }
.feat-box:hover::before { transform: scaleX(1); }
.feat-emoji { font-size: 2rem; margin-bottom: 12px; }
.feat-box h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.feat-box p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-main-img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--r2); box-shadow: var(--sh2);
}
.about-sm-img {
  position: absolute; bottom: -24px; right: -20px;
  width: 160px; height: 160px; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--sh2); border: 4px solid #fff;
}
.about-badge-box {
  position: absolute; top: 24px; left: -20px;
  background: var(--orange); color: #fff; border-radius: var(--r);
  padding: 16px 20px; text-align: center; box-shadow: var(--sh2);
}
.about-badge-box .num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; display: block; }
.about-badge-box .lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; opacity: .9; letter-spacing: .05em; margin-top: 2px; }
.about-text .sec-desc { max-width: 100%; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--navy); }
.check-icon {
  width: 22px; height: 22px; background: rgba(30,175,212,.12); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; color: var(--cyan2);
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.phone-inline { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; }
.phone-inline .pi { width: 42px; height: 42px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.phone-inline small { font-size: .72rem; color: var(--gray); display: block; }
.phone-inline a { font-size: .9rem; color: var(--navy); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: #fff; border-radius: var(--r2); border: 1px solid var(--border);
  overflow: hidden; transition: all .35s; cursor: pointer;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh2); border-color: transparent; }
.svc-img-wrap { position: relative; overflow: hidden; height: 190px; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff; padding: 3px 12px;
  border-radius: 30px; font-size: .72rem; font-weight: 700;
}
.svc-body { padding: 24px 22px 22px; }
.svc-icon-box {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(30,175,212,.3);
  transition: transform .3s;
}
.svc-card:hover .svc-icon-box { transform: rotate(8deg) scale(1.1); }
.svc-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: .83rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan2); font-size: .84rem; font-weight: 700; transition: gap .25s; }
.svc-link:hover { gap: 12px; }

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.process-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,175,212,.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; position: relative; z-index: 1; }
.proc-connector {
  position: absolute; top: 52px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange)); z-index: 0;
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-circle {
  width: 82px; height: 82px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(30,175,212,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Outfit', sans-serif;
  font-size: 1.5rem; font-weight: 900; color: var(--cyan);
  transition: all .3s;
}
.proc-step:hover .proc-circle { background: var(--cyan); color: #fff; border-color: var(--cyan); transform: scale(1.1); }
.proc-step h4 { color: #fff; font-size: .9rem; margin-bottom: 6px; }
.proc-step p { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.6; }

/* ── DUAL CTA ── */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; }
.dcta-panel {
  position: relative; padding: 64px 52px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden; min-height: 280px;
}
.dcta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dcta-overlay { position: absolute; inset: 0; }
.dcta-content { position: relative; z-index: 2; }
.dcta-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 10px; display: block; }
.dcta-panel h3 { font-size: 1.7rem; color: #fff; margin-bottom: 22px; max-width: 280px; line-height: 1.25; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; }
.wy-img { border-radius: var(--r); object-fit: cover; width: 100%; display: block; }
.wy-img:nth-child(1) { height: 220px; margin-top: 0; }
.wy-img:nth-child(2) { height: 160px; margin-top: 48px; }
.wy-img:nth-child(3) { height: 160px; margin-top: -48px; }
.wy-img:nth-child(4) { height: 220px; margin-top: 0; }
.why-center-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--navy); color: #fff; border-radius: 50%;
  width: 96px; height: 96px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; z-index: 2;
  box-shadow: var(--sh2); padding: 8px;
}
.why-center-badge .wnum { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.why-center-badge .wlbl { font-size: .58rem; font-weight: 700; text-transform: uppercase; opacity: .8; margin-top: 2px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; background: #fff; border-radius: var(--r);
  border: 1px solid var(--border); transition: all .28s; cursor: default;
}
.why-item:hover { box-shadow: var(--sh); border-color: var(--cyan); transform: translateX(4px); }
.wi-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.why-item h4 { font-size: .92rem; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ── STATS BAR ── */
.stats-bar { background: linear-gradient(90deg, var(--orange), var(--orange2)); padding: 52px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-box:last-child { border: none; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.85); margin-top: 6px; font-weight: 600; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff; border-radius: var(--r2); padding: 32px;
  border: 1px solid var(--border); transition: all .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--cyan); }
.tq-mark { font-family: 'Outfit', sans-serif; font-size: 3.5rem; color: var(--cyan); line-height: .7; margin-bottom: 14px; }
.testi-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { color: var(--gray); font-size: .88rem; line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.t-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--navy)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; color: #fff; font-size: 1rem; flex-shrink: 0; }
.t-name { font-weight: 700; font-size: .88rem; color: var(--navy); display: block; }
.t-role { font-size: .76rem; color: var(--gray); }

/* ── FULL CTA ── */
.full-cta { position: relative; overflow: hidden; padding: 90px 0; text-align: center; }
.full-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.full-cta-ov { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,46,110,.93),rgba(30,175,212,.6)); }
.full-cta-content { position: relative; z-index: 2; }
.full-cta h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); color: #fff; margin-bottom: 14px; }
.full-cta p { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.cta-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.contact-info p { color: var(--gray); font-size: .9rem; line-height: 1.75; margin-bottom: 28px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(30,175,212,.25);
}
.ci-item strong { display: block; font-size: .8rem; color: var(--navy); margin-bottom: 2px; }
.ci-item a, .ci-item span { display: block; font-size: .84rem; color: var(--gray); }
.ci-item a:hover { color: var(--cyan2); }

/* Contact Form */
.cf-box {
  background: #fff; border-radius: var(--r2); padding: 40px;
  box-shadow: var(--sh); border: 1px solid var(--border);
}
.cf-box h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: .9rem;
  color: var(--navy); background: #fff; outline: none; transition: all .25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(30,175,212,.12);
}
.fg textarea { min-height: 110px; resize: vertical; }
.btn-form {
  width: 100%; background: linear-gradient(135deg,var(--navy),var(--navy));
  color: #fff; padding: 14px 24px; border-radius: 50px; border: none;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form:hover { background: linear-gradient(135deg,var(--cyan2),var(--cyan)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,175,212,.4); }
.form-msg { display: none; background: rgba(30,175,212,.1); border: 1px solid rgba(30,175,212,.3); border-radius: 10px; padding: 14px; text-align: center; color: var(--cyan2); font-weight: 700; margin-top: 14px; }
.form-note { text-align: center; font-size: .74rem; color: var(--gray); margin-top: 10px; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--navy); padding: 56px 0; }
.nl-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.nl-text h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.nl-text p { color: rgba(255,255,255,.65); font-size: .88rem; }
.nl-form { display: flex; max-width: 420px; width: 100%; }
.nl-input { flex: 1; padding: 13px 18px; border-radius: 50px 0 0 50px; border: none; font-family: 'Nunito', sans-serif; font-size: .9rem; outline: none; }
.nl-btn { background: var(--orange); color: #fff; padding: 13px 24px; border-radius: 0 50px 50px 0; border: none; font-weight: 700; font-size: .88rem; cursor: pointer; transition: background .25s; white-space: nowrap; }
.nl-btn:hover { background: var(--orange2); }

/* ── FOOTER ── */
footer { background: var(--navy2); color: rgba(255,255,255,.75); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fbrand img { height: 50px; margin-bottom: 16px; filter: brightness(1.1); }
.fbrand p { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc-btn { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: 14px; transition: all .25s; }
.soc-btn:hover { background: var(--cyan); color: #fff; transform: translateY(-2px); }
.fcol h4 { color: #fff; font-size: .92rem; margin-bottom: 18px; font-family: 'Outfit', sans-serif; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: .83rem; color: rgba(255,255,255,.55); transition: all .25s; display: flex; align-items: center; gap: 5px; }
.flinks a:hover { color: var(--cyan); padding-left: 4px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .79rem; color: rgba(255,255,255,.35); }
.foot-links { display: flex; gap: 18px; }
.foot-links a { font-size: .79rem; color: rgba(255,255,255,.35); transition: color .25s; }
.foot-links a:hover { color: var(--cyan); }

/* ── PAGE INNER HERO ── */
.page-hero {
  background: linear-gradient(120deg, var(--navy2) 0%, var(--navy) 65%, rgba(30,175,212,.25) 100%);
  padding: 120px 0 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,175,212,.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(30,175,212,.04) 1px,transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: var(--cyan); }
.breadcrumb .sep { opacity: .4; }

/* ── SERVICE DETAIL ── */
.svc-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.svc-detail-body h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
.svc-detail-body p { color: var(--gray); line-height: 1.82; margin-bottom: 16px; }
.feat-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.feat-li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--navy); }
.feat-li-check { width: 22px; height: 22px; background: rgba(30,175,212,.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--cyan2); font-size: 11px; flex-shrink: 0; }
.sidebar-sticky { position: sticky; top: 100px; }
.sb-box { background: var(--off); border-radius: var(--r2); padding: 26px; border: 1px solid var(--border); margin-bottom: 18px; }
.sb-box h4 { font-size: .92rem; color: var(--navy); margin-bottom: 16px; font-family: 'Outfit', sans-serif; }
.sb-links { display: flex; flex-direction: column; gap: 5px; }
.sb-a { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 10px; font-size: .84rem; font-weight: 600; color: var(--gray); transition: all .25s; }
.sb-a:hover, .sb-a.active { background: #fff; color: var(--cyan2); box-shadow: var(--sh); }
.sb-cta { background: linear-gradient(135deg,var(--navy),var(--navy)); border-radius: var(--r2); padding: 26px; text-align: center; color: #fff; }
.sb-cta h4 { margin-bottom: 8px; }
.sb-cta p { font-size: .82rem; opacity: .75; margin-bottom: 18px; }
.sb-cta .btn-primary { width: 100%; justify-content: center; margin-bottom: 10px; }
.sb-cta small { color: rgba(255,255,255,.65); font-size: .8rem; }

/* FAQ */
.faq-wrap { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: .9rem; transition: background .2s; font-family: 'Outfit', sans-serif; gap: 12px; }
.faq-q:hover { background: var(--off); }
.faq-icon { width: 28px; height: 28px; background: var(--off); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: 13px; flex-shrink: 0; color: var(--navy); }
.faq-item.open .faq-icon { background: var(--cyan); color: #fff; transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-body { max-height: 260px; }
.faq-body p { padding: 0 22px 18px; color: var(--gray); font-size: .87rem; line-height: 1.75; }

/* ── WA FLOAT ── */
.wa-btn { position: fixed; bottom: 26px; right: 26px; z-index: 996; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.5); transition: transform .3s; text-decoration: none; animation: waBounce 3s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.12); animation: none; }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.hidden { opacity: 0; transform: translateY(28px); }
.reveal.hidden.from-left { transform: translateX(-28px); }
.reveal.hidden.from-right { transform: translateX(28px); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── HERO ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }

/* ── RESPONSIVE ── */
@media(max-width:1080px){
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .feat-box:nth-child(2){border-right:none}
  .feat-box:nth-child(1),.feat-box:nth-child(2){border-bottom:1px solid var(--border)}
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,.why-grid,.contact-grid,.svc-detail { grid-template-columns: 1fr; }
  .why-mosaic { display: none; }
  .dual-cta { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .proc-connector { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .stat-box { border: none; }
}
@media(max-width:768px){
  .nav-menu, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  section.section { padding: 60px 0; }
  .hero-content-wrap { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 16px; }
  .hs-num { font-size: 1.6rem; }
  .services-grid,.testi-grid,.process-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-sm-img { width: 110px; height: 110px; right: -8px; bottom: -12px; }
  .about-badge-box { left: -6px; }
  .nl-wrap { flex-direction: column; }
  .nl-form { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cf-box { padding: 24px 18px; }
  .dcta-panel { padding: 40px 28px; }
}
@media(max-width:480px){
  .hero-title { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-stats { flex-wrap: wrap; }
}

/* ── SPLASH SCREEN ── */
#splash-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}
#splash-screen.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  animation: splashFadeIn .8s ease forwards;
}
.splash-logo {
  width: min(320px, 55vw); height: auto;
  margin: 0 auto 28px auto;
  display: block;
  filter: drop-shadow(0 6px 28px rgba(26,46,110,.15));
  animation: splashPulse 1.8s ease-in-out infinite;
}
.splash-title {
  color: #1A2E6E; font-size: 1.3rem;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 8px;
}
.splash-brand {
  color: #1A2E6E; font-size: 2.6rem;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  margin: 0 0 36px; line-height: 1.2;
}
.splash-brand span { color: #00b4d8; }
.splash-loader {
  width: min(260px, 60vw); height: 5px;
  background: rgba(26,46,110,.12); border-radius: 99px;
  margin: 0 auto; overflow: hidden;
}
.splash-bar {
  height: 100%; width: 0%; background: linear-gradient(90deg, #1A2E6E, #00b4d8);
  border-radius: 99px;
  animation: splashLoad 2.2s ease forwards;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes splashLoad {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ── LOGO SIZE FIX ── */
.nav-logo img { height: 72px !important; width: auto; }
.fbrand img { height: 72px; width: auto; }

