@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Fraunces:wght@700;900&display=swap");
:root {
  --navy: #07112e;
  --blue: #0800ff;
  --deep-blue: #003b8f;
  --teal: #e61616;
  --red: #ff0500;
  --green: #16a34a;
  --ink: #172033;
  --muted: #59657a;
  --soft: #f7f9ff;
  --white: #ffffff;
  --line: #dfe5f5;
  --shadow: 0 24px 70px rgba(7, 17, 46, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(8, 0, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(255, 5, 0, 0.065), transparent 32rem),
    var(--soft);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; color: var(--navy); line-height: 1.05; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 8vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h3 { font-size: 1.25rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 860px); }
.section-pad { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-white { background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(14px); }
.eyebrow {
  color: var(--deep-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 252, 0.82);
  border-bottom: 1px solid rgba(220, 232, 239, 0.75);
  backdrop-filter: blur(18px);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--blue));
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 98px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: min(300px, 48vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 0.18rem; }
.site-nav a {
  color: var(--muted);
  font-weight: 750;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); background: var(--white); box-shadow: 0 8px 24px rgba(7, 17, 46, 0.07); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--white); border-radius: 14px; box-shadow: 0 8px 24px rgba(7, 17, 46, 0.07); }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(8, 0, 255, 0.28); outline-offset: 3px; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--deep-blue), var(--blue)); box-shadow: 0 16px 34px rgba(8, 0, 255, 0.22); }
.btn-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.btn-accent { color: var(--white); background: var(--green); box-shadow: 0 16px 34px rgba(22, 163, 74, 0.2); }
.btn-small { min-height: 42px; padding: 0.58rem 0.95rem; font-size: 0.92rem; }

.hero { overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-lede { font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 720px; }
.hero-actions, .cta-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.75rem 0; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}
.trust-strip span {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  font-weight: 750;
  font-size: 0.9rem;
}
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.main-card { border-radius: 36px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.8); }
.floating-card {
  position: absolute;
  width: min(230px, 48vw);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(7, 17, 46, 0.13);
  backdrop-filter: blur(12px);
}
.floating-card strong { display: block; color: var(--navy); }
.floating-card span { color: var(--muted); font-size: 0.9rem; }
.card-one { left: -0.5rem; bottom: 5rem; }
.card-two { right: -0.5rem; top: 4.25rem; }

.section-heading { text-align: center; max-width: 760px; margin-bottom: 2.6rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.product-card, .industry-card, .value-card, .info-card, .contact-panel, .enquiry-form, .reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(7, 17, 46, 0.06);
}
.product-card { padding: 1.25rem; }
.product-card ul { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; margin: 1rem 0; list-style: none; }
.product-card li {
  color: var(--blue);
  background: #eef2ff;
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 750;
}
.product-card a, .text-link { color: var(--blue); font-weight: 850; }
.icon-badge {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8, 0, 255, 0.1), rgba(255, 5, 0, 0.12));
  position: relative;
}
.icon-badge::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 3px solid var(--blue);
  border-top-color: var(--red);
  border-radius: 8px 8px 16px 16px;
}
.icon-chemicals::after { border-radius: 50%; }
.icon-instruments::after { border-radius: 999px; transform: rotate(-30deg); }
.icon-equipment::after { border-radius: 5px; }
.icon-ngs::after { border-radius: 50%; box-shadow: 0 0 0 8px rgba(8, 0, 255, 0.1), 11px -9px 0 rgba(255, 5, 0, 0.18); }
.icon-consumables::after { border-radius: 16px 16px 5px 5px; }
.icon-bulk::after { border-radius: 4px; box-shadow: 10px 10px 0 rgba(255, 5, 0, 0.16); }

.principals-section {
  position: relative;
  overflow: hidden;
}
.principals-home {
  background:
    radial-gradient(circle at 10% 12%, rgba(8, 0, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(255, 5, 0, 0.08), transparent 24rem),
    linear-gradient(135deg, #ffffff, #eef2ff);
}
.principals-section::before {
  content: "";
  position: absolute;
  inset: 8% -18% auto auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: repeating-conic-gradient(from 18deg, rgba(8, 0, 255, 0.07) 0 8deg, transparent 8deg 22deg);
  opacity: 0.72;
  animation: rotate-soft 42s linear infinite;
}
.principal-groups {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}
.principal-group {
  padding: clamp(1rem, 2.3vw, 1.35rem);
  border: 1px solid rgba(223, 229, 245, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(7, 17, 46, 0.08);
  backdrop-filter: blur(12px);
}
.principal-group-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}
.principal-group-head h3 { margin-bottom: 0; }
.principal-group-head p { margin-bottom: 0; }
.principal-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.principal-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.principal-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 0.56rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(247,249,255,0.94)),
    #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.principal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 0, 255, 0.28);
  box-shadow: 0 22px 48px rgba(7, 17, 46, 0.12);
}
.principal-logo-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 229, 245, 0.95);
  border-radius: 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}
