:root {
  --ink: #152027;
  --muted: #5d6a72;
  --line: #d8e1e6;
  --paper: #f6f7f2;
  --white: #ffffff;
  --brand-blue: #063d91;
  --brand-blue-light: #0b79d0;
  --navy: #071b55;
  --navy-deep: #05133d;
  --gold: #caa24a;
  --red: #b94032;
  --green: #1f7a57;
  --mist: #edf2f7;
  --shadow: 0 24px 70px rgba(7, 27, 85, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
input,
textarea,
button {
  font: inherit;
}

.section-anchor {
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 242, 0.95);
  border-bottom: 1px solid rgba(216, 225, 230, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(246, 247, 242, 0.99);
  box-shadow: 0 14px 38px rgba(7, 27, 85, 0.1);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  width: min(430px, 48vw);
  padding: 8px 0;
}

.brand img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34444d;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-blue);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--brand-blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 61, 0.95) 0%, rgba(5, 19, 61, 0.78) 45%, rgba(5, 19, 61, 0.26) 100%),
    linear-gradient(0deg, rgba(5, 19, 61, 0.76) 0%, rgba(5, 19, 61, 0) 40%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 1;
  animation: heroMainFade 12s ease-in-out infinite, heroImageDrift 14s ease-in-out infinite alternate;
}

.hero-media img:nth-child(2) {
  opacity: 0;
  animation: heroImageFade 12s ease-in-out infinite, heroImageDrift 14s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 42px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 260px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #181207;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.outline {
  width: 100%;
  margin-top: 12px;
  color: var(--brand-blue);
  background: var(--white);
  border-color: rgba(6, 61, 145, 0.28);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.status-dot {
  display: block;
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.35;
}

.status-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #63d681;
  box-shadow: 0 0 0 6px rgba(99, 214, 129, 0.14);
}

.status-dot:hover {
  color: var(--white);
}

.mini-metrics {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.mini-metrics div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  font-size: 32px;
  line-height: 1;
}

.mini-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-band {
  width: 100%;
  background: var(--mist);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: end;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.company-card p,
.blog-strip p,
.about-story p,
.service-grid p,
.care-panel p,
.contact-copy p,
.form-output {
  margin: 0;
  color: var(--muted);
}

.company-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 42px;
  position: relative;
}

.company-card,
.blog-strip article,
.about-story,
.about-stats article,
.service-grid article,
.care-panel,
.client-grid article,
.director-grid article,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 32, 39, 0.06);
}

.company-card {
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  position: relative;
}

.company-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(6, 61, 145, 0.08);
  border-radius: 50%;
}

.story-feature span {
  color: var(--brand-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.company-card h2 {
  margin-top: 0;
}

.company-card:nth-child(2) {
  background: var(--navy-deep);
  color: var(--white);
}

.company-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.76);
}

.blog-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.narration-media {
  min-height: 260px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.narration-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  animation: none;
}

.narration-media div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(5, 19, 61, 0.92), rgba(5, 19, 61, 0));
}

.narration-media span,
.narration-media strong {
  display: block;
}

.narration-media span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.narration-media strong {
  max-width: 580px;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.16;
}

.blog-strip article {
  padding: 28px;
  border-left: 5px solid var(--gold);
  overflow: hidden;
}

.blog-strip span {
  color: var(--red);
  font-weight: 800;
  display: inline-block;
  animation: blogLabelMove 2.8s ease-in-out infinite;
}

.blog-strip h3,
.about-story h3,
.service-grid h3,
.director-grid h3,
.care-panel h3 {
  margin: 14px 0 10px;
  line-height: 1.2;
}

.blog-strip h3 {
  animation: blogTextRise 3.4s ease-in-out infinite;
}

.blog-strip p {
  animation: blogTextFade 3.4s ease-in-out infinite;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-bottom: 56px;
}

.about-story {
  padding: 34px;
}

.typing-panel {
  min-height: 372px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.background-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.background-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82));
}

.background-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: backgroundSlide 15s ease-in-out infinite;
}

.background-slider img:nth-child(2) {
  animation-delay: 5s;
}

.background-slider img:nth-child(3) {
  animation-delay: 10s;
}

.typing-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(6, 61, 145, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.typing-panel h3,
.typing-panel p {
  position: relative;
  z-index: 2;
}

.typing-panel p.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  background: var(--brand-blue);
  vertical-align: -0.12em;
  animation: cursorBlink 0.75s step-end infinite;
}

