:root {
  --bg: #020407;
  --panel: #05070b;
  --line: rgba(0, 152, 255, 0.34);
  --blue: #0092ff;
  --cyan: #28d7ff;
  --orange: #ff7a00;
  --purple: #9b4dff;
  --text: #f3f7ff;
  --muted: #b8c2d2;
  --font: "Courier New", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: #020407;
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025), rgba(255,255,255,.025) 1px, transparent 1px, transparent 4px);
  opacity: .35;
  z-index: 50;
}
a { color: inherit; text-decoration: none; }
#matrix { position: fixed; inset: 0; z-index: -2; opacity: .25; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(80px, 10vh, 100px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 48px);
  background: linear-gradient(180deg, rgba(1, 7, 14, .92), rgba(1, 7, 14, 0));
}
.brand, .footer-brand strong { display: flex; align-items: center; gap: 10px; font: 900 clamp(24px, 2.1vw, 30px) Arial, sans-serif; }
.brand-mark { position: relative; width: 34px; height: 42px; display: inline-block; }
.globe {
  position: absolute; top: 0; left: 4px; width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 28% 28%, #31eebc, #0aa7ff 48%, #8f4cff 78%);
  box-shadow: 0 0 24px rgba(0, 170, 255, .55);
}
.legs { position: absolute; left: 0; bottom: 0; width: 36px; height: 28px; background: repeating-linear-gradient(115deg, transparent 0 5px, rgba(255,255,255,.45) 6px 7px, transparent 8px 12px); clip-path: polygon(46% 0, 57% 0, 100% 100%, 78% 100%, 51% 26%, 24% 100%, 0 100%); }
.brand-mark.large { width: 62px; height: 76px; transform: scale(1.35); transform-origin: left top; }
.brand-logo-img {
  width: clamp(130px, 12vw, 172px);
  height: auto;
  display: block;
  object-fit: contain;
}
.header-code {
  width: min(34vw, 440px);
  min-width: 300px;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--blue);
  font-size: clamp(15px, 1.35vw, 25px);
  letter-spacing: 4px;
  white-space: nowrap;
}
.header-code span {
  flex: 0 0 auto;
  min-width: 100%;
  padding-right: 48px;
  animation: header-marquee 15s linear infinite;
}
.menu-button { width: 52px; height: 42px; border: 0; background: transparent; display: grid; gap: 7px; padding: 4px; cursor: pointer; }
.menu-button span { height: 2px; background: #fff; display: block; box-shadow: 0 0 8px #fff; }

.panel { border-bottom: 1px solid rgba(96, 158, 220, .26); position: relative; }
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  padding: clamp(86px, 12vh, 118px) clamp(24px, 3vw, 55px) clamp(28px, 5vh, 44px) clamp(28px, 5vw, 94px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 7, .92) 0%, rgba(2, 4, 7, .64) 42%, rgba(2, 4, 7, .2) 100%),
    url("assets/public/hero.png") center / cover no-repeat;
  filter: contrast(1.08) brightness(.9);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 28% 44%, transparent 0 34%, rgba(2, 4, 7, .42) 72%);
  pointer-events: none;
}
.hero-copy { z-index: 2; }
h1 { font-size: clamp(38px, 4.2vw, 66px); line-height: 1.06; margin: 0 0 clamp(18px, 3vh, 28px); letter-spacing: 0; text-shadow: 0 0 18px rgba(255,255,255,.2); }
h1 span, h2 span, .eyebrow, h3 { color: var(--blue); }
.hero-copy p { color: #d8dee8; max-width: 450px; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.65; }
.tech-button, .text-link {
  display: inline-flex; align-items: center; gap: 28px; margin-top: 20px; min-width: 340px; height: 58px; padding: 0 28px;
  color: var(--blue); border: 1px solid var(--orange); border-radius: 4px; box-shadow: inset 0 0 24px rgba(0, 143, 255, .08), 0 0 22px rgba(255, 122, 0, .08);
}
.tech-button b, .text-link b { color: var(--orange); font-size: 24px; }
.purple { border-color: #b441ff; color: #a864ff; }
.scroll-cue { margin-top: clamp(22px, 4vh, 40px); display: flex; align-items: center; gap: 28px; color: #8d95a3; font-size: 13px; }
.scroll-cue i { width: 18px; height: 18px; border: 1px solid #8cbfff; border-radius: 50%; box-shadow: 0 0 12px #138eff; }

.hero-stage {
  position: relative;
  min-height: min(62vh, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr) minmax(0, .8fr); min-height: 100svh; padding: clamp(34px, 5vh, 54px) clamp(24px, 4vw, 64px); align-items: center; gap: clamp(24px, 3vw, 45px); }
.ai-face {
  width: min(100%, 430px);
  aspect-ratio: 1;
  position: relative;
  overflow: visible;
}

.ai-face img {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 118%);
  height: auto;
  object-fit: contain;
  filter: contrast(1.08) brightness(1.12)
          drop-shadow(0 0 22px rgba(210,230,255,.2));
}
.section-copy p { color: #d7dce5; line-height: 1.7; }
.eyebrow { letter-spacing: 2px; }
.text-link { border: 0; min-width: auto; padding: 0; }
.orbit { min-height: min(42vh, 360px); display: grid; place-items: center; position: relative; overflow: visible; }
.orbit img { width: min(100%, 420px); aspect-ratio: 1; height: auto; object-fit: contain; object-position: center; filter: contrast(1.08) brightness(1.08) drop-shadow(0 0 28px rgba(0, 145, 255, .24)); }
@media (min-width: 981px) {
  .orbit { margin-top: -20vh; }
}
.rings { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 33px, rgba(0,145,255,.75) 34px 35px, transparent 36px 49px, rgba(255,122,0,.5) 50px 51px); animation: spin 18s linear infinite; }

.ecosystem, .services { min-height: 100svh; padding: clamp(34px, 5vh, 54px) clamp(22px, 3vw, 52px); }
.why { padding: clamp(34px, 5vh, 54px) clamp(22px, 3vw, 52px); }
.section-head h2, .why h2 { margin: 0 0 22px; font-size: 25px; }
.section-head p { color: var(--muted); line-height: 1.45; margin: 0 0 24px 38px; }
.ecosystem-grid, .service-grid { display: grid; gap: 14px; }
.ecosystem-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.x-card, .service-card {
  border: 1px solid var(--line); border-radius: 8px; min-height: 172px; padding: 22px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 7, 11, .96), rgba(0, 0, 0, .96)); box-shadow: inset 0 0 30px rgba(0,145,255,.08);
}
.x-card { min-height: 532px; padding: 28px; }
.x-card::before, .service-card::before { content: ""; position: absolute; inset: 12px; border: solid var(--line); border-width: 1px 1px 0 0; opacity: .85; clip-path: polygon(0 0, 100% 0, 100% 18%, 96% 18%, 96% 4%, 0 4%); }
.x-card .logo-word { display: flex; align-items: center; justify-content: center; gap: 16px; font: 800 36px Arial, sans-serif; color: var(--blue); margin-top: 48px; }
.ecosystem-logo-img {
  width: min(100%, 360px);
  max-height: 160px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(0,145,255,.18));
}
.ecosystem-card-text {
  color: #d4dbe7;
  font-size: 14px;
  line-height: 1.6;
  margin: 28px 0 58px;
}
.x-card .logo-word small { color: #fff; font-size: 30px; }
.x-card .logo-word em { color: var(--orange); font-style: normal; }
.card-link { position: absolute; bottom: 24px; right: 24px; color: var(--blue); font-size: 14px; }
.services-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.services-more-link {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(2, 4, 7, .86);
  box-shadow: inset 0 0 18px rgba(0,145,255,.08);
}
.service-card { min-height: min(46vh, 430px); display: flex; flex-direction: column; }
.service-card h3 { font-size: 17px; color: #fff; line-height: 1.35; margin: 8px 0 28px; }
.num, .service-card .num { color: var(--blue); }
.service-icon {
  width: calc(100% + 12px);
  height: clamp(138px, 15vw, 188px);
  margin: -22px -6px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  background: rgba(1, 9, 20, .62);
  filter: drop-shadow(0 0 18px var(--accent));
  box-shadow: inset 0 0 34px color-mix(in srgb, var(--accent) 26%, transparent);
}
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.service-icon::before {
  inset: -50% -24%;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, .18) 48%, color-mix(in srgb, var(--accent) 32%, transparent) 54%, transparent 72%);
  transform: translateX(-78%) rotate(8deg);
  animation: service-scan 4.8s ease-in-out infinite;
}
.service-icon::after {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, transparent 36%, color-mix(in srgb, var(--accent) 18%, transparent) 76%, transparent 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34%, transparent 66%, color-mix(in srgb, var(--accent) 14%, transparent));
  animation: service-aura 3.4s ease-in-out infinite alternate;
  opacity: .85;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.16) brightness(1.18) saturate(1.08);
  transform: translateY(-6px) scale(1.02);
  animation: service-float 3.6s ease-in-out infinite;
  will-change: transform, filter;
}
.service-card:nth-child(1) .service-icon img { animation-name: service-orbit-float; }
.service-card:nth-child(2) .service-icon img { animation-name: service-brain-pulse; animation-delay: -.65s; }
.service-card:nth-child(3) .service-icon img { animation-name: service-chain-sway; animation-delay: -1.1s; }
.service-card:nth-child(4) .service-icon img { animation-name: service-stack-glow; animation-delay: -1.6s; }
.service-card:nth-child(2) .service-icon::before { animation-delay: -.7s; }
.service-card:nth-child(3) .service-icon::before { animation-delay: -1.4s; }
.service-card:nth-child(4) .service-icon::before { animation-delay: -2.1s; }
.service-card:hover .service-icon img {
  filter: contrast(1.22) brightness(1.32) saturate(1.18);
}
.service-card p { color: #c7d0dc; line-height: 1.65; }
.why { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 45px); align-items: flex-start; }
.why > .section-copy { flex: 0 1 34%; min-width: 320px; }
.why > .reason-line { flex: 1 1 58%; min-width: 620px; }
.reason-line { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: end; position: relative; }
.reason-line::before { content: ""; position: absolute; left: 0; right: 0; top: 86px; height: 50px; background: linear-gradient(90deg, transparent, rgba(0,145,255,.7), transparent); clip-path: polygon(0 60%, 10% 30%, 20% 70%, 32% 22%, 45% 65%, 58% 28%, 72% 60%, 86% 35%, 100% 54%); opacity: .75; }
.reason { text-align: center; position: relative; z-index: 1; }
.reason .circle { width: 74px; height: 74px; margin: 0 auto 62px; border: 2px solid var(--purple); border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 32px; box-shadow: 0 0 20px rgba(155,77,255,.45); }
.reason .circle svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.2));
}
.reason .dot { position: absolute; top: 92px; left: calc(50% - 8px); width: 16px; height: 16px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 20px var(--blue); }
.reason p { font: 13px Arial, sans-serif; line-height: 1.25; margin: 0; }

