:root {
  --navy-900: #1e3a5f;
  --navy-800: #244a74;
  --navy-700: #2e6c8f;
  --blue-600: #2e6c8f;
  --cyan-500: #2fa6a4;
  --teal-500: #33b39a;
  --green-500: #41c37d;
  --green-400: #82dcaa;
  --bg: #f5fbfb;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-light: rgba(46, 108, 143, 0.06);
  --border: rgba(46, 108, 143, 0.14);
  --border-strong: rgba(65, 195, 125, 0.22);
  --text: #27405f;
  --muted: #57738f;
  --heading: #163555;
  --success: #1f9f62;
  --error: #d9534f;
  --shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
  --shadow-soft: 0 14px 34px rgba(30, 58, 95, 0.08);
  --brand-gradient: linear-gradient(135deg, #1e3a5f 0%, #2e6c8f 35%, #2fa6a4 68%, #41c37d 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(30, 58, 95, 0.12) 0%, rgba(46, 108, 143, 0.1) 38%, rgba(47, 166, 164, 0.09) 70%, rgba(65, 195, 125, 0.12) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 166, 164, 0.12), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(65, 195, 125, 0.10), transparent 16%),
    radial-gradient(circle at 52% 44%, rgba(46, 108, 143, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfefe 0%, #f2f9fb 45%, #eef7fa 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { overflow: hidden; }

.site-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.58) 0%, transparent 36%),
    radial-gradient(circle at 18% 24%, rgba(47,166,164,0.10), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(65,195,125,0.10), transparent 12%);
  pointer-events: none;
}

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(245,251,251,.65));
  border-top: 1px solid rgba(46,108,143,.08);
  border-bottom: 1px solid rgba(46,108,143,.08);
}
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(46,108,143,.10);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.07);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  padding: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(240,248,250,.88));
  border: 1px solid rgba(46,108,143,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-soft);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--heading);
}
.brand-mark small {
  color: var(--blue-600);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .25s ease;
}
.site-nav a.active,
.site-nav a:hover { color: var(--heading); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(46,108,143,.14);
  background: rgba(255,255,255,.86);
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding-inline: 18px; }
/* .btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #1e3a5f 0%, #2e6c8f 40%, #2fa6a4 70%, #41c37d 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 14px 34px rgba(46,108,143,.18);
  display: inline-block;
  overflow: hidden;
} */
 .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1e3a5f, #2e6c8f, #2fa6a4, #41c37d);
  border: none;
  border-radius: 10px;
  padding: 14px 30px;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 14px 34px rgba(46,108,143,.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(46,108,143,.28);
}
.btn-primary:focus,
.btn-primary:active {
  outline: none;
  box-shadow: 0 14px 34px rgba(46,108,143,.18);
}
/* .btn-primary:hover { box-shadow: 0 18px 42px rgba(46,108,143,.25); } */
.btn-secondary {
  background: rgba(255,255,255,.86);
  color: var(--heading);
  border-color: rgba(46,108,143,.14);
}
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.eyebrow {
  display: inline-block;
  color: var(--cyan-500);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: .78rem;
  margin-bottom: 14px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
  color: var(--heading);
}
p { color: var(--muted); margin: 0 0 16px; line-height: 1.7; }

