:root {
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-gold: #fbbf24;
  --color-emerald: #10b981;
  --color-dark: #1f2937;
  --color-bg: #f8fafc;
  --color-text: #111827;
  --color-muted: #64748b;
  --color-border: #e5e7eb;
  --radius: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.1);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, var(--color-bg) 42%, #ffffff 100%);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 56px;
  background: linear-gradient(135deg, #0a4d2f 0%, #0d5e3b 45%, #0b512d 100%);
  background-size: 180% 180%;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, padding 220ms ease, background 220ms ease;
  animation: headerShift 14s ease-in-out infinite;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 14%);
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 2;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

@keyframes headerShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.45);
  transition: width 120ms linear;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 13vw, 200px);
  height: clamp(58px, 6vw, 75px);
  overflow: hidden;
  line-height: 1;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center center;
}

.footer-brand-logo {
  width: 168px;
  height: 74px;
}

.brand-mark {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(249, 115, 22, 0.12);
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--color-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  border-radius: 999px;
  color: #f8fafc;
  padding: 12px 18px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.nav-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.nav-link:hover span {
  animation: navBounce 0.5s ease forwards;
}

.nav-link:hover span:nth-child(1) { animation-delay: 0s; }
.nav-link:hover span:nth-child(2) { animation-delay: 0.02s; }
.nav-link:hover span:nth-child(3) { animation-delay: 0.04s; }
.nav-link:hover span:nth-child(4) { animation-delay: 0.06s; }
.nav-link:hover span:nth-child(5) { animation-delay: 0.08s; }
.nav-link:hover span:nth-child(6) { animation-delay: 0.1s; }
.nav-link:hover span:nth-child(7) { animation-delay: 0.12s; }
.nav-link:hover span:nth-child(8) { animation-delay: 0.14s; }
.nav-link:hover span:nth-child(9) { animation-delay: 0.16s; }
.nav-link:hover span:nth-child(10) { animation-delay: 0.18s; }
.nav-link:hover span:nth-child(11) { animation-delay: 0.2s; }
.nav-link:hover span:nth-child(12) { animation-delay: 0.22s; }
.nav-link:hover span:nth-child(13) { animation-delay: 0.24s; }
.nav-link:hover span:nth-child(14) { animation-delay: 0.26s; }

@keyframes navBounce {
  0% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  60% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(251, 191, 36, 0.12);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link {
  white-space: nowrap;
}

.nav-link:hover {
  text-shadow: 0 1px 6px rgba(251, 191, 36, 0.22);
}

.dance-link {
  display: inline-block;
  transform-origin: center;
}

.dance-link:hover {
  animation: danceMove 0.75s ease-in-out infinite;
}

@keyframes danceMove {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  15% { transform: translateY(-2px) rotate(-2deg); }
  30% { transform: translateY(2px) rotate(2deg); }
  45% { transform: translateY(-3px) rotate(-1deg); }
  60% { transform: translateY(2px) rotate(1deg); }
  75% { transform: translateY(-1px) rotate(-2deg); }
}


.icon-pill {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #fff;
}

.icon-pill svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-dark);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: #fff;
  transition: max-height 260ms ease, border-color 260ms ease;
}

.mobile-menu.is-open {
  max-height: 520px;
  border-color: var(--color-border);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f1f5f9;
  padding: 15px 24px;
  color: var(--color-dark);
  font-weight: 800;
}

.mobile-call {
  color: var(--color-primary) !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  margin-top: -78px;
  padding-top: 78px;
  z-index: 0;
}

.hero-bg,
.hero-pattern,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1465447142348-e9952c393450?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-pattern {
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
}

.hero-section > .relative {
  position: relative;
  z-index: 3;
}

.hero-pattern {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.66) 45%, rgba(15, 23, 42, 0.3) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.45));
}