.footer { display: grid; grid-template-columns: 1.5fr .7fr .9fr .7fr .8fr; gap: 42px; padding: 54px 74px 54px; background: #020407; position: relative; }
.footer-logo-img {
  width: min(100%, 250px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer-brand strong { font-size: 44px; color: var(--blue); margin-top: 18px; }
.footer p, .footer a, .footer span { color: #d4dbe7; display: block; margin: 0 0 14px; font-size: 14px; font-style: normal; }
.footer h3 { font-size: 15px; margin: 0 0 22px; }

.footer-bottom-section { background: #020407; padding: 0 20px 20px; }
.footer-strip { height: 32px; border: 1px solid var(--blue); color: var(--blue); display: grid; place-items: center; clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%); margin-bottom: 20px; }

.footer-cards {
  padding: clamp(34px, 5vh, 54px) clamp(22px, 3vw, 52px);
  background: #020407;
}
.footer-cards.in-why {
  flex: 0 0 100%;
  width: 100%;
  min-height: auto;
  padding: clamp(20px, 4vh, 34px) 0 0;
  background: transparent;
  border-bottom: 0;
  --footer-progress: 0;
  --footer-shift: 0px;
  --footer-offset: 0px;
}
.footer-cards-viewport {
  position: relative;
  top: auto;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.footer-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, calc((100vw - (var(--page-pad) * 2) - 32px) / 3));
  gap: 16px;
  width: max-content;
  transform: translate3d(var(--footer-offset), 0, 0);
  transition: transform .16s ease-out;
  will-change: transform;
}
.footer-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 7, 11, .96), rgba(0, 0, 0, .96));
  box-shadow: inset 0 0 30px rgba(0,145,255,.08);
}
.footer-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: solid var(--line);
  border-width: 1px 1px 0 0;
  opacity: .85;
  clip-path: polygon(0 0, 100% 0, 100% 18%, 96% 18%, 96% 4%, 0 4%);
}
.footer-card-num {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-card h3 {
  color: #fff;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
  margin: 0 0 22px;
  letter-spacing: 0;
}
.footer-card p {
  color: #f4f7ff;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  margin: 0;
}

.detail-page { background: #020407; scrollbar-width: none; }
.detail-page::-webkit-scrollbar { width: 0; height: 0; }
.detail-header { position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 25; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; background: linear-gradient(180deg, rgba(2, 8, 18, .96), rgba(2, 8, 18, .2)); }
.small-brand { font-size: 18px; }
.small-brand .brand-mark { width: 22px; height: 27px; }
.small-brand .globe { width: 18px; height: 18px; left: 2px; }
.small-brand .legs { width: 23px; height: 18px; }
.back-home { color: var(--blue); border: 1px solid var(--line); border-radius: 4px; padding: 9px 16px; letter-spacing: 2px; box-shadow: inset 0 0 18px rgba(0, 145, 255, .12); }
.detail-main { padding-top: 80px; }
.detail-section { min-height: calc(100svh - 80px); position: relative; overflow: hidden; border-bottom: 1px solid rgba(0, 145, 255, .18); padding: clamp(28px, 4vh, 46px) clamp(18px, 3vw, 42px); background: linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, .025) 50px, transparent 51px), linear-gradient(0deg, transparent 0 49px, rgba(255, 255, 255, .018) 50px, transparent 51px), #020407; background-size: 50px 50px; }
.breadcrumb { color: #7990aa; font-size: 11px; margin-bottom: 26px; }
.breadcrumb b { color: #c760ff; }
.detail-section article { position: relative; z-index: 3; max-width: 660px; }
.detail-section h1, .detail-section h2 { margin: 0 0 22px; color: #f4f7ff; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; letter-spacing: 2px; }
.detail-section h3 { color: #fff; margin-top: 34px; }
.detail-section p, .detail-section li { color: #d2dae8; font-size: clamp(14px, 1vw, 16px); line-height: 1.75; }
.detail-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; padding-left: clamp(18px, 3vw, 42px); }
.detail-hero article { grid-column: 1; }
.detail-orbit {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: clamp(26px, 4vh, 54px);
  width: min(48vw, 620px);
  aspect-ratio: 1.15;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
}
.detail-orbit img,
.neural-face img,
.triangle-art img,
.governance-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.08) brightness(1.08) drop-shadow(0 0 26px rgba(0, 145, 255, .24));
}
.stats-bar, .quote-card, .pillar-grid { position: relative; z-index: 4; grid-column: 1 / -1; display: grid; gap: 0; border: 1px solid rgba(0, 145, 255, .28); border-radius: 7px; background: rgba(2, 4, 7, .9); box-shadow: inset 0 0 28px rgba(0, 145, 255, .08); }
.stats-bar { grid-template-columns: repeat(4, 1fr); margin-top: 34px; }
.stats-bar span { min-height: 88px; padding: 22px 34px; color: #cbd4e2; border-right: 1px solid rgba(0, 145, 255, .16); }
.stats-bar span:last-child { border-right: 0; }
.stats-bar b { display: block; color: #24a8ff; font-size: 24px; }
.stats-bar span:nth-child(3) b, .stats-bar span:nth-child(4) b { color: #bd55ff; }
.quote-card { margin-top: 16px; min-height: 74px; padding: 22px 34px; color: #f1f6ff; line-height: 1.55; }
.quote-card strong { display: block; color: #fff; }
.vision-section, .mission-section, .leadership-section { padding: 54px 32px; }
.vision-section article, .mission-section article, .leadership-section article { max-width: 650px; }
.vision-list p { display: grid; grid-template-columns: 38px 1fr; gap: 16px; margin: 14px 0; font-size: 14px; }
.vision-list span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #9b4dff; border-radius: 50%; color: #69cfff; }
.neural-face {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  top: clamp(20px, 4vh, 50px);
  width: min(48vw, 560px);
  aspect-ratio: 1;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
}
.wide { margin-top: 30px; }
.wide a { float: right; color: #b55cff; border: 1px solid var(--line); padding: 10px 18px; border-radius: 4px; }
.triangle-art {
  position: absolute;

  /* Left shift */
  right: 120px;

  /* Upar shift */
  top: -60px;

  /* Bada size */
  width: 700px;
  height: 700px;

  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
  pointer-events: none;
}

.triangle-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;

  filter: contrast(1.08) brightness(1.1)
          drop-shadow(0 0 40px rgba(155,77,255,.45));
}
.pillar-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; background: transparent; border: 0; }
.pillar-grid span { min-height: 64px; border: 1px solid rgba(0, 145, 255, .42); border-radius: 6px; padding: 14px; color: #eaf2ff; background: rgba(2, 4, 7, .9); }
.governance-orbit {
  position: absolute;
  right: clamp(34px, 9vw, 140px);
  top: clamp(18px, 4vh, 48px);
  width: min(38vw, 430px);
  aspect-ratio: 1;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
}
.leadership-section ul { padding-left: 20px; }
.pdf-float { position: fixed; right: 28px; bottom: 28px; z-index: 30; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: rgba(224, 230, 244, .65); color: #920016; font: 700 12px Arial, sans-serif; box-shadow: 0 0 18px rgba(255, 255, 255, .25); }

.services-page { background: #020407; }
.services-detail-header { gap: 20px; }
.service-breadcrumb { display: flex; align-items: center; gap: 12px; margin: 0; color: #d8e4f7; }
.service-breadcrumb a { color: #d8e4f7; }
.service-breadcrumb b { color: var(--blue); }
.services-main { min-height: 100svh; padding: 86px clamp(18px, 2vw, 36px) 28px; }
.services-hero-detail { display: grid; grid-template-columns: minmax(0, .72fr) minmax(280px, 1fr); align-items: center; gap: 28px; min-height: 150px; }
.services-intro h1 { font: 900 clamp(38px, 4vw, 64px) Arial, sans-serif; margin-bottom: 12px; }
.services-intro p:not(.eyebrow) { max-width: 520px; color: #d6dfec; line-height: 1.55; }
.pill { display: inline-flex; align-items: center; min-height: 26px; padding: 0 16px; margin: 0 0 14px; border: 1px solid rgba(155, 77, 255, .45); border-radius: 8px; background: rgba(44, 15, 88, .35); font: 700 12px Arial, sans-serif; color: #b16cff; }
.services-orbit { min-height: 160px; position: relative; overflow: hidden; display: grid; place-items: center; }
.services-orbit img { width: min(100%, 360px); aspect-ratio: 1; height: auto; object-fit: cover; object-position: center; filter: contrast(1.08) brightness(1.08) drop-shadow(0 0 26px rgba(0, 145, 255, .28)); }
.service-rings { position: absolute; left: 50%; top: 50%; width: min(88vw, 560px); height: 160px; transform: translate(-50%, -50%); border-radius: 50%; background: repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(0, 145, 255, .48) 19px 20px, transparent 21px 31px, rgba(155, 77, 255, .45) 32px 33px); opacity: .7; }
.service-core { position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%) rotate(45deg); background: linear-gradient(135deg, #0fd8ff, #7d4cff 58%, #ff7a00); box-shadow: 0 0 34px rgba(93, 83, 255, .75); clip-path: polygon(50% 0, 100% 34%, 80% 100%, 20% 100%, 0 34%); }
.service-detail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.service-detail-card { min-height: 520px; padding: 24px; border: 1px solid rgba(0, 145, 255, .44); border-radius: 8px; background: linear-gradient(180deg, rgba(5, 7, 11, .97), rgba(0, 0, 0, .98)); box-shadow: inset 0 0 26px rgba(0, 145, 255, .08); }
.service-detail-card.purple { border-color: rgba(155, 77, 255, .58); }
.service-detail-card.orange { border-color: rgba(255, 122, 0, .7); }
.service-detail-card strong { display: block; color: var(--blue); font: 800 22px Arial, sans-serif; margin-bottom: 14px; }
.service-detail-card.purple strong { color: #b464ff; }
.service-detail-card.orange strong { color: var(--orange); }
.service-detail-card h2 { min-height: 54px; margin: 14px 0 14px; font: 800 18px/1.32 Arial, sans-serif; color: #f6f8ff; }
.service-detail-card p, .service-detail-card li { color: #c8d1de; font: 14px/1.55 Arial, sans-serif; }
.service-detail-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.service-detail-card li { position: relative; padding-left: 18px; }
.service-detail-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.service-detail-card.purple li::before { background: #a85cff; box-shadow: 0 0 10px #a85cff; }
.service-detail-card.orange li::before { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.service-visual {
  height: clamp(150px, 13vw, 190px);
  margin: 0 0 18px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 7, .72);
  box-shadow: inset 0 0 30px rgba(0, 145, 255, .12), 0 0 18px rgba(0, 145, 255, .08);
}
.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.service-visual::before {
  inset: -45% -18%;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, .18) 48%, rgba(0, 216, 255, .18) 52%, transparent 72%);
  transform: translateX(-72%) rotate(8deg);
  animation: service-scan 5.6s ease-in-out infinite;
}
.service-visual::after {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(0, 145, 255, .12) 72%, transparent 100%),
    linear-gradient(90deg, rgba(0, 145, 255, .12), transparent 32%, transparent 68%, rgba(180, 65, 255, .12));
  opacity: .78;
  animation: service-aura 4s ease-in-out infinite alternate;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.16) brightness(1.18) saturate(1.08) drop-shadow(0 0 18px rgba(0, 145, 255, .28));
  transform: translateY(-6px) scale(1.02);
  animation: service-float 4.8s ease-in-out infinite;
  will-change: transform, filter;
}
.service-detail-card:nth-child(2) .service-visual img { animation-delay: -.9s; }
.service-detail-card:nth-child(3) .service-visual img { animation-delay: -1.8s; }
.service-detail-card:nth-child(4) .service-visual img { animation-delay: -2.7s; }
.service-detail-card:nth-child(2) .service-visual::before { animation-delay: -.7s; }
.service-detail-card:nth-child(3) .service-visual::before { animation-delay: -1.4s; }
.service-detail-card:nth-child(4) .service-visual::before { animation-delay: -2.1s; }
.service-detail-card:hover .service-visual img {
  filter: contrast(1.2) brightness(1.26) saturate(1.16) drop-shadow(0 0 28px rgba(0, 145, 255, .4));
}
.service-detail-card:nth-child(1) .service-visual img {
  animation-name: service-orbit-float;
}
.service-detail-card:nth-child(2) .service-visual img {
  animation-name: service-brain-pulse;
}
.service-detail-card:nth-child(3) .service-visual img {
  animation-name: service-chain-sway;
}
.service-detail-card:nth-child(4) .service-visual img {
  animation-name: service-stack-glow;
}
.services-cta { display: grid; grid-template-columns: auto minmax(220px, 1fr) auto auto; align-items: center; gap: 24px; margin-top: 20px; padding: 22px 28px; border: 1px solid rgba(0, 145, 255, .3); border-radius: 8px; background: rgba(2, 4, 7, .9); }
.rocket-mark { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #a75dff; font-size: 32px; box-shadow: inset 0 0 22px rgba(0, 145, 255, .18); }
.services-cta h2 { margin: 0 0 8px; font: 800 20px Arial, sans-serif; }
.services-cta p { margin: 0; color: #cdd7e7; font: 14px/1.45 Arial, sans-serif; }
.service-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 22px; }
.service-stats span { color: #c6d0de; font: 11px Arial, sans-serif; }
.service-stats b { display: block; color: var(--blue); font-size: 20px; }

[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
@keyframes float { 50% { transform: translate3d(0, -16px, 30px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 50% { opacity: .25; } }
@keyframes header-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (max-width: 980px) {
  .site-header { padding: 0 22px; }
  .header-code { display: none; }
  .hero, .about, .footer { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .why { padding-left: 24px; padding-right: 24px; }
  .why > .section-copy, .why > .reason-line { flex-basis: 100%; min-width: 0; }
  .hero { padding-top: 110px; }
  .hero-stage { min-height: 360px; }
  .ecosystem-grid, .service-grid, .reason-line, .footer-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-card { min-height: 360px; }
  .reason-line::before { display: none; }
  .detail-hero { grid-template-columns: 1fr; padding-left: 24px; }
  .detail-orbit, .neural-face, .triangle-art, .governance-orbit { position: relative; right: auto; top: auto; width: 100%; max-width: 480px; margin: 26px auto; }
  .stats-bar, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hero-detail { grid-template-columns: 1fr; }
  .services-orbit { order: -1; min-height: 120px; }
  .service-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-cta { grid-template-columns: auto 1fr; }
  .service-stats, .services-cta .tech-button { grid-column: 1 / -1; }
  .service-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .brand { font-size: 24px; }
  .hero { min-height: auto; }
  .tech-button { min-width: 100%; }
  .ecosystem, .services, .why { padding-left: 18px; padding-right: 18px; }
  .ecosystem-grid, .service-grid, .reason-line, .footer-cards-grid { grid-template-columns: 1fr; }
  .service-icon {
    height: clamp(190px, 56vw, 280px);
    margin: 0 -6px 20px;
  }
  .service-icon img {
    object-fit: contain;
    padding: 10px;
  }
  .footer-cards { padding-left: 18px; padding-right: 18px; }
  .footer-card { min-height: 300px; padding: 22px; }
  .footer { gap: 24px; padding-bottom: 30px; }
  .detail-section { padding-left: 18px; padding-right: 18px; }
  .detail-section p, .detail-section li { font-size: 14px; }
  .stats-bar, .pillar-grid { grid-template-columns: 1fr; }
  .stats-bar span { border-right: 0; border-bottom: 1px solid rgba(0, 145, 255, .16); }
  .back-home { padding: 8px 10px; }
  .services-main { padding-top: 78px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-card { min-height: auto; padding: 20px; }
  .service-detail-card h2 { min-height: 0; }
  .services-cta { grid-template-columns: 1fr; text-align: left; }
}

/* Sidebar Navigation */
.side-nav { position: fixed; top: 0; right: -100%; width: 100%; max-width: 420px; height: 100svh; background: rgba(4, 6, 10, 0.95); backdrop-filter: blur(10px); z-index: 100; transition: right 0.4s ease; border-left: 1px solid rgba(0, 145, 255, 0.2); display: flex; flex-direction: column; padding: 24px; overflow-y: auto; }
.side-nav.open { right: 0; }
.side-nav-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.side-nav-brand { display: flex; align-items: center; gap: 12px; }
.side-nav-brand strong { display: block; font-size: 24px; color: #fff; margin-bottom: 4px; }
.side-nav-brand span { font-size: 11px; color: #8d95a3; }
.close-menu { background: none; border: none; color: #fff; cursor: pointer; padding: 0; display: grid; place-items: center; }
.close-menu svg { transition: transform 0.3s; }
.close-menu:hover svg { transform: rotate(90deg); }
.side-nav-title { display: flex; align-items: center; gap: 12px; font-size: 11px; color: #0092ff; letter-spacing: 1px; margin-bottom: 24px; }
.side-nav-title::before { content: "|"; color: #0092ff; }
.side-nav-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0, 145, 255, 0.3), transparent); }
.side-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.side-nav-list a { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 8px; border: 1px solid transparent; transition: all 0.3s; }
.side-nav-list a:hover { background: rgba(0, 145, 255, 0.05); border-color: rgba(0, 145, 255, 0.2); box-shadow: inset 0 0 16px rgba(0, 145, 255, 0.05); }
.nav-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0, 145, 255, 0.3); display: grid; place-items: center; color: #0092ff; box-shadow: 0 0 12px rgba(0, 145, 255, 0.1); }
.side-nav-list li:nth-child(2) .nav-icon { color: #9b4dff; border-color: rgba(155,77,255,0.3); box-shadow: 0 0 12px rgba(155,77,255,0.1); }
.side-nav-list li:nth-child(3) .nav-icon { color: #28d7ff; border-color: rgba(40,215,255,0.3); box-shadow: 0 0 12px rgba(40,215,255,0.1); }
.side-nav-list li:nth-child(4) .nav-icon { color: #b441ff; border-color: rgba(180,65,255,0.3); box-shadow: 0 0 12px rgba(180,65,255,0.1); }
.side-nav-list li:nth-child(6) .nav-icon { color: #0092ff; border-color: rgba(0,145,255,0.3); }
.side-nav-list li:nth-child(7) .nav-icon { color: #b441ff; border-color: rgba(180,65,255,0.3); }
.side-nav-list li:nth-child(8) .nav-icon { color: #28d7ff; border-color: rgba(40,215,255,0.3); }
.side-nav-list a.active .nav-icon { color: #0092ff; border: 1px solid #0092ff; box-shadow: 0 0 16px rgba(0,145,255,0.4), inset 0 0 8px rgba(0,145,255,0.2); }
.nav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.nav-text strong { color: #fff; font-size: 15px; }
.nav-text span { color: #8d95a3; font-size: 12px; }
.nav-arrow { color: #8d95a3; font-size: 16px; font-family: monospace; }
.side-nav-list a:hover .nav-text strong, .side-nav-list a.active .nav-text strong { color: #0092ff; }
.side-nav-list a.active { background: rgba(4, 8, 14, 0.95); border: 1px solid rgba(255, 255, 255, 0.04); border-left: 3px solid #0092ff; box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 4px 0 16px rgba(0, 145, 255, 0.15); border-radius: 8px; }

.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* Careers Page Specific Styles */
.header-right { display: flex; align-items: center; gap: 20px; }
.careers-hero-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; margin-top: 20px; }
.hero-title { font-size: clamp(32px, 4vw, 56px); line-height: 1.1; margin: 0; }
.hero-title span { color: #0092ff; }
.laptop-graphic { position: relative; flex: 1; min-width: 300px; display: flex; justify-content: center; }
.laptop-glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, rgba(155,77,255,0.4) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; }

.icon-heading { display: flex; align-items: center; gap: 10px; font-size: 20px; color: #fff; margin-bottom: 16px; }
.info-card { padding: 24px; border: 1px solid rgba(0, 145, 255, 0.2); border-radius: 8px; background: rgba(2, 6, 12, 0.8); margin-bottom: 24px; }
.info-card.no-border { border: none; background: transparent; padding: 0; margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }
.text-small { font-size: 13px !important; color: #8d95a3 !important; }

.vacancies-bar { background: rgba(0, 145, 255, 0.1); border: 1px solid rgba(0, 145, 255, 0.3); border-radius: 6px; padding: 16px; text-align: center; color: #69cfff; font-weight: bold; margin-bottom: 32px; font-size: 16px; }

.career-board { margin: 0 0 40px; padding: 24px; border: 1px solid rgba(0, 145, 255, 0.24); border-radius: 8px; background: linear-gradient(135deg, rgba(5, 8, 14, 0.86), rgba(2, 4, 7, 0.94)); box-shadow: inset 0 0 24px rgba(0, 145, 255, 0.06); }
.career-board-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.career-board-head h1,
.career-board-head h2 { margin: 4px 0 0; font-size: clamp(22px, 2.4vw, 34px); }
.career-admin-panel { margin-bottom: 22px; padding: 18px; border: 1px dashed rgba(40, 215, 255, 0.35); border-radius: 8px; background: rgba(0, 0, 0, 0.24); }
.career-login-form,
.career-job-form { display: grid; gap: 14px; }
.career-login-form { grid-template-columns: repeat(2, minmax(0, 1fr)) auto; align-items: end; }
.career-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.career-board label { display: grid; gap: 7px; color: #dce8f7; font: 700 12px/1.35 var(--font); }
.career-board input,
.career-board textarea { width: 100%; border: 1px solid rgba(0, 145, 255, 0.28); border-radius: 6px; padding: 12px 13px; color: #f3f7ff; background: rgba(1, 4, 8, 0.85); font: 13px/1.4 Arial, sans-serif; outline: none; }
.career-board textarea { resize: vertical; min-height: 108px; }
.career-board input:focus,
.career-board textarea:focus { border-color: rgba(40, 215, 255, 0.72); box-shadow: 0 0 0 3px rgba(40, 215, 255, 0.12); }
.career-admin-message { grid-column: 1 / -1; min-height: 18px; margin: 0; color: #ffb15f; font: 700 12px/1.4 var(--font); }
.career-admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tech-button.ghost { background: transparent; color: #d8e4f7; border-color: rgba(216, 228, 247, 0.28); }
.career-job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.career-job-card { min-height: 250px; display: flex; flex-direction: column; gap: 12px; padding: 20px; border: 1px solid rgba(0, 145, 255, 0.22); border-radius: 8px; background: rgba(2, 6, 12, 0.76); }
.career-job-card h3 { margin: 0; color: #f8fbff; font-size: 17px; line-height: 1.3; }
.career-job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.career-job-meta span { padding: 6px 9px; border: 1px solid rgba(40, 215, 255, 0.26); border-radius: 999px; color: #9adfff; background: rgba(40, 215, 255, 0.07); font-size: 11px; }
.career-job-card p { margin: 0; color: #c8d1de; font-size: 13px; line-height: 1.55; }
.career-job-pay { color: #fff; font-weight: 800; }
.career-job-actions { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.career-delete-job { border: 1px solid rgba(255, 95, 95, 0.45); border-radius: 6px; padding: 9px 11px; color: #ffb8b8; background: rgba(255, 95, 95, 0.08); cursor: pointer; font: 800 12px/1 var(--font); }
.career-empty { grid-column: 1 / -1; padding: 22px; border: 1px dashed rgba(0, 145, 255, 0.28); border-radius: 8px; color: #aeb9c8; text-align: center; }

.department-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; margin-bottom: 40px; }
.dept-card { display: flex; gap: 16px; padding: 20px; border: 1px solid rgba(0, 145, 255, 0.15); border-radius: 8px; background: rgba(5, 8, 14, 0.6); transition: transform 0.3s; }
.dept-card:hover { transform: translateY(-3px); border-color: rgba(0, 145, 255, 0.3); }
.dept-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,0.3); }
.dept-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.blue-border { border: 1px solid #0092ff; color: #0092ff; box-shadow: 0 0 10px rgba(0,145,255,0.2); }
.cyan-border { border: 1px solid #28d7ff; color: #28d7ff; box-shadow: 0 0 10px rgba(40,215,255,0.2); }
.purple-border { border: 1px solid #b441ff; color: #b441ff; box-shadow: 0 0 10px rgba(180,65,255,0.2); }
.dept-content h3 { font-size: 16px; margin: 0 0 12px 0; color: #0092ff; }
.dept-content h3.cyan-text { color: #28d7ff; }
.dept-content h3.purple-text { color: #b441ff; }
.dept-content ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.dept-content li { position: relative; padding-left: 12px; font-size: 13px; color: #c8d1de; line-height: 1.4; }
.dept-content li::before { content: ""; position: absolute; left: 0; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.7; }

.appraisal-box { display: flex; gap: 32px; align-items: center; margin-top: 24px; padding: 24px; border: 1px dashed rgba(0, 145, 255, 0.3); border-radius: 8px; background: rgba(2, 5, 10, 0.5); flex-wrap: wrap; }
.appraisal-graphic { position: relative; width: 120px; height: 120px; display: grid; place-items: center; flex-shrink: 0; margin: 0 auto; }
.rings-small { position: absolute; inset: 0; border: 1px dashed rgba(0, 145, 255, 0.5); border-radius: 50%; animation: spin 15s linear infinite; }
.rings-small::before { content: ""; position: absolute; inset: -15px; border: 1px solid rgba(155, 77, 255, 0.3); border-radius: 50%; }
.appraisal-list { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.appraisal-list p { display: flex; gap: 12px; align-items: flex-start; margin: 0; font-size: 14px; }
.check-icon { width: 18px; height: 18px; stroke: #0092ff; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }

.why-apply-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }
.why-card { padding: 20px; border: 1px solid rgba(0, 145, 255, 0.2); border-radius: 8px; background: linear-gradient(180deg, rgba(5,8,14,0.8), rgba(2,4,7,0.9)); text-align: left; }
.why-icon { width: 36px; height: 36px; color: #b441ff; margin-bottom: 12px; }
.why-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.why-card p { font-size: 13px; line-height: 1.5; margin: 0; color: #c8d1de; }

@media (max-width: 768px) {
  .careers-hero-content { flex-direction: column; text-align: center; }
  .career-board { padding: 18px; }
  .career-board-head { align-items: flex-start; flex-direction: column; }
  .career-login-form,
  .career-form-grid { grid-template-columns: 1fr; }
  .department-grid { grid-template-columns: 1fr; }
  .appraisal-box { flex-direction: column; text-align: center; }
  .appraisal-list p { text-align: left; }
}

/* India Page Specific Styles */
.india-hero { margin-bottom: 40px; }
.giant-title { font-size: clamp(48px, 6vw, 86px); margin: 0 0 10px; color: #fff; text-shadow: 0 0 24px rgba(0, 145, 255, 0.4), 0 0 48px rgba(0, 145, 255, 0.2); }
.glowing-subtitle { font-size: clamp(16px, 2vw, 22px); color: #0092ff; letter-spacing: 4px; font-weight: bold; text-shadow: 0 0 12px rgba(0, 145, 255, 0.4); margin: 0; }
.text-center { text-align: center; }
.mt-5 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.india-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}
.india-article p { font-size: 16px; margin-bottom: 16px; line-height: 1.6; color: #d8e4f7; }
.india-intro-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.india-intro-visual img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: contrast(1.08) brightness(1.1) drop-shadow(0 0 34px rgba(0,145,255,.28));
}

.india-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.focus-card { padding: 24px; border: 1px solid rgba(0, 145, 255, 0.2); border-radius: 8px; background: linear-gradient(135deg, rgba(5,8,14,0.8), rgba(2,4,7,0.9)); transition: transform 0.3s, border-color 0.3s; }
.focus-card:hover { transform: translateY(-4px); border-color: rgba(0, 145, 255, 0.4); }
.focus-icon { width: 48px; height: 48px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(0,0,0,0.4); }
.focus-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.orange-border { border: 1px solid #ff7a00; color: #ff7a00; box-shadow: 0 0 12px rgba(255,122,0,0.2); }
.blue-text { color: #0092ff; }
.orange-text { color: #ff7a00; }
.focus-content h3 { font-size: 18px; margin: 0 0 12px 0; color: #fff; }
.focus-card p { font-size: 14px; color: #c8d1de; line-height: 1.5; margin: 0; }
.india-stats { margin-top: 48px; justify-content: center; }

/* Terms Page Specific Styles */
.terms-title { font-size: clamp(24px, 3vw, 32px); color: #fff; letter-spacing: 4px; position: relative; display: inline-block; margin-bottom: 24px; text-shadow: 0 0 10px rgba(0,145,255,0.5); }
.terms-title-glow { width: 40px; height: 3px; background: #0092ff; margin: 0 auto; box-shadow: 0 0 12px #0092ff, 0 0 24px #0092ff; border-radius: 2px; }

.terms-container { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; margin-bottom: 50px; }
.terms-card { display: flex; gap: 20px; padding: 24px; border: 1px solid rgba(0, 145, 255, 0.2); border-radius: 8px; background: linear-gradient(135deg, rgba(5,8,14,0.6), rgba(2,4,7,0.8)); align-items: flex-start; transition: border-color 0.3s; }
.terms-card:hover { border-color: rgba(0, 145, 255, 0.4); }
.terms-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,145,255,0.4); display: grid; place-items: center; flex-shrink: 0; color: #0092ff; background: rgba(0,145,255,0.05); }
.terms-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.terms-content h3 { font-size: 16px; color: #0092ff; margin: 0 0 10px 0; letter-spacing: 1px; }
.terms-content p { font-size: 13px; color: #c8d1de; line-height: 1.6; margin: 0; }

.terms-divider { display: flex; align-items: center; justify-content: center; margin: 10px 0; position: relative; }
.terms-divider span { color: #0092ff; font-size: 12px; font-weight: bold; padding: 0 16px; background: #020407; position: relative; z-index: 2; letter-spacing: 1px; }
.terms-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,145,255,0.3); z-index: 1; }

.terms-contact-box { display: flex; justify-content: space-between; align-items: center; padding: 24px 32px; border: 1px solid rgba(0, 145, 255, 0.3); border-radius: 8px; background: rgba(2,4,7,0.9); margin-top: 20px; flex-wrap: wrap; gap: 20px; }
.terms-contact-left { display: flex; gap: 20px; align-items: center; }
.terms-contact-icon { width: 60px; height: 60px; }
.terms-contact-left h3 { margin: 0 0 6px 0; color: #fff; font-size: 18px; }
.terms-contact-left p { margin: 0; font-size: 13px; color: #8d95a3; max-width: 400px; }
.contact-btn { border: 1px solid rgba(0,145,255,0.5); padding: 10px 24px; color: #0092ff; border-radius: 4px; transition: all 0.3s; font-size: 14px; }
.contact-btn:hover { background: rgba(0,145,255,0.1); }

@media (max-width: 768px) {
  .india-intro { grid-template-columns: 1fr; }
  .india-intro-visual { min-height: 220px; order: -1; }
  .terms-card { flex-direction: column; gap: 16px; }
  .terms-icon { margin-bottom: 0; }
  .terms-contact-box { flex-direction: column; align-items: flex-start; }
}

/* Dynamic responsive polish */
:root {
  --page-pad: clamp(18px, 4vw, 74px);
  --section-y: clamp(34px, 7vh, 72px);
}

img, svg, canvas { max-width: 100%; }

.site-header,
.detail-header {
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

body.scrolled .site-header,
body.scrolled .detail-header {
  background: rgba(2, 8, 18, .92);
  border-bottom: 1px solid rgba(0, 145, 255, .18);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.hero,
.about,
.ecosystem,
.services,
.why,
.detail-section,
.services-main {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.ecosystem-grid,
.service-grid,
.service-detail-grid,
.footer-cards-grid,
.india-grid,
.department-grid,
.why-apply-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.x-card,
.service-card,
.service-detail-card,
.footer-card,
.focus-card,
.dept-card,
.terms-card,
.why-card,
.info-card {
  transform: translateZ(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}

.x-card:hover,
.service-card:hover,
.service-detail-card:hover,
.footer-card:hover,
.focus-card:hover,
.dept-card:hover,
.terms-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 145, 255, .62);
  box-shadow: inset 0 0 30px rgba(0,145,255,.1), 0 18px 42px rgba(0,0,0,.28);
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(var(--lift, 0));
}

.tilt-card:hover { --lift: -6px; }

.hero-copy h1,
.detail-section h1,
.services-intro h1,
.giant-title {
  overflow-wrap: anywhere;
}

.reason-line {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.footer-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.footer-cards.in-why .footer-cards-grid {
  grid-template-columns: repeat(6, calc((100vw - (var(--page-pad) * 2) - 32px) / 3));
  width: max-content;
}

.footer-card p {
  overflow-wrap: anywhere;
}

.footer {
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, .7fr));
}

.visible.x-card,
.visible.service-card,
.visible.service-detail-card,
.visible.footer-card,
.visible.focus-card,
.visible.terms-card,
.visible.dept-card {
  animation: card-rise .65s ease both;
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-stage {
    min-height: clamp(220px, 42vh, 420px);
  }

  .about {
    min-height: auto;
  }

  .ai-face {
    max-width: 360px;
    min-height: 260px;
  }

  .ai-face img {
    position: relative;
    left: auto;
    width: min(100%, 430px);
  }

  .orbit {
    min-height: 260px;
  }

  .why > .section-copy,
  .why > .reason-line {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  body::before { opacity: .22; }

  .site-header,
  .detail-header {
    height: 80px;
    padding: 0 16px;
  }

  .brand,
  .footer-brand strong {
    font-size: 24px;
  }

  .menu-button {
    width: 46px;
  }

  .hero {
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .tech-button,
  .text-link {
    min-width: 0;
    width: 100%;
    justify-content: space-between;
  }

  .section-head p {
    margin-left: 0;
  }

  .x-card {
    min-height: 280px;
  }

  .service-card {
    min-height: auto;
  }

  .reason .circle {
    margin-bottom: 24px;
  }

  .reason .dot,
  .reason-line::before {
    display: none;
  }

  .footer-card {
    padding: 22px;
  }

  .footer-cards.in-why {
    min-height: auto;
  }

  .footer-cards-viewport {
    position: relative;
    top: auto;
    overflow: visible;
  }

  .footer-cards.in-why .footer-cards-grid {
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 42px 18px 82px;
  }

  .side-nav {
    max-width: none;
    padding: 20px 16px;
  }

  .side-nav-list a {
    padding: 14px;
  }

  .nav-text span {
    display: none;
  }

  .services-cta,
  .stats-bar,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .service-stats {
    grid-template-columns: 1fr;
  }

  .detail-section {
    overflow: visible;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    transform: scale(.85);
    transform-origin: left center;
  }

  .brand {
    gap: 4px;
  }

  .footer-card h3,
  .service-detail-card h2,
  .terms-content h3 {
    font-size: 17px;
  }

  .footer-card p,
  .detail-section p,
  .detail-section li {
    font-size: 13px;
  }
}

.detail-page .detail-section,
.detail-hero,
.vision-section,
.mission-section,
.leadership-section,
.india-content,
.careers-content {
  min-height: auto;
}

.detail-section {
  padding-top: clamp(24px, 3vh, 34px);
  padding-bottom: clamp(24px, 3vh, 34px);
}

.vision-section,
.mission-section,
.leadership-section {
  padding-top: clamp(28px, 4vh, 40px);
  padding-bottom: clamp(28px, 4vh, 40px);
}

.services-main {
  min-height: auto;
  padding-bottom: 0;
}

.terms-container {
  margin-bottom: 0;
}

.india-hero {
  margin-bottom: 20px;
}

.about,
.ecosystem,
.services {
  min-height: auto;
}

.mt-5 {
  margin-top: 32px;
}

@keyframes service-float {
  0%,
  100% {
    transform: translateY(-6px) scale(1.02);
  }
  50% {
    transform: translateY(-18px) scale(1.055);
  }
}

@keyframes service-scan {
  0%,
  18% {
    transform: translateX(-72%) rotate(8deg);
    opacity: 0;
  }
  36% {
    opacity: .85;
  }
  62%,
  100% {
    transform: translateX(72%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes service-aura {
  from {
    opacity: .45;
    box-shadow: inset 0 0 18px rgba(0, 145, 255, .12);
  }
  to {
    opacity: .9;
    box-shadow: inset 0 0 34px rgba(180, 65, 255, .16);
  }
}

@keyframes service-orbit-float {
  0%,
  100% {
    transform: translateY(-7px) scale(1.03) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) scale(1.06) rotate(2.5deg);
  }
}

@keyframes service-brain-pulse {
  0%,
  100% {
    transform: translateY(-8px) scale(1.02);
    filter: contrast(1.16) brightness(1.14) saturate(1.08) drop-shadow(0 0 16px rgba(180, 65, 255, .28));
  }
  50% {
    transform: translateY(-16px) scale(1.07);
    filter: contrast(1.22) brightness(1.3) saturate(1.18) drop-shadow(0 0 30px rgba(180, 65, 255, .5));
  }
}

@keyframes service-chain-sway {
  0%,
  100% {
    transform: translateY(-7px) scale(1.03) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-17px) scale(1.06) rotate(2deg);
  }
}

@keyframes service-stack-glow {
  0%,
  100% {
    transform: translateY(-7px) scale(1.02);
    filter: contrast(1.16) brightness(1.14) saturate(1.1) drop-shadow(0 0 18px rgba(255, 122, 0, .3));
  }
  50% {
    transform: translateY(-16px) scale(1.055);
    filter: contrast(1.22) brightness(1.32) saturate(1.2) drop-shadow(0 0 34px rgba(255, 122, 0, .58));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.ecosystem-showcase {
  min-height: 100svh;
  padding: clamp(34px, 5vh, 54px) clamp(22px, 3vw, 52px);
  overflow: hidden;
  background: #020407;
}

.ecosystem-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 145, 255, .1), transparent 42%),
    radial-gradient(circle, rgba(74, 164, 255, .34) 1px, transparent 1px);
  background-size: auto, 72px 72px;
  opacity: .18;
}

.ecosystem-title,
.ecosystem-system-grid {
  position: relative;
  z-index: 1;
}

.ecosystem-section-head {
  position: relative;
  z-index: 1;
}

.ecosystem-section-head,
.ecosystem-title,
.ecosystem-system-grid {
  top: 38px;
}

.ecosystem-title {
  width: max-content;
  margin: 0 auto 22px;
  color: #f7fbff;
  font: 900 clamp(22px, 2vw, 30px)/1.2 var(--font);
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(0, 145, 255, .18);
}

.ecosystem-title img {
  display: block;
  width: clamp(110px, 9vw, 158px);
  height: auto;
}

.ecosystem-line {
  display: none;
}

.ecosystem-system-grid {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-system-card {
  min-height: min(46vh, 430px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 7, 11, .96), rgba(0, 0, 0, .96));
  text-align: left;
  box-shadow: inset 0 0 30px rgba(0,145,255,.08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}

.ecosystem-system-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: solid var(--line);
  border-width: 1px 1px 0 0;
  opacity: .85;
  clip-path: polygon(0 0, 100% 0, 100% 18%, 96% 18%, 96% 4%, 0 4%);
  pointer-events: none;
}

.ecosystem-system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 145, 255, .62);
  box-shadow: inset 0 0 30px rgba(0,145,255,.1), 0 18px 42px rgba(0,0,0,.28);
}

.ecosystem-product-card {
  min-height: min(43.7vh, 409px);
  padding: 21px;
}

.ecosystem-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 24px;
  position: relative;
  z-index: 1;
}

.ecosystem-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #7bdcff;
  border: 1px solid rgba(0, 145, 255, .34);
  border-radius: 50%;
  background: rgba(0, 145, 255, .08);
  box-shadow: 0 0 14px rgba(0, 145, 255, .14);
}

.ecosystem-card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(69, 194, 255, .28));
}

.ecosystem-system-card h3 {
  margin: 0;
  color: #fff;
  font: 800 17px/1.35 var(--font);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, .16);
}

.ecosystem-item {
  min-height: 68px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  background: rgba(2, 4, 7, .62);
  box-shadow: inset 0 0 18px rgba(0, 145, 255, .08);
  min-width: 0;
}

.ecosystem-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  text-decoration: none;
}

.ecosystem-brand-logo,
.ecosystem-product-logo {
  place-items: center;
}

.ecosystem-logo-link img {
  display: block;
  max-width: 90%;
  max-height: 90px;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.ecosystem-brand-logo img,
.ecosystem-product-logo img {
  margin: 0 auto;
  transform-origin: center;
}

.ecosystem-brand-logo,
.ecosystem-operation-logo {
  height: 177px;
  flex: none;
  padding: 13px 16px;
}

.ecosystem-product-logo {
  height: 177px;
  flex: none;
  padding: 13px 16px;
}

.ecosystem-brand-logo img,
.ecosystem-operation-logo img {
  max-width: 96%;
  max-height: 146px;
}

.ecosystem-product-logo.ecosystem-logo-link img {
  max-width: 96%;
  max-height: 146px;
}

.ecosystem-product-logo-square img {
  width: min(96%, 210px);
  height: 146px;
  object-fit: contain;
}

.ecosystem-item strong {
  display: block;
  color: #8bcfff;
  font: 800 clamp(13px, 1vw, 17px)/1.25 var(--font);
}

.ecosystem-item span {
  display: block;
  margin-top: 6px;
  color: #f0f5fb;
  font: 700 clamp(10px, .76vw, 12px)/1.35 var(--font);
}

@media (max-width: 760px) {
  .ecosystem-showcase {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ecosystem-section-head h2 {
    font-size: 20px;
  }

  .ecosystem-title {
    margin: 0 auto 18px;
    font-size: 20px;
  }

  .ecosystem-system-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ecosystem-system-card {
    min-height: auto;
    padding: 20px;
    border-radius: 6px;
  }

  .ecosystem-card-heading {
    gap: 12px;
    margin-bottom: 14px;
  }

  .ecosystem-card-icon {
    width: 38px;
    height: 38px;
  }

  .ecosystem-card-icon svg {
    width: 19px;
    height: 19px;
  }

  .ecosystem-system-card h3 {
    font-size: 16px;
  }

  .ecosystem-item {
    min-height: 58px;
    margin-top: 10px;
    padding: 12px 14px;
  }

  .ecosystem-item strong {
    font-size: 12px;
  }

  .ecosystem-item span {
    font-size: 9px;
  }

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 20px 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.fbb-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fbb-text {
  color: #8b95a5;
  font-size: 13px;
}

.fbb-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  color: #d4dbe7;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.fbb-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.fbb-copy {
  color: #8b95a5;
  font-size: 12px;
}

@media (max-width: 768px) {
  .fbb-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom-bar {
    padding-bottom: 20px;
  }
  .ecosystem-logo-link img {
    transform: none !important;
  }
}

/* New footer bottom section */
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer-bottom-text {
  color: #8b95a5;
  font-size: 14px;
}
.footer-bottom-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-bottom-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.footer-strip {
  text-align: center;
  color: #8b95a5;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 0;
  }
}

body.menu-open, html.menu-open {
  overflow: hidden !important;
}