.hero-section { padding: 96px 0 50px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.hero-copy h1 span {
  background: linear-gradient(90deg, #1e3a5f 0%, #2e6c8f 38%, #2fa6a4 70%, #41c37d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.mini-stats div,
.stat-box,
.info-card,
.service-card,
.team-card,
.contact-card,
.form-card,
.table-card,
.process-panel,
.glass-stack article,
.step-card,
.cta-banner,
.timeline-grid article,
.industries-grid span {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,252,253,0.92));
  border: 1px solid rgba(46,108,143,.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.mini-stats div {
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.mini-stats div::before,
.info-card::before,
.service-card::before,
.team-card::before,
.contact-card::before,
.form-card::before,
.timeline-grid article::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--brand-gradient);
  opacity: .9;
}
.mini-stats strong,
.stat-box strong {
  display: block;
  font-size: 2rem;
  color: var(--heading);
}
.mini-stats span,
.stat-box span { color: var(--muted); font-size: .95rem; }

.hero-art {
  position: relative;
  min-height: 800px;
  border-radius: 34px;
  background: url("../images/logo.png") center/700px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(46,108,143,.12);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Logo layer */

/* .art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 108, 143, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 108, 143, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 86%);
} */
.orb { position: absolute; border-radius: 50%; filter: blur(12px); }
.orb-a { width: 220px; height: 220px; top: 30px; right: 50px;  }
.orb-b { width: 170px; height: 170px; bottom: 40px; left: 36px;  }
.floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(46,108,143,.14);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow-soft);
  animation: floatCard 7s ease-in-out infinite;
}
.card-one { top: 70px; left: 240px; }
.card-two { top:600px; right: 10px; animation-delay: 1.4s; }
.card-three { bottom: 120px; left: 20px; animation-delay: .8s; }
.core-ring {
  position: absolute;
  inset: 18% 20%;
  border-radius: 50%;
  border: 1px dashed rgba(46,108,143,.24);
  display: grid;
  place-items: center;
}
.core-ring::before,
.core-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 12%;
  border: 1px solid rgba(47,166,164,.18);
}
.core-ring::after { inset: 24%; border-color: rgba(65,195,125,.18); }
.core-ring span {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(46,108,143,.14);
  font-weight: 700;
  color: var(--heading);
}
.core-ring span:nth-child(1) { top: 10%; }
.core-ring span:nth-child(2) { left: 8%; top: 50%; transform: translateY(-50%); }
.core-ring span:nth-child(3) { right: 8%; top: 50%; transform: translateY(-50%); }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading.left { margin-left: 0; text-align: left; }
.card-grid { display: grid; gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card,
.service-card,
.team-card,
.contact-card,
.form-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.service-card h2 { font-size: 1.35rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.industries-grid span {
  display: block;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--heading);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.align-center { align-items: center; }
.align-start { align-items: start; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box {
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,250,252,.94));
}
.check-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--heading);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-500);
  font-weight: 800;
}
.check-list.compact li { color: var(--muted); }
.process-panel { padding: 34px; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  align-items: stretch;
}
.timeline-grid article {
  padding: 24px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.process-flow {
  position: relative;
}
.process-step {
  position: relative;
}
.process-step span {
  position: relative;
  z-index: 3;
  transition: transform .35s ease, box-shadow .35s ease;
}
.process-flow::before,
.process-flow::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.process-flow-horizontal {
  padding-top: 12px;
}
.process-flow-horizontal::before {
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  top: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,58,95,.14), rgba(46,108,143,.26), rgba(47,166,164,.24), rgba(65,195,125,.18));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.process-flow-horizontal::after {
  top: 34px;
  left: calc(12.5% + 16px);
  width: 28px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.98) 0%, rgba(255,255,255,.75) 30%, rgba(47,166,164,.56) 55%, rgba(46,108,143,0) 76%);
  filter: blur(1px);
  opacity: 0;
}
.process-flow-horizontal.active::before {
  transform: scaleX(1);
}
.process-flow-horizontal.active::after {
  opacity: 1;
  animation: processShineHorizontal 2.8s ease-in-out .35s forwards;
}
.process-flow-horizontal.active .process-step:nth-child(1) span { animation: processPulse 1s ease .15s 1; }
.process-flow-horizontal.active .process-step:nth-child(2) span { animation: processPulse 1s ease .65s 1; }
.process-flow-horizontal.active .process-step:nth-child(3) span { animation: processPulse 1s ease 1.15s 1; }
.process-flow-horizontal.active .process-step:nth-child(4) span { animation: processPulse 1s ease 1.65s 1; }
.process-flow-vertical {
  gap: 22px;
  padding-left: 8px;
}
.process-flow-vertical::before {
  top: 28px;
  bottom: 28px;
  left: 36px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30,58,95,.14), rgba(46,108,143,.26), rgba(47,166,164,.24), rgba(65,195,125,.18));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.process-flow-vertical::after {
  top: 18px;
  left: 29px;
  width: 18px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.98) 0%, rgba(255,255,255,.75) 30%, rgba(47,166,164,.56) 55%, rgba(46,108,143,0) 76%);
  filter: blur(1px);
  opacity: 0;
}
.process-flow-vertical.active::before {
  transform: scaleY(1);
}
.process-flow-vertical.active::after {
  opacity: 1;
  animation: processShineVertical 3s ease-in-out .35s forwards;
}
.process-flow-vertical.active .process-step:nth-child(1) span { animation: processPulse 1s ease .15s 1; }
.process-flow-vertical.active .process-step:nth-child(2) span { animation: processPulse 1s ease .75s 1; }
.process-flow-vertical.active .process-step:nth-child(3) span { animation: processPulse 1s ease 1.35s 1; }
.process-flow-vertical.active .process-step:nth-child(4) span { animation: processPulse 1s ease 1.95s 1; }
@keyframes processShineHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw - 520px)); }
}
@keyframes processShineVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(100% - 36px)); }
}
@keyframes processPulse {
  0% { transform: scale(1); box-shadow: 0 10px 24px rgba(46,108,143,.16); }
  35% { transform: scale(1.09); box-shadow: 0 0 0 10px rgba(65,195,125,.12), 0 16px 30px rgba(46,108,143,.24); }
  100% { transform: scale(1); box-shadow: 0 10px 24px rgba(46,108,143,.16); }
}
.timeline-grid span,
.step-card span,
.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(46,108,143,.16);
}
.cta-banner {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,249,251,.94));
}
.inner-hero { padding: 72px 0 24px; }
.inner-hero h1 { font-size: clamp(2.3rem, 4vw, 4rem); max-width: 760px; }
.inner-hero p { max-width: 760px; }
.glass-stack { display: grid; gap: 18px; }
.glass-stack article { padding: 24px; }
.vertical-steps { display: grid; gap: 18px; }
.step-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
}
.team-card { text-align: center; }
.avatar-placeholder {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  font-size: 2rem;
}
.field-grid { display: grid; gap: 16px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
label { display: block; font-size: .94rem; margin-bottom: 8px; color: var(--heading); font-weight: 600; }
input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(46,108,143,.14);
  background: rgba(255,255,255,.95);
  color: var(--heading);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  margin-bottom: 16px;
}
input::placeholder,
textarea::placeholder { color: #7e95ad; }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(65,195,125,.55);
  box-shadow: 0 0 0 4px rgba(65,195,125,.10);
}
.field-help {
  margin-top: -8px;
  margin-bottom: 16px;
  font-size: .9rem;
  color: var(--muted);
}
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}
.alert.success { background: rgba(65,195,125,.12); border: 1px solid rgba(65,195,125,.26); color: #1b7e52; }
.alert.error { background: rgba(217,83,79,.10); border: 1px solid rgba(217,83,79,.22); color: #b34542; }
.site-footer { padding: 44px 0 26px; border-top: 1px solid rgba(46,108,143,.10); background: rgba(255, 255, 255, 0.76); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
}
.footer-brand { margin-bottom: 18px; }
.footer-copy { max-width: 480px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a:hover { color: var(--cyan-500); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(46,108,143,.12);
  color: var(--heading);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  color: var(--cyan-500);
  border-color: rgba(47,166,164,.25);
}
.footer-bottom {
  border-top: 1px solid rgba(46,108,143,.10);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--cyan-500); }

.admin-body { min-height: 100vh; }
.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-card { width: min(480px, 100%); }
.admin-note { font-size: .92rem; }
.admin-shell { padding: 36px 0 52px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.admin-stats { margin-bottom: 24px; }
.table-card { padding: 24px; overflow: hidden; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(46,108,143,.08);
  text-align: left;
  vertical-align: top;
}
th { color: var(--heading); }
td { color: var(--muted); }
.message-cell { max-width: 320px; }
.status-form select { margin: 0; min-width: 110px; }
.settings-card { max-width: 860px; }
.settings-preview-card { margin-bottom: 24px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0s; }
.delay-2 { transition-delay: 0s; }
.delay-3 { transition-delay: 0s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-grid, .split-grid, .card-grid.four, .footer-grid, .stats-grid, .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid.three { grid-template-columns: 1fr 1fr; }
  .hero-art { min-height: 520px; background-size: 360px, auto; }
  .card-one { left: 40px; }
  .card-two { top: 360px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(46,108,143,.14);
    border-radius: 20px;
    padding: 16px;
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .split-grid,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .industries-grid,
  .stats-grid,
  .timeline-grid,
  .footer-grid,
  .field-grid.two {
    grid-template-columns: 1fr;
  }
  .mini-stats { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.7rem; }
  .hero-art { min-height: 430px; background-size: 280px, auto; }
  .card-one { top: 65px; left: 20px; }
  .card-two {  right: 20px; }
  .card-three {
    bottom: 80px;
    left: 20px;
    animation-delay: .8s;
}
  .core-ring { inset: 22% 8%; }
  .cta-banner, .admin-topbar { flex-direction: column; align-items: flex-start; }
  .step-card { grid-template-columns: 1fr; }
  .brand-mark small { display: none; }
}

select,
option {
  background: #ffffff;
  color: var(--heading);
}

[data-aos] {
    transition-duration: 1.2s !important;
}

.service-showcase {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-showcase:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(30, 58, 95, 0.14);
}
.service-showcase h2,
.service-showcase h3 {
  margin-top: 18px;
}
.service-visual {
  position: relative;
  min-height: 112px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30,58,95,.08), rgba(47,166,164,.10), rgba(65,195,125,.08));
  border: 1px solid rgba(46,108,143,.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.service-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 26px rgba(46,108,143,.14);
  animation: servicePulse 4.6s ease-in-out infinite;
}
.service-dot, .service-line, .service-ring, .service-bar, .service-chip { position: absolute; }
.service-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46,108,143,.7), rgba(65,195,125,.7));
  animation: floatMini 5s ease-in-out infinite;
}
.service-dot.dot-a { top: 20px; left: 18%; }
.service-dot.dot-b { right: 16%; bottom: 18px; animation-delay: 1s; }
.service-line {
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: rgba(46,108,143,.34);
  top: 30px;
  right: 18px;
}
.service-line.short { width: 48px; top: auto; bottom: 26px; left: 22px; }
.service-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px dashed rgba(46,108,143,.25);
  animation: spinSlow 16s linear infinite;
}
.service-bar {
  bottom: 20px;
  right: 34px;
  width: 10px;
  height: 26px;
  border-radius: 999px;
  background: rgba(46,108,143,.34);
}
.service-bar.mid { right: 18px; height: 42px; }
.service-bar.tall { right: 50px; height: 58px; }
.service-chip {
  width: 26px;
  height: 26px;
  top: 18px;
  right: 22px;
  border-radius: 9px;
  background: rgba(65,195,125,.22);
  border: 1px solid rgba(65,195,125,.28);
}
.staff-visual .service-ring,
.c2h-visual .service-ring,
.fte-visual .service-ring,
.contract-visual .service-ring,
.consulting-visual .service-ring { opacity: .35; }
.ai-visual .service-ring { opacity: .8; }
.c2h-visual .service-line { width: 92px; }
.fte-visual .service-chip { width: 56px; height: 32px; border-radius: 12px; }
.contract-visual .service-line, .contract-visual .service-line.short { left: 20px; right: auto; }
.consulting-visual .service-bar, .consulting-visual .service-bar.mid, .consulting-visual .service-bar.tall { opacity: 1; }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(46,108,143,.12);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(46,108,143,.14);
  color: var(--heading);
}
.social-badge {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
}
@keyframes servicePulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.04); }
}
@keyframes floatMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.service-row-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.service-row-card .service-copy {
  flex: 1;
}
.service-row-card .service-copy h2,
.service-row-card .service-copy h3 {
  margin-top: 0;
}
.service-row-card .service-visual-left {
  width: 96px;
  min-width: 96px;
  min-height: 96px;
  margin-bottom: 0;
  border-radius: 24px;
}
.service-icon-svg {
  color: #1e3a5f;
}
.service-icon-svg svg {
  width: 34px;
  height: 34px;
}
.service-showcase {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.service-showcase h2,
.service-showcase h3 {
  margin-top: 0;
}
.service-visual {
  min-height: 96px;
}
@media (max-width: 767px) {
  .service-showcase,
  .service-row-card {
    flex-direction: column;
    gap: 14px;
  }
  .service-row-card .service-visual-left {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 991px) {
  .timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-flow-horizontal::before,
  .process-flow-horizontal::after { display: none; }
}

@media (max-width: 767px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .process-flow-vertical::before { left: 28px; }
  .process-flow-vertical::after { left: 21px; }
  .process-flow-vertical .step-card { grid-template-columns: 72px 1fr; }
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.impact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,188,108,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon svg {
  width: 22px;
  height: 22px;
  fill: #14BC6C;
}

.impact-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.impact-content p {
  font-size: 14px;
  color: #666;
}

.values-section {
  position: relative;
  overflow: hidden;
}

.section-subtext {
  max-width: 720px;
  margin-top: 12px;
  color: #5f6b76;
  font-size: 16px;
  line-height: 1.7;
}

.values-grid {
  position: relative;
  z-index: 2;
  gap: 24px;
}

.value-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(46, 108, 143, 0.1);
  box-shadow: 0 16px 40px rgba(20, 35, 52, 0.07);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(20, 35, 52, 0.12);
  border-color: rgba(47, 166, 164, 0.24);
}

.value-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f 0%, #2e6c8f 45%, #2fa6a4 75%, #41c37d 100%);
}

.value-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.3)),
    linear-gradient(135deg, rgba(46,108,143,0.12), rgba(65,195,125,0.16));
  border: 1px solid rgba(46, 108, 143, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.06) rotate(-3deg);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  fill: #2e6c8f;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 166, 164, 0.08);
  border: 1px solid rgba(47, 166, 164, 0.16);
  color: #2e6c8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #102033;
}