.about-story p + p {
  margin-top: 16px;
}

.about-stats {
  display: grid;
  gap: 14px;
}

.about-stats article {
  padding: 26px;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--brand-blue);
  font-size: 34px;
  line-height: 1;
}

.about-stats article:first-child {
  animation: statPop 1.7s ease-in-out infinite;
}

.about-stats article:first-child strong {
  animation: numberPop 1.7s ease-in-out infinite;
}

.map-link-card {
  padding: 0;
}

.map-link-card a {
  min-height: 100%;
  display: grid;
  align-content: center;
  padding: 26px;
}

.about-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.project-grid,
.story-list,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-grid span,
.story-list span,
.industry-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--red);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.service-map {
  margin: 24px 0 58px;
  padding: 34px;
  border: 1px solid rgba(6, 61, 145, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 32, 39, 0.06);
}

.map-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0;
}

.map-copy {
  margin-bottom: 22px;
}

.map-copy h2 {
  max-width: 760px;
}

.map-copy p:last-child {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
}

.india-map-card {
  width: min(100%, 940px);
  min-height: 0;
  aspect-ratio: 1.2 / 1;
  position: relative;
  border-radius: 8px;
  background: var(--white);
  border: 0;
  overflow: hidden;
}

.india-map-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: none;
}

.work-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.work-image-slider,
.care-image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.work-image-slider {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.work-image-slider img,
.care-image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: workImageFade 16s ease-in-out infinite;
}

.work-image-slider img:nth-child(1),
.care-image-slider img:nth-child(1) {
  opacity: 1;
}

.work-image-slider img:nth-child(2),
.care-image-slider img:nth-child(2) {
  animation-delay: 4s;
}

.work-image-slider img:nth-child(3),
.care-image-slider img:nth-child(3) {
  animation-delay: 8s;
}

.work-image-slider img:nth-child(4) {
  animation-delay: 12s;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 18px;
}

.moving-stories span {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.moving-stories span.is-swapping {
  opacity: 0;
  transform: scale(0.94);
}

.story-feature {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-deep);
}

.story-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: none;
}

.story-feature div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(5, 19, 61, 0.92), rgba(5, 19, 61, 0));
}

.story-feature span {
  color: var(--gold);
}

.story-feature h3 {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.15;
}

.client-trust {
  width: min(1420px, calc(100% - 64px));
  padding-top: 76px;
}

.trust-heading {
  align-items: center;
}

.trust-heading h2 {
  max-width: 680px;
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 0.98;
}

.trust-heading > p {
  max-width: 560px;
  justify-self: end;
  color: #536578;
  font-size: 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.trust-grid article,
.workforce-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 27, 85, 0.08);
}

.trust-grid article {
  min-height: 210px;
  padding: 34px;
}

.feature-icon,
.category-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #061b36;
  color: #e6bd57;
  position: relative;
}

.feature-icon::before,
.category-icon::before {
  content: "";
  display: block;
  background: #e6bd57;
}

.icon-coordinate::before {
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.icon-coordinate::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 19px;
  left: 26px;
  border-radius: 50%;
  background: #061b36;
}

.icon-flash::before {
  width: 24px;
  height: 30px;
  clip-path: polygon(48% 0, 15% 52%, 45% 52%, 34% 100%, 86% 34%, 56% 34%);
}

.icon-industry::before {
  width: 30px;
  height: 22px;
  clip-path: polygon(0 42%, 18% 56%, 18% 30%, 42% 48%, 42% 20%, 100% 20%, 100% 100%, 0 100%);
}

.icon-shield::before {
  width: 27px;
  height: 31px;
  clip-path: polygon(50% 0, 88% 12%, 82% 70%, 50% 100%, 18% 70%, 12% 12%);
}

.trust-grid h3,
.workforce-grid h3 {
  margin: 26px 0 12px;
  color: #03101f;
  font-size: 22px;
  line-height: 1.2;
}

.trust-grid p {
  margin: 0;
  color: #536578;
  font-size: 19px;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-grid article:hover,
.client-grid article:hover,
.director-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(6, 61, 145, 0.22);
  box-shadow: 0 24px 58px rgba(7, 27, 85, 0.13);
}

.service-grid article::before {
  content: "";
  width: 52px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--gold));
}

