/* ==========================================================================
   GRC Consulting - Custom Styles
   Aligned to Kshipra's design system
   ========================================================================== */
/* ── CSS VARIABLES ── */
:root {
  --navy: #111827;
  --navy-light: #1f2937;
  --navy-dark: #0B0F19;
  --red: #FF4D5A;
  --red-light: #e03e4b;
  --white: #F8FAFC;
  --off-white: #f4f6fb;
  --gold: #F5A623;
  --text-muted: #94A3B8;
  --glass: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(11, 15, 25, 0.85);
  --nav-bg-scrolled: rgba(11, 15, 25, 0.97);
  --grid-line: rgba(255, 255, 255, 0.07);
}
.light-mode {
  --navy-dark: #FFFFFF;
  --navy: #F8F9FC;
  --navy-light: #EFF2F7;
  --white: #0F172A;
  --text-muted: #64748B;
  --off-white: #F8F9FC;
  --glass: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 23, 42, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.90);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
  --grid-line: rgba(15, 23, 42, 0.04);
}
/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
/* ── GLOBAL ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
/* ── SECTIONS & CONTAINER ── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 auto 0.75rem;
  width: max-content;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
}
/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 90, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 77, 90, 0.1);
}
/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255, 77, 90, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 77, 90, 0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 90, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0b0f19 0%, #070a12 100%);
}
.light-mode .hero-bg {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 90, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 166, 35, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}
.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 90, 0.15);
  border: 1px solid rgba(255, 77, 90, 0.3);
  color: #ffacb2;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease both;
}
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fade-up 0.8s ease 0.1s both;
}
.animated-word-wrap {
  display: inline-block;
  vertical-align: top;
  color: var(--red);
  position: relative;
  height: 1.2em;
  overflow: hidden;
}
.word-rotator {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.word-rotator .word {
  height: 1.2em;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 90%;
  animation: fade-up 0.8s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: fade-up 0.8s ease 0.3s both;
}
.cta-trust-line {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fade-up 0.8s ease 0.35s both;
  flex-wrap: wrap;
}
/* Executive Dashboard Visual */
.grc-dashboard {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}
.dash-header {
  background: #0b0f19;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}
.dash-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 201, 63, 0.15);
  color: #27c93f;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.live-indicator .dot {
  width: 6px;
  height: 6px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(39, 201, 63, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0); }
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
}
.dash-widget {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: slideInCard 0.5s ease backwards;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.dash-widget:nth-child(1) { animation-delay: 0.3s; }
.dash-widget:nth-child(2) { animation-delay: 0.45s; }
.dash-widget:nth-child(3) { animation-delay: 0.6s; }
.dash-widget:nth-child(4) { animation-delay: 0.75s; }
.dash-widget:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 90, 0.35);
}
.widget-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.widget-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 3px;
}
.widget-trend {
  font-size: 0.7rem;
  color: #94A3B8;
}
.text-medium { color: var(--gold); }
.text-success { color: #27c93f; }
.text-warning { color: var(--red); }
.dash-footer {
  border-top: 1px solid var(--glass-border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b0f19;
  position: relative;
  z-index: 2;
}
.dash-connectors path {
  stroke-dasharray: 10, 10;
  animation: pulse-line 4s linear infinite;
}
@keyframes pulse-line {
  0% { stroke-dashoffset: 0; opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { stroke-dashoffset: 20; opacity: 0.3; }
}
.floating-dashboard {
  animation: float-dash 6s ease-in-out infinite;
}
@keyframes float-dash {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes slideInCard {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* ── OVERVIEW GRID ── */
.overview-section { background: var(--navy-dark); }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.overview-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overview-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 77, 90, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 77, 90, 0.2);
}
.overview-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.overview-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* ── WHO WE SERVE (Audience) ── */
.audience-section { background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s, border-color 0.3s;
}
.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 90, 0.35);
}
.audience-icon {
  background: var(--red);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 77, 90, 0.3);
}
.audience-content h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.audience-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
/* ── CONSULTING SERVICES (Grid) ── */
.services-section { background: var(--navy); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}
.service-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
/* ── CONSULTING FRAMEWORK (Lifecycle) ── */
.framework-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  overflow: hidden;
}
.lifecycle-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 1;
  margin: 5rem auto;
}
/* Center piece "GRC" */
.lifecycle-container::after {
  content: 'GRC';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 77, 90, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 0 40px rgba(255, 77, 90, 0.15), inset 0 0 20px rgba(255, 77, 90, 0.05);
  letter-spacing: 2px;
  z-index: 0;
}
.lifecycle-circle {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotate-circle 40s linear infinite;
  z-index: 1;
}
@keyframes rotate-circle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.lifecycle-node {
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  /* Anti-rotation to keep labels upright */
  animation: anti-rotate-circle 40s linear infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  z-index: 10;
  cursor: pointer;
}
.lifecycle-node:hover {
  border-color: var(--red);
  background: rgba(17, 24, 39, 1);
  box-shadow: 0 0 30px rgba(255, 77, 90, 0.3), inset 0 0 20px rgba(255, 77, 90, 0.15);
}
.lifecycle-node:hover .node-icon {
  transform: translateY(-2px) scale(1.1);
  text-shadow: 0 0 10px rgba(255, 77, 90, 0.5);
}
@keyframes anti-rotate-circle {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.rotating-connector {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--red);
  filter: drop-shadow(0 -4px 12px rgba(255, 77, 90, 0.9));
  animation: fast-spin 4s linear infinite;
  z-index: 5;
  pointer-events: none;
  background-color: transparent;
  box-shadow: none;
}
@keyframes fast-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Positioning 5 nodes mathematically on the circle (r=50%, node=110px) */
.lifecycle-node.node-1 { top: calc(0% - 55px); left: calc(50% - 55px); }
.lifecycle-node.node-2 { top: calc(34.55% - 55px); left: calc(97.55% - 55px); }
.lifecycle-node.node-3 { top: calc(90.45% - 55px); left: calc(79.35% - 55px); }
.lifecycle-node.node-4 { top: calc(90.45% - 55px); left: calc(20.65% - 55px); }
.lifecycle-node.node-5 { top: calc(34.55% - 55px); left: calc(2.45% - 55px); }
.node-icon {
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.node-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rotating-connector {
  position: absolute;
  inset: 20px;
  border: 2px solid transparent;
  border-top-color: rgba(255, 77, 90, 0.5);
  border-right-color: rgba(255, 77, 90, 0.2);
  border-radius: 50%;
  animation: rotate-circle 10s linear infinite;
}
/* ── BUSINESS OUTCOMES ── */
/* ── BUSINESS OUTCOMES ── */
.outcomes-section {
  background: transparent;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.outcomes-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 90, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.outcomes-section .section-eyebrow,
.outcomes-section .section-title {
  color: #fff;
  position: relative;
  z-index: 1;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.metric-card {
  background: rgba(17, 24, 39, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px;
  padding: 2.5rem 2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}
.metric-card:hover {
  transform: translateY(-8px);
  background: rgba(20, 28, 45, 0.8) !important;
  border-color: rgba(255, 77, 90, 0.3) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 77, 90, 0.1);
}
.metric-card.prominent {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: rgba(17, 24, 39, 0.9) !important;
  border: 1px solid rgba(255, 77, 90, 0.4) !important;
  box-shadow: 0 0 40px rgba(255, 77, 90, 0.15);
  transform: scale(1.05);
}
.metric-card.prominent:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: var(--red) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 77, 90, 0.25);
}
.metric-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1.5rem;
  background: rgba(255, 77, 90, 0.08);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.metric-card:hover .metric-icon {
  transform: scale(1.15);
  background: rgba(255, 77, 90, 0.15);
}
.metric-card.prominent .metric-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  background: rgba(255, 77, 90, 0.12);
}
.metric-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.metric-card.prominent .metric-label {
  font-size: 1.4rem;
  color: var(--red);
}
.metric-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-card.prominent {
    grid-column: 1 / -1;
    grid-row: auto;
    transform: none;
  }
  .metric-card.prominent:hover {
    transform: translateY(-8px);
  }
  .metrics-network-bg {
    display: none;
  }
}
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
/* ── INDUSTRIES ── */
.industries-section {
  background: var(--navy-dark);
  text-align: center;
}
.industry-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.industry-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.industry-chip i {
  color: var(--red);
}
.industry-chip:hover {
  border-color: rgba(255, 77, 90, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
/* ── WHY KSHIPRA ── */
.why-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: left;
}
.why-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 15px;
}
.why-card h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* ── FAQ ── */
.faq-section {
  background: var(--navy);
  text-align: center;
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open, .faq-item.active {
  border-color: rgba(255, 77, 90, 0.35);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 77, 90, 0.15);
  border: 1px solid rgba(255, 77, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon, .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a, .faq-item.active .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
/* ── FINAL CTA ── */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 77, 90, 0.12) 0%, transparent 70%);
}
.cta-box {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-h1, .hero-sub, .hero-eyebrow { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-btns, .trust-strip { justify-content: center; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .lifecycle-container { max-width: 300px; }
  .lifecycle-node { width: 70px; height: 70px; }
  .lifecycle-node.node-1 { top: -35px; left: calc(50% - 35px); }
  .lifecycle-node.node-2 { top: 18%; right: -20px; }
  .lifecycle-node.node-3 { bottom: 5%; right: 5%; }
  .lifecycle-node.node-4 { bottom: 5%; left: 5%; }
  .lifecycle-node.node-5 { top: 18%; left: -20px; }
  .node-icon { font-size: 1rem; }
  .node-label { font-size: 0.6rem; }
}
@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
}
/* ── FOOTER ── */
.footer {
  background-color: #060608 !important;
  /* Absolute darkest anchor */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 2rem 20px;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.lp-nav-logo img {
  height: 44px;
  width: auto;
}
.lp-nav-logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.lp-nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-col h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--white);
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icons a {
  color: var(--white);
  font-size: 1rem;
  background: var(--navy);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  background: rgba(255, 77, 90, 0.1);
}
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.copyright a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}
.copyright a:hover {
  color: var(--red-light);
  text-decoration: underline;
}
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* ── COLORFUL ICONS ── */
/* Why GCA */
.why-card:nth-child(4n+1) .why-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.why-card:nth-child(4n+2) .why-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.why-card:nth-child(4n+3) .why-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}
.why-card:nth-child(4n+4) .why-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}
/* Details */
.detail-card:nth-child(4n+1) .detail-icon {
  color: #3b82f6;
}
.detail-card:nth-child(4n+2) .detail-icon {
  color: #10b981;
}
.detail-card:nth-child(4n+3) .detail-icon {
  color: #8b5cf6;
}
.detail-card:nth-child(4n+4) .detail-icon {
  color: #f59e0b;
}
/* Skills */
.skill-chip:nth-child(6n+1) .si {
  color: #3b82f6;
}
.skill-chip:nth-child(6n+2) .si {
  color: #10b981;
}
.skill-chip:nth-child(6n+3) .si {
  color: #8b5cf6;
}
.skill-chip:nth-child(6n+4) .si {
  color: #f59e0b;
}
.skill-chip:nth-child(6n+5) .si {
  color: #ec4899;
}
.skill-chip:nth-child(6n+6) .si {
  color: #14b8a6;
}
/* Benefits */
.benefit-card:nth-child(4n+1) .b-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.benefit-card:nth-child(4n+2) .b-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.benefit-card:nth-child(4n+3) .b-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}
.benefit-card:nth-child(4n+4) .b-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}
/* Careers */
.career-card:nth-child(6n+1) .c-icon {
  color: #3b82f6;
}
.career-card:nth-child(6n+2) .c-icon {
  color: #10b981;
}
.career-card:nth-child(6n+3) .c-icon {
  color: #8b5cf6;
}
.career-card:nth-child(6n+4) .c-icon {
  color: #f59e0b;
}
.career-card:nth-child(6n+5) .c-icon {
  color: #ec4899;
}
.career-card:nth-child(6n+6) .c-icon {
  color: #14b8a6;
}
/* Roadmap Trophy */
.road-outcome .trophy {
  color: var(--gold);
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 1.25rem;
  }
  #stats {
    padding: 2.5rem 1.25rem;
  }
  .why-icon,
  .detail-icon,
  .b-icon {
    display: none !important;
  }
  .timeline-steps {
    gap: 2rem;
  }
}
/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* ── COLORFUL ICONS ── */
/* Why GCA */
.why-card:nth-child(4n+1) .why-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.why-card:nth-child(4n+2) .why-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.why-card:nth-child(4n+3) .why-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}
.why-card:nth-child(4n+4) .why-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}
/* Details */
.detail-card:nth-child(4n+1) .detail-icon {
  color: #3b82f6;
}
.detail-card:nth-child(4n+2) .detail-icon {
  color: #10b981;
}
.detail-card:nth-child(4n+3) .detail-icon {
  color: #8b5cf6;
}
.detail-card:nth-child(4n+4) .detail-icon {
  color: #f59e0b;
}
/* Skills */
.skill-chip:nth-child(6n+1) .si {
  color: #3b82f6;
}
.skill-chip:nth-child(6n+2) .si {
  color: #10b981;
}
.skill-chip:nth-child(6n+3) .si {
  color: #8b5cf6;
}
.skill-chip:nth-child(6n+4) .si {
  color: #f59e0b;
}
.skill-chip:nth-child(6n+5) .si {
  color: #ec4899;
}
.skill-chip:nth-child(6n+6) .si {
  color: #14b8a6;
}
/* Benefits */
.benefit-card:nth-child(4n+1) .b-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.benefit-card:nth-child(4n+2) .b-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.benefit-card:nth-child(4n+3) .b-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}
.benefit-card:nth-child(4n+4) .b-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}
/* Careers */
.career-card:nth-child(6n+1) .c-icon {
  color: #3b82f6;
}
.career-card:nth-child(6n+2) .c-icon {
  color: #10b981;
}
.career-card:nth-child(6n+3) .c-icon {
  color: #8b5cf6;
}
.career-card:nth-child(6n+4) .c-icon {
  color: #f59e0b;
}
.career-card:nth-child(6n+5) .c-icon {
  color: #ec4899;
}
.career-card:nth-child(6n+6) .c-icon {
  color: #14b8a6;
}
/* Roadmap Trophy */
.road-outcome .trophy {
  color: var(--gold);
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 1.25rem;
  }
  #stats {
    padding: 2.5rem 1.25rem;
  }
  .why-icon,
  .detail-icon,
  .b-icon {
    display: none !important;
  }
  .timeline-steps {
    gap: 2rem;
  }
}
/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }
}
.apply-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--navy);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.15);
}
/* Style custom selects with drop arrow background */
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--text-muted);
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.form-control option {
  background-color: var(--navy);
  color: var(--white);
}
.light-mode .form-control option {
  background-color: var(--white);
  color: var(--navy);
}
.w-100 {
  width: 100%;
}
.form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-footer i {
  margin-right: 6px;
}
.success-msg {
  display: none;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #10B981;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}
.success-msg i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}
.success-msg h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.success-msg p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}
@media (max-width: 600px) {
  .apply-container {
    padding: 24px;
    border-radius: 16px;
  }
}\n/* ── FINAL CTA ── */
#final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 77, 90, 0.12) 0%, transparent 70%);
}
#final-cta .container {
  position: relative;
  z-index: 2;
}
#final-cta .section-title {
  margin: 0 auto 1rem;
  max-width: 680px;
}
#final-cta .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}
#final-cta .hero-btns {
  justify-content: center;
}
/* ── RESPONSIVE HERO ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .cta-trust-line {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ── ADDITIONAL MOBILE FIXES ── */
@media (max-width: 900px) {
  /* Prevent nowrap text from blowing out screen */
  .hero-h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
  }
  
  /* Ensure grids wrap */
  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Fix dashboards */
  .grc-dashboard, .floating-dashboard {
    max-width: 100%;
    overflow: hidden;
  }
  
  .dash-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── GLOBAL MOBILE FIXES (V2) ── */