.value-card p {
  margin: 0;
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.75;
  min-height: 96px;
}

.value-lines {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.value-lines span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,108,143,0.12), rgba(65,195,125,0.28));
  animation: valuePulse 2.8s ease-in-out infinite;
}

.value-lines span:nth-child(1) {
  width: 36px;
  animation-delay: 0s;
}

.value-lines span:nth-child(2) {
  width: 18px;
  animation-delay: 0.2s;
}

.value-lines span:nth-child(3) {
  width: 52px;
  animation-delay: 0.4s;
}

.values-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.35;
  z-index: 1;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: 90px;
  right: -60px;
  background: radial-gradient(circle, rgba(47,166,164,0.18), rgba(47,166,164,0));
  animation: floatOrb 7s ease-in-out infinite;
}

.orb-two {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(65,195,125,0.16), rgba(65,195,125,0));
  animation: floatOrb 9s ease-in-out infinite reverse;
}

@keyframes valuePulse {
  0%, 100% {
    transform: scaleX(1);
    opacity: 0.65;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 1;
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(8px);
  }
}

@media (max-width: 991px) {
  .value-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .value-widget {
    align-items: flex-start;
    flex-direction: column;
  }

  .value-card {
    padding: 24px 20px 20px;
  }

  .value-card h3 {
    font-size: 20px;
  }
}