.industries-panel {
  margin-top: 42px;
  padding: 34px;
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.industries-panel h2 {
  color: var(--white);
}

.industries-panel .industry-grid {
  margin-top: 24px;
}

.industries-panel .industry-grid span {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.care-panel {
  margin-top: 18px;
  padding: 28px;
  border-left: 5px solid var(--green);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.care-image-slider {
  width: 100%;
  height: 150px;
  box-shadow: none;
}

.care-image-slider img {
  opacity: 1;
  animation: none;
  object-fit: contain;
  background: #f8fbff;
}

.workforce-categories {
  width: min(1480px, calc(100% - 64px));
  padding-top: 78px;
  padding-bottom: 94px;
}

.workforce-categories .section-heading h2 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.98;
}

.workforce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.workforce-grid article {
  min-height: 170px;
  padding: 34px;
}

.category-icon::before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.workforce-grid h3 {
  margin-bottom: 0;
}

.clients-band {
  background: #f0f4f8;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.client-grid article {
  min-height: 190px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.logo-slot {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(6, 61, 145, 0.4);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--brand-blue);
  font-weight: 800;
}

.logo-slot img {
  display: none;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.logo-slot img.is-ready {
  display: block;
}

.client-grid strong {
  display: block;
  line-height: 1.2;
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.directors {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1480px) / 2));
  padding-right: max(24px, calc((100% - 1480px) / 2));
  background:
    radial-gradient(circle at 80% 88%, rgba(11, 121, 208, 0.16), transparent 34%),
    linear-gradient(135deg, #06152a 0%, #0c2b49 100%);
  color: var(--white);
}

.directors .section-heading {
  color: var(--white);
}

.directors .section-heading h2 {
  max-width: 920px;
}

.director-grid article {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: start;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(35, 65, 96, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 52px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.director-photo {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #07131f;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.director-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.director-grid article:hover .director-photo img {
  transform: scale(1.04);
}

.directors .director-grid article:hover {
  border-color: rgba(225, 189, 96, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 66px rgba(0, 0, 0, 0.28);
}

.director-grid h3 {
  margin: 26px 0 4px;
  color: #e1bd60;
  font-size: 24px;
  line-height: 1.14;
}

.director-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  font-weight: 800;
}

.director-grid article > span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.director-social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.director-social:hover {
  transform: translateY(-2px);
  background: var(--brand-blue-light);
}

.contact {
  width: min(1480px, calc(100% - 40px));
  padding: 70px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 36px;
  align-items: stretch;
}

.contact-copy {
  padding: 54px 40px;
  border-radius: 8px;
  background: #061426;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: 1.02;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-details span {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.contact-details strong {
  display: block;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
  font-size: 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button.secondary-light {
  background: var(--white);
  color: #020b16;
  border-color: var(--white);
}

.enquiry-form {
  padding: 44px 34px;
}

.form-intro {
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-intro strong,
.form-intro span {
  display: block;
}

.form-intro strong {
  color: #101923;
  font-size: 34px;
  line-height: 1.1;
}

.form-intro span {
  margin-top: 4px;
  color: var(--muted);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #101923;
  font-size: 20px;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
  font-size: 18px;
  font-weight: 700;
}

.enquiry-form textarea {
  min-height: 190px;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(6, 61, 145, 0.1);
}

.form-output {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #eef4f1;
  white-space: pre-line;
  font-weight: 700;
}

.form-output.active {
  display: block;
}

.floating-enquiry {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(6, 61, 145, 0.32);
  font-weight: 800;
  animation: softPulse 2.8s ease-in-out infinite;
}

.footer {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  background: #061426;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.footer-inner {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.8fr;
  gap: 70px;
}

.footer-brand img {
  width: 245px;
  height: 86px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: var(--white);
}

.footer-brand p {
  margin: 0;
  margin-top: 26px;
  font-size: 20px;
}

.footer h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-social div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-55px);
}

.slide-right {
  transform: translateX(55px);
}

.slide-left.is-visible,
.slide-right.is-visible {
  transform: translateX(0);
}

body.is-loaded .hero-copy {
  animation: heroTextRise 0.9s ease both;
}

body.is-loaded .hero-panel {
  animation: heroPanelFloat 1s ease 0.16s both;
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelFloat {
  from {
    opacity: 0;
    transform: translateX(24px) translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.09) translateX(-18px);
  }
}

@keyframes heroMainFade {
  0%,
  44% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0.22;
  }

  96%,
  100% {
    opacity: 1;
  }
}

@keyframes heroImageFade {
  0%,
  46%,
  100% {
    opacity: 0;
  }

  54%,
  86% {
    opacity: 0.82;
  }
}

@keyframes shopFloorMove {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-18px);
  }
}

@keyframes backgroundSlide {
  0% {
    opacity: 1;
    transform: scale(0.96);
  }

  7%,
  26% {
    opacity: 1;
    transform: scale(1);
  }

  34%,
  100% {
    opacity: 0.05;
    transform: scale(0.96);
  }
}

@keyframes workImageFade {
  0%,
  22% {
    opacity: 1;
    transform: scale(1.02);
  }

  30%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 42px rgba(6, 61, 145, 0.32);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(6, 61, 145, 0.42);
  }
}