.eyebrow,
.section-kicker {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin-top: 0.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ed;
  padding: 9px 13px;
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.hero-badges svg {
  width: 16px;
  height: 16px;
  color: #fdba74;
}

.hero-word {
  display: inline-block;
  min-width: 0;
}

.hero-word.is-changing {
  animation: wordPop 420ms ease;
}

.hero-media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.hero-media:hover {
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.32);
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hero-media:hover img {
  transform: scale(1.06);
}

.plot-lines {
  position: absolute;
  inset: 12%;
  border: 2px dashed rgba(255, 255, 255, 0.78);
  transform: perspective(520px) rotateX(58deg) rotateZ(-6deg);
  transform-origin: center bottom;
  box-shadow: 0 0 0 999px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.map-pin {
  position: absolute;
  right: 12%;
  bottom: 24%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #fff;
  transform: rotate(-45deg);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.35);
  animation: pinFloat 2.6s ease-in-out infinite;
}

.map-pin svg {
  width: 34px;
  height: 34px;
  transform: rotate(45deg);
}

.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.floating-card svg {
  width: 19px;
  height: 19px;
  color: var(--color-primary);
}

.floating-card-top {
  top: 18px;
  left: 18px;
  animation: cardFloat 4s ease-in-out infinite;
}

.floating-card-bottom {
  right: 18px;
  bottom: 18px;
  animation: cardFloat 4.6s ease-in-out infinite reverse;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 26px;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(50%);
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 999px;
  background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #fff;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(249, 115, 22, 0.36);
}

.btn-secondary,
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-secondary,
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
}

.nav-cta {
  background: linear-gradient(135deg, #ffd462, #f5a623);
  color: #09210d;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  animation: ctaPulse 7.6s ease-in-out infinite;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #ffea7a, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(249, 115, 22, 0.28);
}

@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 1px solid #fed7aa;
  background: #fff;
  color: var(--color-dark);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

/* Call ringing animation removed */

/* Vertical call bob animation */
.contact-call-animate {
  position: relative;
}

.contact-call-animate {
  position: relative;
  animation: bob 1.2s cubic-bezier(.2,.9,.4,1) infinite;
  transform-origin: center;
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);
}

.contact-call-animate::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 120%;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(rgba(15,23,42,0.06), transparent 60%);
  pointer-events: none;
  animation: bob-shadow 1.2s ease-out infinite;
}

@keyframes bob {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes bob-shadow {
  0% { transform: translateX(-50%) scaleX(0.98); opacity: 0.18; }
  25% { transform: translateX(-50%) scaleX(1.12); opacity: 0.08; }
  50% { transform: translateX(-50%) scaleX(0.98); opacity: 0.18; }
  75% { transform: translateX(-50%) scaleX(1.06); opacity: 0.1; }
  100% { transform: translateX(-50%) scaleX(0.98); opacity: 0.18; }
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 0 0 32px;
}

.section-title {
  margin-top: 8px;
  color: var(--color-text);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-title::selection,
.brand-mark::selection,
.hero-word::selection {
  background: #ffedd5;
  color: var(--color-primary-dark);
}

.section-copy {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.feature-grid {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
}

.feature-card,
.service-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover,
.service-card:hover {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.feature-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.feature-card {
  padding: 24px;
}

.feature-card > svg {
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  stroke-width: 1.7;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff7ed;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px #fed7aa;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #fff;
  transform: translateY(-3px) rotate(-3deg);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.8;
}

.feature-card h2,
.service-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 950;
}

.feature-card p,
.service-card p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-top: 46px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.08), transparent 25%),
    radial-gradient(circle at 92% 24%, rgba(251, 191, 36, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-section + #services {
  padding-top: 42px;
}

.about-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: calc(var(--radius) - 3px);
  content: "";
  pointer-events: none;
}

.india-map-panel {
  display: grid;
  align-items: center;
  min-height: 640px;
  border: 1px solid rgba(249, 115, 22, 0.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.12), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(251, 191, 36, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 247, 237, 0.96) 0%, #ffffff 52%, #f8fafc 100%);
  isolation: isolate;
  perspective: 1100px;
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.india-map-panel:hover {
  border-color: rgba(249, 115, 22, 0.72);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

.india-map-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.07) 1px, transparent 1px);
  background-position: var(--map-bg-x, 0) var(--map-bg-y, 0);
  background-size: 40px 40px;
  content: "";
  opacity: 0.72;
  z-index: -2;
  transition: background-position 220ms ease;
}

.india-map-panel::after {
  inset: 22px;
  border-color: rgba(249, 115, 22, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0), rgba(249, 115, 22, 0.07) 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 36px rgba(249, 115, 22, 0.06);
  z-index: -1;
}