.culture-section {
  position: relative;
  overflow: hidden;
}

.culture-grid {
  gap: 48px;
}

.culture-copy p {
  max-width: 620px;
}

.culture-points {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.culture-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(46,108,143,0.1);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.08);
}

.culture-point-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,108,143,0.12), rgba(65,195,125,0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(46,108,143,0.12);
}

.culture-point-icon svg {
  width: 22px;
  height: 22px;
  fill: #2e6c8f;
}

.culture-point h4 {
  margin: 0 0 4px;
  font-size: 17px;
  color: #102033;
}

.culture-point p {
  margin: 0;
  font-size: 14px;
  color: #5f6b76;
  line-height: 1.65;
}

.culture-visual {
  position: relative;
}

.culture-image-card {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(46,108,143,0.1);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.12);
}

.culture-image-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.culture-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 30, 45, 0.08) 0%,
    rgba(15, 30, 45, 0.16) 100%
  );
  pointer-events: none;
}

.culture-widget {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46,108,143,0.12);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.14);
  z-index: 2;
  animation: cultureFloat 4.5s ease-in-out infinite;
}

.culture-widget strong {
  display: block;
  font-size: 14px;
  color: #102033;
  line-height: 1.2;
}

.culture-widget span {
  display: block;
  font-size: 12px;
  color: #5f6b76;
  margin-top: 2px;
}