@media (max-width: 900px) {
  /* Fix FAQ split layout forced by inline styles (GCA & Customised Training) */
  #faq .container, 
  .faq-section .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
@media (max-width: 768px) {
  /* 1. Red Strip (Stats Grid) - Force Vertical */
  .stats-grid,
  #stats .container > div,
  #stats .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* 2. Fix Dark Cards / Impact Boxes Touching Screen Borders */
  .details-grid,
  .impact-grid,
  .capability-grid {
    padding: 0 10px !important; /* Ensure they don't touch screen edges */
    grid-template-columns: 1fr !important;
  }
  .detail-card,
  .impact-card,
  .glass-card {
    margin-bottom: 1rem !important;
  }
  /* Ensure containers have padding */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}
/* ═══════════════════════════════════════════════════
   LIGHT MODE OVERRIDES — GRC Consulting
   ═══════════════════════════════════════════════════ */
/* Business Outcomes: headings were hardcoded white */
.light-mode .outcomes-section .section-eyebrow,
.light-mode .outcomes-section .section-title {
  color: #0F172A !important;
}
/* Metric cards have hardcoded dark rgba backgrounds */
.light-mode .metric-card {
  background: rgba(248, 249, 252, 0.95) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}
.light-mode .metric-card:hover {
  background: #FFFFFF !important;
  border-color: rgba(255, 77, 90, 0.3) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 77, 90, 0.08) !important;
}
.light-mode .metric-card.prominent {
  background: #FFFFFF !important;
  border-color: rgba(255, 77, 90, 0.35) !important;
  box-shadow: 0 4px 24px rgba(255, 77, 90, 0.1) !important;
}
.light-mode .metric-label {
  color: #0F172A;
}
/* Lifecycle nodes have hardcoded dark backgrounds */
.light-mode .lifecycle-node {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}
.light-mode .lifecycle-node:hover {
  background: #FFFFFF !important;
  border-color: var(--red) !important;
}
.light-mode .node-label {
  color: #0F172A;
}
/* The GRC center label */
.light-mode .lifecycle-container::after {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0F172A !important;
  border-color: rgba(255, 77, 90, 0.3) !important;
}
.light-mode .lifecycle-circle {
  border-color: rgba(15, 23, 42, 0.12);
}
/* FAQ hover */
.light-mode .faq-q:hover {
  background: rgba(15, 23, 42, 0.04);
}
/* btn-outline fix in light mode */
.light-mode .btn-outline {
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.3);
}
.light-mode .btn-outline:hover {
  border-color: var(--red);
  background: rgba(255, 77, 90, 0.05);
}
/* Service card watermark number */
.light-mode .service-num {
  color: rgba(15, 23, 42, 0.05);
}
/* Overview icon */
.light-mode .overview-icon {
  background: rgba(255, 77, 90, 0.08);
}