.map-panel-header {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(254, 215, 170, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.map-panel-header span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-panel-header svg {
  width: 15px;
  height: 15px;
}

.map-panel-header strong {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 950;
}

.map-stage {
  position: absolute;
  inset: 18px;
  z-index: 1;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  transform: none;
}

.india-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    drop-shadow(0 30px 34px rgba(15, 23, 42, 0.16))
    saturate(1.06)
    contrast(1.02);
  transition: filter 220ms ease;
  user-select: none;
  z-index: 1;
  object-position: center center;
}

.india-map-panel:hover .india-map-image {
  filter:
    drop-shadow(0 38px 38px rgba(15, 23, 42, 0.19))
    saturate(1.08)
    contrast(1.03);
}

.map-route {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.78), rgba(251, 191, 36, 0.9), transparent);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.28);
  opacity: 0.62;
  transform-origin: left center;
  animation: mapRouteGlow 3.6s ease-in-out infinite;
  pointer-events: none;
}

.map-route::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.7);
  content: "";
  transform: translate(-50%, -50%);
  animation: mapRouteDot 3.6s ease-in-out infinite;
}

.map-route-ahmedabad-delhi {
  top: 45.38%;
  left: 17.58%;
  width: 30.6%;
  transform: rotate(-60.4deg);
}

.map-route-delhi-lucknow {
  top: 27.68%;
  left: 32.67%;
  width: 17.8%;
  transform: rotate(40.4deg);
  animation-delay: 480ms;
}

.map-route-delhi-lucknow::after {
  animation-delay: 480ms;
}

.map-route-ahmedabad-lucknow {
  top: 45.38%;
  left: 17.58%;
  width: 32.2%;
  transform: rotate(-28.2deg);
  opacity: 0.48;
  animation-delay: 960ms;
}

.map-route-ahmedabad-lucknow::after {
  animation-delay: 960ms;
}

.map-pin-point {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  padding: 0;
  font-size: 0.76rem;
  font-weight: 950;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, filter 180ms ease;
}

.map-pin-point::before {
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.08);
  box-shadow:
    0 0 0 6px rgba(239, 68, 68, 0.08),
    0 0 0 14px rgba(249, 115, 22, 0.06);
  content: "";
  opacity: 0.52;
  animation: mapPulse 2.4s ease-out infinite;
  transition: opacity 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.map-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  width: min(310px, 76vw);
  border: 1px solid rgba(253, 186, 116, 0.68);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.97), rgba(31, 41, 55, 0.95)),
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.24), transparent 44%);
  color: #fff;
  padding: 13px 15px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.55;
  text-align: left;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--tooltip-x, -50%), 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
  white-space: normal;
}

.map-tooltip::after {
  position: absolute;
  bottom: -7px;
  left: var(--tooltip-arrow-left, 50%);
  width: 14px;
  height: 14px;
  background: rgba(31, 41, 55, 0.96);
  border-right: 1px solid rgba(253, 186, 116, 0.58);
  border-bottom: 1px solid rgba(253, 186, 116, 0.58);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.map-tooltip strong {
  display: block;
  margin-bottom: 4px;
  color: #fed7aa;
  font-size: 0.82rem;
  font-weight: 950;
}

.map-pin-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.map-pin-point:hover,
.map-pin-point:focus-visible,
.map-pin-point.is-active {
  filter: drop-shadow(0 12px 18px rgba(239, 68, 68, 0.22));
  transform: translate(-50%, -50%) scale(1.08);
  outline: none;
}

.map-pin-point:hover::before,
.map-pin-point:focus-visible::before,
.map-pin-point.is-active::before {
  box-shadow:
    0 0 0 8px rgba(239, 68, 68, 0.2),
    0 0 0 20px rgba(249, 115, 22, 0.1);
  opacity: 1;
  transform: scale(1.08);
}

.map-pin-point:hover .map-tooltip,
.map-pin-point:focus-visible .map-tooltip,
.map-pin-point.is-active .map-tooltip {
  opacity: 1;
  transform: translate(var(--tooltip-x, -50%), 0);
  visibility: visible;
}

.map-pin-delhi {
  top: 27.68%;
  left: 32.67%;
}

.map-pin-lucknow {
  top: 35.22%;
  left: 45.94%;
}

.map-pin-ahmedabad {
  --tooltip-x: -24%;
  --tooltip-arrow-left: 24%;
  top: 45.38%;
  left: 17.58%;
}

.experience-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 136px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow:
    0 18px 38px rgba(249, 115, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.about-content-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 237, 0.54)),
    #fff;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

/* Make content card match the height of the map column and distribute content */
.about-layout .about-content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-content-card::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
}

.experience-badge strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 11px 12px;
  color: var(--color-dark);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.check-list li:hover {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
  transform: translateX(4px);
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--color-primary);
  stroke-width: 2.2;
}

.service-card {
  padding: 30px 24px;
  text-align: center;
}

.service-card ul {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  padding: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
  list-style: none;
}