.principal-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, rgba(8, 0, 255, 0.13), rgba(255, 5, 0, 0.13), rgba(8, 0, 255, 0.13));
  opacity: 0;
  transition: opacity 220ms ease;
}
.principal-logo-wrap:hover,
.principal-logo-wrap:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(8, 0, 255, 0.34);
}
.principal-logo-wrap:hover::before,
.principal-logo-wrap:focus-visible::before { opacity: 1; }
.principal-logo-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
.principal-logo-wrap span {
  position: absolute;
  z-index: 1;
  color: var(--blue);
  font-weight: 950;
  font-size: 1.35rem;
}
.principal-name {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.18;
}
.principal-full-name {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
.split-section { background: linear-gradient(135deg, #eef2ff, #ffffff); }
.split-grid, .content-grid, .contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.text-panel { padding: 1.3rem 1.55rem; border-left: 5px solid var(--red); background: rgba(255, 255, 255, 0.78); border-radius: var(--radius-sm); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
.feature-tile {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  font-weight: 850;
}
.feature-tile span { width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(255, 5, 0, 0.12); }

.cta-band { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--navy); color: var(--white); }
.cta-band.muted { background: linear-gradient(135deg, var(--navy), #102a73); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-inner h2, .cta-inner p { color: var(--white); }
.cta-inner .eyebrow { color: #ffb7b5; }

.compact-hero { text-align: center; background: linear-gradient(135deg, rgba(8, 0, 255, 0.075), rgba(255, 5, 0, 0.045)); }
.prose, .info-card, .contact-panel, .enquiry-form { padding: clamp(1.25rem, 3vw, 2rem); }
.prose p { font-size: 1.05rem; }
.four-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value-card, .industry-card { padding: 1.3rem; }
.product-list { display: grid; gap: 1rem; }
.category-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.category-row .icon-badge { margin-bottom: 0; }
.notice-box {
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: #f1f4ff;
  border: 1px solid #cdd7ff;
  border-radius: 18px;
}
.notice-box.small { margin-top: 1rem; font-size: 0.93rem; }
.industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.reason-card { padding: 1.35rem; }
.reason-card span { display: inline-block; margin-bottom: 1rem; color: var(--red); font-weight: 900; letter-spacing: 0.12em; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.process-list li { counter-increment: item; margin-bottom: 0.8rem; padding: 1rem 1rem 1rem 3.2rem; background: var(--white); border-radius: 18px; position: relative; }
.process-list li::before { content: counter(item); position: absolute; left: 1rem; top: 1rem; width: 1.45rem; height: 1.45rem; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 0.8rem; font-weight: 900; }

.enquiry-form label { display: block; margin-bottom: 0.35rem; color: var(--navy); font-weight: 850; }
.form-row { margin-bottom: 1rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
}
textarea { resize: vertical; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { margin-top: 0.8rem; font-size: 0.9rem; }
.form-alert { margin-bottom: 1rem; padding: 0.9rem 1rem; border-radius: 16px; background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
.centered-actions { justify-content: center; }

.site-footer { color: rgba(255, 255, 255, 0.76); background: #070f27; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.7fr 1fr 1fr; gap: 2rem; padding: 4rem 0 2.7rem; }
.footer-logo { width: min(270px, 100%); height: auto; margin-bottom: 1rem; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.76); }
.site-footer a { display: block; margin: 0.4rem 0; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; }
.footer-note { font-size: 0.88rem; }

.reveal { opacity: 0; transform: translateY(18px); animation: rise 650ms ease forwards; }
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 220ms; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.95rem; }
  .hero-grid, .split-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .card-grid, .feature-grid, .four-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principal-group-head { grid-template-columns: 1fr; }
  .principal-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner, .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 660px) {
  .container, .narrow { width: min(100% - 1.1rem, var(--max)); }
  h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .section-pad { padding: 3.3rem 0; }
  .header-inner { min-height: 78px; }
  .brand img { width: min(235px, 60vw); }
  .card-grid, .feature-grid, .four-grid, .industry-grid, .timeline-grid, .footer-grid, .two-col, .principal-logo-grid { grid-template-columns: 1fr; }
  .category-row { grid-template-columns: 1fr; }
  .category-row .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn, .contact-actions .btn { width: 100%; }
  .hero-visual { min-height: auto; padding-top: 1rem; }
  .floating-card { position: static; width: 100%; margin-top: 0.8rem; }
}

/* Industry motion and visual polish */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 0, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 0, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}
body::after {
  content: "";
  position: fixed;
  inset: auto -20% 0 -20%;
  height: 32vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(8, 0, 255, 0.08), transparent 64%);
  animation: slow-drift 12s ease-in-out infinite alternate;
}
.brand img, .footer-logo {
  filter: none;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(7, 17, 46, 0.08);
}
.hero {
  position: relative;
  background:
    radial-gradient(circle at 72% 28%, rgba(8, 0, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 20% 82%, rgba(255, 5, 0, 0.075), transparent 20rem),
    linear-gradient(140deg, rgba(255,255,255,0.78), rgba(238,242,255,0.92));
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 260px;
  height: 260px;
  right: 7vw;
  top: 7rem;
  border: 1px solid rgba(8, 0, 255, 0.14);
  background: repeating-conic-gradient(from 0deg, rgba(8, 0, 255, 0.065) 0 7deg, transparent 7deg 19deg);
  animation: rotate-soft 28s linear infinite;
}
.hero::after {
  width: 18rem;
  height: 2px;
  left: 8vw;
  bottom: 4.5rem;
  background: linear-gradient(90deg, transparent, rgba(255, 5, 0, 0.44), transparent);
  animation: scan-line 4.8s ease-in-out infinite;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}
.main-card {
  position: relative;
  animation: lab-float 6s ease-in-out infinite;
}
.main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 42%, transparent 64%);
  transform: translateX(-130%);
  animation: glass-sheen 5.5s ease-in-out infinite;
}
.floating-card {
  animation: lab-float 7s ease-in-out infinite;
}
.card-two { animation-delay: 900ms; }
.product-card,
.industry-card,
.value-card,
.reason-card,
.category-row,
.feature-tile {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-card:hover,
.industry-card:hover,
.value-card:hover,
.reason-card:hover,
.category-row:hover,
.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 0, 255, 0.28);
  box-shadow: 0 24px 60px rgba(7, 17, 46, 0.11);
}
.product-card:hover .icon-badge,
.category-row:hover .icon-badge {
  animation: pulse-lab 1.3s ease-in-out infinite;
}
.industry-card {
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    radial-gradient(circle at 16% 22%, rgba(8, 0, 255, 0.12), transparent 4.5rem),
    linear-gradient(135deg, transparent 64%, rgba(255, 5, 0, 0.055));
}
.industry-card > * { position: relative; }
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -18%;
  width: 42%;
  background: radial-gradient(circle, rgba(255, 5, 0, 0.16), transparent 66%);
  animation: slow-drift 9s ease-in-out infinite alternate;
}
.cta-inner { position: relative; z-index: 1; }
.process-list li {
  box-shadow: 0 14px 36px rgba(7, 17, 46, 0.055);
}

@keyframes lab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes glass-sheen {
  0%, 42% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}
@keyframes rotate-soft {
  to { transform: rotate(360deg); }
}
@keyframes scan-line {
  0%, 100% { transform: translateX(-14%); opacity: 0.2; }
  50% { transform: translateX(44%); opacity: 0.85; }
}
@keyframes slow-drift {
  from { transform: translateX(-2rem); }
  to { transform: translateX(3rem); }
}
@keyframes pulse-lab {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 5, 0, 0.18); }
  50% { box-shadow: 0 0 0 12px rgba(255, 5, 0, 0); }
}