.widget-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46,108,143,0.12), rgba(65,195,125,0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-icon svg {
  width: 20px;
  height: 20px;
  fill: #2e6c8f;
}

.widget-top {
  top: 26px;
  right: 24px;
  animation-delay: 0s;
}

.widget-middle {
  left: 22px;
  bottom: 110px;
  animation-delay: 0.8s;
}

.widget-bottom {
  right: 24px;
  bottom: 28px;
  animation-delay: 1.4s;
}

@keyframes cultureFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991px) {
  .culture-grid {
    gap: 32px;
  }

  .culture-image-card,
  .culture-image-card img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .culture-image-card,
  .culture-image-card img {
    min-height: 360px;
  }

  .culture-widget {
    min-width: 180px;
    padding: 12px 14px;
  }

  .widget-top {
    top: 16px;
    right: 16px;
  }

  .widget-middle {
    left: 16px;
    bottom: 92px;
  }

  .widget-bottom {
    right: 16px;
    bottom: 16px;
  }
}

.why-jnaantra-alt {
  position: relative;
  overflow: hidden;
}

.ppt-highlight-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ppt-rail {
  position: absolute;
  top: 54px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(30, 58, 95, 0.12) 0%,
    rgba(46, 108, 143, 0.26) 40%,
    rgba(47, 166, 164, 0.3) 75%,
    rgba(65, 195, 125, 0.22) 100%
  );
  z-index: 0;
  overflow: hidden;
}

