/* =========================================
   SUDHIR BROTHERS — about.css
   Shared by about-sb.html & about-gpi.html
   ========================================= */

/* ── Page hero (reuses same pattern as products page) ── */
.about-page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: 72px;
  overflow: hidden;
}
.about-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,46,0.92) 0%, rgba(88,109,166,0.68) 100%);
}
.about-page-hero .grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.about-page-hero .page-hero-content {
  position: relative;
  z-index: 2;
}
.about-page-hero .section-label { color: rgba(255,255,255,0.60); margin-bottom: 8px; }
.about-page-hero .page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 14px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.about-page-hero .page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  animation: fadeUp 0.7s 0.3s ease both;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── About sibling nav (About SB / About GPI tabs) ── */
.about-subnav {
  background: var(--white);
  border-bottom: 2px solid var(--grey-light);
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.about-subnav .container {
  display: flex;
  gap: 0;
}
.about-subnav a {
  display: block;
  padding: 16px 24px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--grey-mid);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.about-subnav a:hover { color: var(--blue); }
.about-subnav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 600;
}

/* ── Main content wrapper ── */
.about-main {
  padding: 80px 0 100px;
  background: var(--white);
}

/* ── Two-column intro: text left, stat cards right ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

/* ── Body copy ── */
.about-body-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--blue);
  display: inline-block;
}
.about-body-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--grey-dark);
  margin-bottom: 18px;
}
.about-body-text p:last-child { margin-bottom: 0; }
.about-body-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── Stat sidebar cards ── */
.about-stat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 144px; /* navbar + subnav */
}
.about-stat-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px 22px;
  border-left: 4px solid var(--blue);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ── Certifications / badge strip ── */
.about-certs {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-light);
}
.about-certs-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-certs-heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1.5px solid rgba(88,109,166,0.25);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cert-badge:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88,109,166,0.3);
}
.cert-badge svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ── Clientele section ── */
.about-clients {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-light);
}
.about-clients-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-clients-heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-pill {
  padding: 8px 16px;
  background: var(--off-white);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-dark);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.client-pill:hover {
  background: rgba(88,109,166,0.08);
  color: var(--navy);
  border-color: rgba(88,109,166,0.3);
}

/* ── GPI Merger callout (used on About SB page) ── */
.merger-callout {
  margin-top: 64px;
  background: var(--blue);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.merger-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.merger-callout-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.merger-callout-badge {
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.merger-callout-badge .badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 8px;
}
.merger-callout-badge .badge-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
}
.merger-callout-badge .badge-sub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}
.merger-callout-text p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  margin-bottom: 20px;
}
.merger-callout-text strong { color: var(--white); }

/* ── Capabilities highlight (used on About GPI) ── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.capability-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px 20px;
  border-top: 3px solid var(--blue);
  transition: all var(--transition);
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.capability-card svg {
  width: 28px; height: 28px;
  stroke: var(--blue);
  fill: none;
  margin-bottom: 12px;
}
.capability-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.capability-card p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA band ── */
.about-cta {
  background: var(--navy);
  padding: 60px 0;
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.60); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stat-sidebar { flex-direction: row; flex-wrap: wrap; position: static; }
  .about-stat-card { flex: 1 1 160px; }
  .merger-callout-inner { grid-template-columns: 1fr; gap: 24px; }
  .merger-callout-badge { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-page-hero { height: 280px; }
  .about-cta-inner { flex-direction: column; text-align: center; }
  .capability-grid { grid-template-columns: 1fr; }
  .merger-callout { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .about-main { padding: 56px 0 72px; }
  .about-stat-card { flex: 1 1 100%; }
  .certs-grid .cert-badge { width: 100%; justify-content: center; }
}