/* ==========================================================================
   Kshipra Arc Pattern – Shared Brand Motif
   Premium concentric arc background for all Kshipra course hero sections.
   Origin varies per page; animation, layering, and palette are shared.
   ==========================================================================

   Usage:
   Place <div class="kshipra-arcs" data-origin="bottom-left|top-right|center-right|center"> </div>
   inside the hero <section> as the first child (before z-index content).
   ========================================================================== */

/* ── Keyframes ── */

/* Layer 2: gentle horizontal drift */
@keyframes arc-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3px, -2px) scale(1.002); }
  66%  { transform: translate(-2px, 3px) scale(0.999); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Layer 2 variant: alternate phase */
@keyframes arc-drift-alt {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-3px, 2px) scale(0.998); }
  70%  { transform: translate(2px, -3px) scale(1.002); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Layer 3: breath – scale between 98% and 100% */
@keyframes arc-breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.6; }
  50%       { transform: scale(1.00); opacity: 1; }
}

/* Opacity pulse for accent arc */
@keyframes arc-glow-pulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.55; }
}

/* Travelling pulse along an arc path */
@keyframes arc-travel {
  0%   { stroke-dashoffset: 1200; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { stroke-dashoffset: 0;    opacity: 0; }
}

/* Dot float */
@keyframes arc-dot-float {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(-4px); opacity: 1; }
}