.service-card li {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.service-card li::before {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--color-primary);
  content: "";
  flex: 0 0 auto;
}

.service-card a {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 950;
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  color: var(--color-text);
  text-align: center;
}

.services-heading span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.78));
}

.services-heading span:last-child {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.78), transparent);
}

.services-heading h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.sector-grid {
  --sector-green: #06452d;
  --sector-green-deep: #032f22;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1040px);
  margin: 34px auto 0;
  padding: clamp(10px, 1.6vw, 14px);
  border: 1px solid rgba(214, 168, 76, 0.64);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 235, 0.84)),
    #fff;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sector-card {
  position: relative;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  border: 1px solid rgba(6, 69, 45, 0.28);
  border-radius: 10px;
  background: var(--sector-green);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  transform: translateY(0);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, filter 240ms ease;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.sector-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, transparent 45%, rgba(3, 47, 34, 0.36) 100%);
  content: "";
  opacity: 0.64;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.sector-card::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: clamp(42px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(3, 47, 34, 0.98), rgba(6, 69, 45, 0.94)),
    var(--sector-green);
  content: "";
  pointer-events: none;
}

.sector-card h3::before {
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  transition: left 620ms ease, opacity 220ms ease;
}

.sector-card h3 {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  z-index: 3;
  display: grid;
  min-height: clamp(42px, 5vw, 52px);
  place-items: center;
  margin: 0;
  color: #fff;
  font-size: clamp(0.68rem, 1.35vw, 0.86rem);
  font-weight: 950;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.sector-card:hover,
.sector-card:focus-within {
  border-color: rgba(249, 115, 22, 0.62);
  box-shadow:
    0 20px 38px rgba(15, 23, 42, 0.2),
    0 0 0 3px rgba(249, 115, 22, 0.08);
  filter: saturate(1.04);
  transform: translateY(-7px) scale(1.012);
}

.sector-card:hover::before,
.sector-card:focus-within::before {
  opacity: 0.36;
}

.sector-card:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.08);
}

.sector-card:hover h3::before,
.sector-card:focus-within h3::before {
  left: 108%;
  opacity: 1;
}

.core-services {
  position: relative;
  margin-top: 56px;
  padding-top: 10px;
}

.core-services-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--color-text);
  text-align: center;
}

.core-services-heading span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.72));
}

.core-services-heading span:last-child {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.72), transparent);
}

.core-services-heading h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 950;
  letter-spacing: 0;
}

.core-services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  counter-reset: core-service;
}

.core-service-item {
  position: relative;
  grid-column: span 3;
  display: flex;
  min-height: 218px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #fff;
  padding: 22px;
  text-align: left;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.core-service-item::before {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.09);
  content: "";
  transform: translate(34%, 34%);
  transition: transform 260ms ease, opacity 260ms ease;
  z-index: 0;
}

.core-service-item::after {
  color: rgba(15, 23, 42, 0.07);
  content: "0" counter(core-service);
  counter-increment: core-service;
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
  transition: color 220ms ease, transform 220ms ease;
}

.core-service-item span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.1);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.core-service-item svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.8;
}

.core-service-item h4 {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.45;
}

.core-service-item p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  max-width: 32rem;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.65;
}

.core-service-item:nth-child(1),
.core-service-item:nth-child(8) {
  grid-column: span 6;
}

.core-service-item:nth-child(8) {
  grid-column: span 12;
}

.core-service-item:nth-child(1) {
  min-height: 250px;
  border-color: rgba(249, 115, 22, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.94), rgba(255, 255, 255, 0.9)),
    #fff;
}

.core-service-item:nth-child(6)::before {
  background: rgba(16, 185, 129, 0.11);
}

.core-service-item:nth-child(7)::before {
  background: rgba(251, 191, 36, 0.14);
}

.core-service-item:nth-child(8) {
  min-height: 230px;
  background:
    linear-gradient(145deg, rgba(31, 41, 55, 0.96), rgba(15, 23, 42, 0.94)),
    #111827;
}

.core-service-item:nth-child(8) h4,
.core-service-item:nth-child(8) p {
  color: #fff;
}

.core-service-item:nth-child(8) p {
  color: #cbd5e1;
}

.core-service-item:nth-child(8)::after {
  color: rgba(255, 255, 255, 0.08);
}

.core-service-item:hover {
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.core-service-item:hover::before {
  transform: translate(20%, 20%) scale(1.16);
}

.core-service-item:hover::after {
  color: rgba(249, 115, 22, 0.16);
  transform: translateY(-3px);
}

.core-service-item:hover span {
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) rotate(-4deg);
}