@keyframes blogLabelMove {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes blogTextRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes blogTextFade {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes statPop {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 40px rgba(21, 32, 39, 0.06);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 26px 64px rgba(6, 61, 145, 0.2);
  }
}

@keyframes numberPop {
  0%,
  100% {
    transform: scale(1);
    color: var(--brand-blue);
  }

  50% {
    transform: scale(1.12);
    color: var(--red);
  }
}


@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 112px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(5, 19, 61, 0.95), rgba(5, 19, 61, 0.76));
  }

  .hero-content,
  .section-heading.split,
  .company-intro,
  .blog-strip,
  .about-grid,
  .story-grid,
  .map-layout,
  .work-showcase,
  .service-grid,
  .trust-grid,
  .workforce-grid,
  .project-grid,
  .story-list,
  .industry-grid,
  .client-grid,
  .director-grid,
  .contact-layout,
  .care-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 72px 0 86px;
  }

  .hero-panel {
    max-width: 540px;
  }

  .india-map-card {
    width: min(100%, 760px);
  }

  .india-map-card > img {
    min-height: 0;
  }

  .brand {
    width: min(360px, 70vw);
  }

  .company-card {
    animation: none;
  }

  .client-trust,
  .workforce-categories,
  .contact {
    width: min(100% - 32px, 760px);
  }

  .trust-heading > p {
    justify-self: start;
  }

  .trust-heading h2,
  .workforce-categories .section-heading h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 94px;
  }

  .brand img {
    height: 68px;
  }

  .nav-links {
    top: 94px;
  }

  .section-anchor {
    scroll-margin-top: 94px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  .contact-details {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .company-card,
  .blog-strip article,
  .about-story,
  .service-map,
  .industries-panel,
  .care-panel,
  .service-grid article,
  .trust-grid article,
  .workforce-grid article,
  .contact-copy,
  .enquiry-form {
    padding: 24px;
  }

  .client-trust,
  .workforce-categories,
  .contact {
    width: min(100% - 32px, 560px);
    padding-top: 64px;
  }

  .trust-heading h2,
  .workforce-categories .section-heading h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .trust-heading > p,
  .trust-grid p,
  .contact-details span,
  .contact-details strong,
  .enquiry-form label {
    font-size: 17px;
  }

  .feature-icon,
  .category-icon {
    width: 54px;
    height: 54px;
  }

  .contact-layout {
    gap: 18px;
  }

  .enquiry-form input,
  .enquiry-form textarea {
    font-size: 16px;
  }

  .contact-actions .button {
    min-width: 0;
    flex: 1 1 150px;
  }

  .directors {
    padding-left: 16px;
    padding-right: 16px;
  }

  .director-grid article {
    padding: 24px;
  }

  .director-grid h3 {
    font-size: 22px;
  }

  .director-grid p {
    font-size: 18px;
  }

  .director-grid article > span {
    font-size: 16px;
  }

  .story-feature {
    min-height: 360px;
  }

  .narration-media strong {
    font-size: 22px;
  }

  .care-image-slider {
    height: 150px;
  }

  .story-feature h3 {
    font-size: 23px;
  }

  .footer {
    padding: 44px 0;
  }

  .footer-inner {
    width: min(100% - 32px, 560px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-links,
  .footer-social {
    gap: 12px;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .floating-enquiry,
  .enquiry-form,
  .footer a {
    display: none;
  }

  body {
    background: var(--white);
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: var(--white);
  }

  .hero-media {
    display: none;
  }

  .hero-content,
  .section {
    width: 100%;
    padding: 24px 0;
    color: var(--ink);
  }
}

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

  .reveal-item,
  .slide-left,
  .slide-right {
    opacity: 1;
    transform: none;
  }
}