/* ── Container ── */
.kshipra-arcs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.kshipra-arcs svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── Edge fade mask – applied via a sibling overlay div ── */
.kshipra-arcs::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Fade edges so arcs bleed off naturally */
  background: radial-gradient(
    ellipse 80% 70% at var(--arc-fade-cx, 50%) var(--arc-fade-cy, 50%),
    transparent 55%,
    var(--arc-bg-color, #0B0F19) 100%
  );
  pointer-events: none;
}

/* ── Layer 1: Background arcs (static, very low opacity) ── */
.arc-layer-bg {
  opacity: 1;
}

.arc-layer-bg path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* ── Layer 2: Mid arcs (slow drift) ── */
.arc-layer-mid {
  animation: arc-drift 22s ease-in-out infinite;
  transform-origin: var(--arc-origin-x, 0%) var(--arc-origin-y, 100%);
}

.arc-layer-mid-b {
  animation: arc-drift-alt 28s ease-in-out infinite;
  transform-origin: var(--arc-origin-x, 0%) var(--arc-origin-y, 100%);
}

.arc-layer-mid path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.arc-layer-mid-b path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* ── Layer 3: Accent arc (breathe + glow) ── */
.arc-layer-accent {
  transform-origin: var(--arc-origin-x, 0%) var(--arc-origin-y, 100%);
  animation: arc-breathe 8s ease-in-out infinite;
}