@media (max-width: 660px) {
  .hero::before { width: 180px; height: 180px; right: -3rem; top: 5rem; }
  .hero::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero::before,
  .hero::after,
  .main-card,
  .main-card::after,
  .floating-card,
  .product-card:hover .icon-badge,
  .category-row:hover .icon-badge,
  .cta-band::before {
    animation: none !important;
  }
}

/* Animated drawing image sections */
.visual-story {
  background: linear-gradient(135deg, #ffffff 0%, #f1f4ff 100%);
  overflow: hidden;
}
.image-story-grid {
  align-items: center;
}
.image-story-grid.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}
.image-card {
  margin: 0;
  padding: clamp(0.65rem, 1.6vw, 1rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,249,255,0.9));
  box-shadow: 0 24px 70px rgba(7, 17, 46, 0.11);
  position: relative;
  overflow: hidden;
}
.image-card::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -20%;
  width: 45%;
  background: radial-gradient(circle, rgba(255, 5, 0, 0.12), transparent 65%);
  animation: slow-drift 9s ease-in-out infinite alternate;
}
.image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #fff;
}
@media (max-width: 980px) {
  .image-story-grid.reverse {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-card::before {
    animation: none !important;
  }
}

/* SETLAB India business theme aligned with supplied HTML reference */
:root {
  --navy: #003d82;
  --blue: #0066cc;
  --deep-blue: #003d82;
  --teal: #00a8a8;
  --red: #ff6b35;
  --green: #00a8a8;
  --ink: #2d3748;
  --muted: #64748b;
  --soft: #f5f7fa;
  --line: rgba(0, 61, 130, 0.12);
  --shadow: 0 18px 55px rgba(0, 61, 130, 0.13);
}
body {
  color: var(--ink);
  background: var(--soft);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.55rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header::before {
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--red));
}
.header-inner { min-height: 86px; }
.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: rgba(0, 102, 204, 0.08);
  box-shadow: none;
}
.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 168, 168, 0.28);
}
.btn-primary:hover { background: #009090; }
.btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: rgba(0, 102, 204, 0.22);
}
.btn-accent {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.24);
}
.eyebrow {
  color: var(--teal);
  letter-spacing: 0.14em;
}
.hero {
  min-height: calc(92vh - 86px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 168, 168, 0.2) 0%, transparent 46%),
    radial-gradient(circle at 82% 80%, rgba(255, 107, 53, 0.16) 0%, transparent 42%),
    linear-gradient(135deg, var(--deep-blue) 0%, var(--blue) 100%);
  color: #fff;
}
.hero::before {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.08) 0 7deg, transparent 7deg 19deg);
}
.hero::after {
  background: linear-gradient(90deg, transparent, rgba(0, 168, 168, 0.9), transparent);
}
.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}
.hero h1,
.hero h2,
.hero p,
.hero .eyebrow {
  color: #fff;
}
.hero .eyebrow { color: rgba(255, 255, 255, 0.78); }
.highlight-text {
  display: block;
  color: #4ddede;
}
.hero-lede {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.7rem 0 0.6rem;
}
.hero-badges span,
.trust-strip span {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  min-height: auto;
}
.stat-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}
.stat-card strong {
  display: block;
  color: #4ddede;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}
.stat-card span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}
.section-white {
  background: #fff;
  backdrop-filter: none;
}
.compact-hero {
  background:
    radial-gradient(circle at 18% 26%, rgba(0, 168, 168, 0.16), transparent 26rem),
    linear-gradient(135deg, #e8f6f6 0%, #fff 100%);
}
.product-card,
.industry-card,
.value-card,
.info-card,
.contact-panel,
.enquiry-form,
.reason-card,
.mv-card,
.principal-group,
.principal-card {
  border-color: rgba(0, 102, 204, 0.12);
  box-shadow: 0 10px 30px rgba(0, 61, 130, 0.08);
}
.product-card,
.value-card,
.industry-card,
.reason-card,
.mv-card {
  padding: 1.6rem;
}
.product-card:hover,
.industry-card:hover,
.value-card:hover,
.reason-card:hover,
.category-row:hover,
.feature-tile:hover,
.principal-card:hover {
  border-color: rgba(0, 168, 168, 0.42);
  box-shadow: 0 18px 44px rgba(0, 61, 130, 0.13);
}
.icon-badge {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(0, 168, 168, 0.15));
}
.icon-badge::after {
  border-color: var(--blue);
  border-top-color: var(--red);
}
.product-card li {
  color: var(--blue);
  background: #e8f6f6;
}
.product-card a,
.text-link {
  color: var(--teal);
}
.principals-home,
.visual-story {
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 168, 168, 0.13), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #e8f6f6 100%);
}
.principal-kicker { color: var(--red); }
.split-section {
  background: linear-gradient(135deg, #e8f6f6, #ffffff);
}
.text-panel {
  border-left-color: var(--teal);
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mv-card {
  background: linear-gradient(135deg, #fff, #f5f7fa);
  border-radius: var(--radius);
}
.mv-card h2 { color: var(--blue); }
.sectors-band {
  color: #fff;
  background: linear-gradient(135deg, #2c3e50 0%, #003d82 100%);
}
.sectors-band h2,
.sectors-band p { color: #fff; }
.sectors-band .feature-tile {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}
.feature-tile span {
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 168, 168, 0.16);
}
.cta-band {
  background: linear-gradient(135deg, var(--deep-blue), var(--blue));
}
.site-footer {
  background: #2c3e50;
}
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid,
  .mission-vision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 660px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { min-height: 140px; }
}