.ppt-rail-glow {
  position: absolute;
  top: -2px;
  left: -20%;
  width: 24%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(65,195,125,0.15),
    rgba(47,166,164,0.55),
    rgba(46,108,143,0.2),
    rgba(255,255,255,0)
  );
  filter: blur(4px);
  animation: pptRailMove 4.5s ease-in-out infinite;
}

.ppt-card {
  position: relative;
  z-index: 1;
  padding: 30px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,252,0.96));
  border: 1px solid rgba(46, 108, 143, 0.1);
  box-shadow:
    0 16px 34px rgba(16, 32, 51, 0.06),
    0 0 0 rgba(47, 166, 164, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.ppt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47,166,164,0.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(46,108,143,0.06), transparent 40%);
  pointer-events: none;
}

.ppt-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 166, 164, 0.2);
  box-shadow:
    0 24px 50px rgba(16, 32, 51, 0.11),
    0 10px 35px rgba(47, 166, 164, 0.1);
}

.ppt-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.ppt-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.35)),
    linear-gradient(135deg, rgba(46,108,143,0.14), rgba(65,195,125,0.16));
  border: 1px solid rgba(46, 108, 143, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 8px 24px rgba(46, 108, 143, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ppt-card:hover .ppt-icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 12px 30px rgba(47, 166, 164, 0.14);
}

.ppt-icon svg {
  width: 26px;
  height: 26px;
  fill: #2e6c8f;
}

.ppt-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 166, 164, 0.08);
  border: 1px solid rgba(47, 166, 164, 0.14);
  color: #2e6c8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ppt-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #102033;
}