.cta-section {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(234, 88, 12, 0.96)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.cta-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.22;
}

.cta-section > div {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 950;
  line-height: 1.15;
}

.cta-heading-text {
  display: inline-block;
}

.cta-question {
  display: inline-block;
  margin-left: 0.02em;
  animation: questionDropBounce 2.8s cubic-bezier(0.2, 0.85, 0.25, 1) infinite;
  transform-origin: center bottom;
  will-change: transform;
}

.cta-section p {
  margin-top: 8px;
  color: #ffedd5;
  font-weight: 700;
}

.cta-button {
  background: #fff;
  color: var(--color-primary);
}

.cta-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
}

.cta-phone svg {
  width: 22px;
  height: 22px;
}

.partners-section {
  overflow: hidden;
  padding-bottom: 44px;
  background:
    linear-gradient(180deg, #fff 0%, #fff7ed 52%, #fff 100%);
}

.partners-heading {
  position: relative;
  text-align: center;
}

.partners-heading::before {
  display: block;
  width: 92px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), #0b6b43);
  content: "";
}

.partners-heading h2 {
  margin: 0 auto;
  max-width: 1050px;
  background: linear-gradient(92deg, #0b512d 0%, var(--color-primary) 48%, #0d5e3b 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.1rem, 5.2vw, 4.65rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-heading span {
  display: block;
  background: linear-gradient(90deg, var(--color-primary), #fbbf24 35%, #0b6b43 75%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(34px, 4.5vw, 54px);
}

.partner-card {
  position: relative;
  display: grid;
  min-height: 148px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(13, 94, 59, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(13, 94, 59, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 32px rgba(15, 23, 42, 0.055);
  text-align: center;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.partner-gps {
  align-content: center;
  gap: 6px;
}

.partner-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), #0b6b43);
  content: "";
  transform: scaleX(0.3);
  transform-origin: center top;
  transition: transform 240ms ease;
}

.partner-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(13, 94, 59, 0.08);
  color: #0b512d;
  content: attr(data-focus);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 10px 14px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.partner-card strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.partner-card span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 7px;
  color: #1f6f52;
  font-size: clamp(0.92rem, 1.7vw, 1.18rem);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 220ms ease, opacity 220ms ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 237, 0.86)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(13, 94, 59, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 48px rgba(15, 23, 42, 0.12);
  outline: none;
}

.partner-card:hover::before,
.partner-card:focus-visible::before {
  transform: scaleX(1);
}

.partner-card:hover::after,
.partner-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.partner-card:hover strong,
.partner-card:focus-visible strong {
  transform: translateY(-12px) scale(1.03);
  filter: drop-shadow(0 10px 12px rgba(15, 23, 42, 0.12));
}

.partner-card:hover span,
.partner-card:focus-visible span {
  transform: translateY(-12px);
}

.partner-adani strong {
  background: linear-gradient(90deg, #0087b6 0%, #3550a4 42%, #b73c86 78%, #ef6c2f 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
}

.partner-jsw strong {
  color: #17428f;
  font-style: italic;
}

.partner-gallant strong {
  color: #b91c1c;
}

.partner-ispat strong {
  color: #334155;
}

.partner-sael strong {
  color: #148251;
}

.partner-gps strong {
  color: #0f766e;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.footer-brand .brand-mark {
  font-size: 2.65rem;
}

.footer h2 {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 950;
}

.footer ul {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer a,
.footer address,
.footer li {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer address {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.footer address p {
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.footer address svg {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-primary);
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-dark);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-links .social-link-primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.social-links .social-link-primary:hover {
  background: var(--color-primary-dark);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.linkedin-logo {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: #111827;
  color: #cbd5e1;
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-18px, -8px, 0);
  }
}

@keyframes pinFloat {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}

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

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

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes wordPop {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mapPulse {
  0% {
    box-shadow:
      0 0 0 4px rgba(239, 68, 68, 0.18),
      0 0 0 12px rgba(249, 115, 22, 0.09);
  }

  100% {
    box-shadow:
      0 0 0 10px rgba(239, 68, 68, 0),
      0 0 0 24px rgba(249, 115, 22, 0);
  }
}


@media (prefers-reduced-motion: reduce) {
  .india-map-panel::before {
    animation: none;
  }

  .india-map-image {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mapRouteGlow {
  0%,
  100% {
    opacity: 0.34;
  }

  45% {
    opacity: 0.74;
  }
}

@keyframes mapRouteDot {
  0% {
    left: 0;
    opacity: 0;
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes questionDropBounce {
  0% {
    opacity: 0;
    transform: translateY(-120px) scaleY(1.08);
  }

  22% {
    opacity: 1;
    transform: translateY(0) scaleY(0.82) scaleX(1.08);
  }

  34% {
    transform: translateY(-22px) scaleY(1.04) scaleX(0.96);
  }

  46% {
    transform: translateY(0) scaleY(0.92) scaleX(1.04);
  }

  56% {
    transform: translateY(-8px) scaleY(1.02);
  }

  66%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-media img {
    min-height: 470px;
  }
}

@media (max-width: 1180px) {
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 820px);
  }

  .sector-card {
    aspect-ratio: 1.46 / 1;
  }

  .core-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-service-item,
  .core-service-item:nth-child(1),
  .core-service-item:nth-child(8) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .services-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-heading span {
    width: min(190px, 70%);
    margin: 0 auto;
  }

  .services-heading h2 {
    font-size: 1.65rem;
  }

  .sector-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
    padding: 10px;
  }

  .sector-card {
    aspect-ratio: 1.46 / 1;
  }

  .core-services {
    margin-top: 42px;
    padding-top: 4px;
  }

  .core-services-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .core-services-heading span {
    width: min(190px, 70%);
    margin: 0 auto;
  }

  .core-services-heading h3 {
    font-size: 1.45rem;
  }

  .core-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .core-service-item {
    min-height: auto;
    padding: 20px;
  }

  .core-service-item:nth-child(1),
  .core-service-item:nth-child(8) {
    min-height: auto;
  }

  .core-service-item span {
    width: 52px;
    height: 52px;
  }

  .core-service-item svg {
    width: 29px;
    height: 29px;
  }

  .core-service-item h4 {
    font-size: 0.95rem;
  }

  .core-service-item p {
    font-size: 0.82rem;
  }

  .core-service-item::after {
    font-size: 3rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .partner-card {
    min-height: 132px;
  }

  .partners-section {
    padding-bottom: 34px;
  }

  .about-section {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .about-section + #services {
    padding-top: 34px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .brand-logo {
    width: 128px;
    height: 54px;
  }

  .brand-mark {
    font-size: 2rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .hero-section .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 280px;
    transform: none;
  }

  .hero-media img {
    min-height: 280px;
  }

  .map-pin {
    width: 58px;
    height: 58px;
  }

  .map-pin svg {
    width: 27px;
    height: 27px;
  }

  .floating-card {
    position: static;
    margin: 12px;
    max-width: none;
  }

  .floating-card-bottom {
    margin-top: -4px;
  }

  .scroll-cue,
  .plot-lines {
    display: none;
  }

  .experience-badge {
    right: 16px;
    bottom: 16px;
    width: 118px;
    padding: 16px;
  }

  .experience-badge strong {
    font-size: 2.1rem;
  }

  .india-map-panel {
    min-height: 520px;
  }

  .map-stage {
    top: 53%;
    width: min(calc(100% - 44px), 276px);
    transform: translate(-50%, -50%);
  }

  .map-panel-header {
    top: 16px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 12px;
  }

  .map-panel-header span {
    font-size: 0.64rem;
  }

  .map-panel-header strong {
    font-size: 0.86rem;
  }

  .map-pin-point {
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .map-tooltip {
    width: min(260px, 82vw);
    font-size: 0.72rem;
  }

  .map-pin-delhi {
    top: 27.68%;
    left: 32.67%;
  }

  .map-pin-lucknow {
    top: 35.22%;
    left: 45.94%;
  }

  .map-pin-ahmedabad {
    --tooltip-x: -18%;
    --tooltip-arrow-left: 18%;
    top: 45.38%;
    left: 17.58%;
  }

  .map-route-ahmedabad-delhi {
    top: 45.38%;
    left: 17.58%;
    width: 30.6%;
  }

  .map-route-delhi-lucknow {
    top: 27.68%;
    left: 32.67%;
    width: 17.8%;
  }

  .map-route-ahmedabad-lucknow {
    top: 45.38%;
    left: 17.58%;
    width: 32.2%;
  }

  .about-content-card {
    padding: 24px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg,
  .map-pin,
  .map-pin-point::before,
  .map-route,
  .map-route::after,
  .cta-question,
  .floating-card,
  .scroll-cue span {
    animation: none;
  }
}
