:root {
  --navy: #000a1e;
  --blue: #002147;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #e2e8f0;
  --paper: #f7f8fb;
  --white: #ffffff;
  --orange: #ff8a00;
  --orange-dark: #9a4d00;
  --shadow: 0 18px 45px rgba(0, 10, 30, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.menu-toggle {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 10, 30, 0.16);
}

.button.primary {
  background: var(--orange);
  color: #1f1300;
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: 560px;
  padding: clamp(52px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #fbf8ff 0%, #f7f8fb 58%, #fff1dc 100%);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 10, 30, 0.05), rgba(255, 138, 0, 0.15)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1500&q=82") center/cover;
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 290px;
  padding: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  content: "Accuracy focused BPO and IT support from Bhadravathi";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0dc;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.accent {
  color: var(--orange-dark);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.section.muted {
  background: var(--paper);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stats div {
  min-height: 130px;
  padding: 28px;
  background: var(--navy);
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--orange);
  font-size: 30px;
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.split .feature-grid,
.split .why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.05);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}

.service-card.featured img {
  opacity: 0.72;
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card .body {
  padding: 24px;
}

.service-card p,
.feature-card p,
.client-card p,
.copy-block p {
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card,
.why-grid div {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card strong,
.why-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 20px;
  line-height: 1.2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.image-panel {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
}

.portrait-panel {
  max-width: 430px;
}

.portrait-panel img {
  height: 520px;
}

.impact-card {
  margin-top: 18px;
  padding: 20px;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.client-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.client-logo {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 112px;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
}

.client-logo img {
  max-height: 82px;
  object-fit: contain;
}

.contact-panel,
.form-panel {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: var(--white);
}

.contact-info {
  padding: 34px;
  background: var(--navy);
  color: var(--white);
}

.contact-info h2 {
  color: var(--white);
}

.contact-info p,
.contact-info a,
.contact-info span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-style: normal;
}

.form-panel {
  padding: 34px;
  background: var(--white);
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: clamp(42px, 6vw, 68px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #fbf8ff 0%, #f7f8fb 70%, #fff0dc 100%);
  text-align: center;
}

.page-hero > * {
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  text-align: center;
}

.page-hero .lead {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.map-panel {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.cta-band {
  margin: 0 clamp(18px, 5vw, 72px) clamp(46px, 7vw, 84px);
  padding: clamp(32px, 5vw, 58px);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #071936);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 1fr));
  gap: 28px;
  padding: 52px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.site-footer h3 {
  color: var(--white);
  font-size: 18px;
}

.copyright {
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .service-grid,
  .feature-grid,
  .why-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .hero,
  .split,
  .split.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    align-items: center;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 20px;
    border-top: 1px solid var(--line);
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .feature-grid,
  .why-grid,
  .client-grid,
  .stats,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 320px;
  }

  .image-panel img {
    height: 340px;
  }

  .portrait-panel img {
    height: 430px;
  }
}