.ppt-content h3 span {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.ppt-content h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e6c8f 0%, #2fa6a4 60%, #41c37d 100%);
  animation: pptUnderline 2.8s ease-in-out infinite;
}

.ppt-process .ppt-content h3 span::after {
  animation-delay: 0.4s;
}

.ppt-tech .ppt-content h3 span::after {
  animation-delay: 0.8s;
}

.ppt-content p {
  margin: 0;
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.8;
  min-height: 118px;
}

.ppt-pulse {
  position: absolute;
  top: 42px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fa6a4, #41c37d);
  box-shadow:
    0 0 0 0 rgba(47, 166, 164, 0.22),
    0 0 18px rgba(65, 195, 125, 0.25);
  animation: pptPulse 2.4s ease-in-out infinite;
}

.ppt-process .ppt-pulse {
  animation-delay: 0.35s;
}

.ppt-tech .ppt-pulse {
  animation-delay: 0.7s;
}

@keyframes pptPulse {
  0% {
    transform: scale(0.95);
    box-shadow:
      0 0 0 0 rgba(47,166,164,0.24),
      0 0 18px rgba(65,195,125,0.22);
  }
  70% {
    transform: scale(1.05);
    box-shadow:
      0 0 0 16px rgba(47,166,164,0),
      0 0 26px rgba(65,195,125,0.14);
  }
  100% {
    transform: scale(0.95);
    box-shadow:
      0 0 0 0 rgba(47,166,164,0),
      0 0 18px rgba(65,195,125,0.22);
  }
}

@keyframes pptUnderline {
  0%, 100% {
    width: 0;
    opacity: 0.5;
  }
  40%, 75% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes pptRailMove {
  0% {
    left: -22%;
  }
  100% {
    left: 102%;
  }
}

@media (max-width: 991px) {
  .ppt-highlight-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ppt-rail {
    display: none;
  }

  .ppt-content p {
    min-height: auto;
  }
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Careers + Team dynamic enhancements */
.careers-layout{gap:32px;}
.careers-openings-grid{margin-top:24px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.opening-card{height:100%;}
.opening-meta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:12px;}
.tag-chip{display:inline-flex;align-items:center;padding:6px 12px;border-radius:999px;background:rgba(46,108,143,.10);color:#1e3a5f;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;}
.muted-chip{background:rgba(47,166,164,.10);color:#2b7876;}
.team-photo{width:96px;height:96px;border-radius:24px;object-fit:cover;margin:0 auto 18px;display:block;box-shadow:0 12px 30px rgba(30,58,95,.12);}

/* Admin enhancements */
.admin-grid-two{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:24px;}
.card-head-row,.table-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.admin-three{grid-template-columns:repeat(3,1fr);}
.checkbox-row{display:flex;align-items:center;gap:10px;margin-top:14px;color:#234;}
.checkbox-row input{width:auto;}
.btn-danger{background:#b42318;color:#fff;border:none;}
.admin-thumb{width:52px;height:52px;border-radius:14px;object-fit:cover;display:block;}
.avatar-mini{display:inline-flex;width:42px;height:42px;border-radius:12px;align-items:center;justify-content:center;background:rgba(46,108,143,.12);font-weight:700;color:#1e3a5f;}
@media (max-width: 900px){
  .admin-grid-two,.admin-three{grid-template-columns:1fr;}
}

.team-bio {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #5f6b7a;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2e6c8f;
  cursor: pointer;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #1e4d68;
  text-decoration: underline;
}