.arc-layer-accent path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* Travelling pulse element */
.arc-travel-path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 40 1160;
  animation: arc-travel 9s linear infinite;
}

/* ── Micro dots ── */
.arc-dot {
  animation: arc-dot-float var(--dot-dur, 4s) ease-in-out infinite;
  animation-delay: var(--dot-delay, 0s);
}

/* ── Blueprint grid overlay (separate layer above arcs) ── */
.kshipra-arc-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  /* Fade toward all edges */
  mask-image: radial-gradient(ellipse 70% 60% at var(--arc-fade-cx, 50%) var(--arc-fade-cy, 50%),
    black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at var(--arc-fade-cx, 50%) var(--arc-fade-cy, 50%),
    black 30%, transparent 90%);
}

/* Light mode: reduce arc contrast since background is light */
.light-mode .kshipra-arcs::after {
  background: radial-gradient(
    ellipse 80% 70% at var(--arc-fade-cx, 50%) var(--arc-fade-cy, 50%),
    transparent 55%,
    var(--arc-bg-color-light, #F8FAFC) 100%
  );
}

.light-mode .kshipra-arc-grid {
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
}

/* ── Per-page origin variables ── */

/* CareerPlus: bottom-left */
[data-origin="bottom-left"] {
  --arc-origin-x: 0%;
  --arc-origin-y: 100%;
  --arc-fade-cx: 20%;
  --arc-fade-cy: 80%;
}

/* GCA: top-right */
[data-origin="top-right"] {
  --arc-origin-x: 100%;
  --arc-origin-y: 0%;
  --arc-fade-cx: 80%;
  --arc-fade-cy: 20%;
}

/* Customised Training: center-right */
[data-origin="center-right"] {
  --arc-origin-x: 100%;
  --arc-origin-y: 50%;
  --arc-fade-cx: 75%;
  --arc-fade-cy: 50%;
}

/* Recruitment Support: center */
[data-origin="center"] {
  --arc-origin-x: 50%;
  --arc-origin-y: 50%;
  --arc-fade-cx: 50%;
  --arc-fade-cy: 50%;
}

/* UNIFIED NAVBAR OVERRIDE (MATCHING GCA & CAREERPLUS) */
.navbar .nav-inner { padding: 0.8rem 0 !important; }
.navbar.scrolled .nav-inner { padding: 0.5rem 0 !important; }
@media (max-width: 991px) { .navbar .nav-inner, .navbar.scrolled .nav-inner, .nav-inner { padding: 0.4rem 0 !important; } .navbar .nav-logo img, .navbar.scrolled .nav-logo img { height: 38px !important; } .navbar .nav-logo-text { margin-top: 6px !important; font-size: 1rem !important; } }

