/* ==========================================================================
   Impact Infotech — Enterprise Blue Theme
   Complete style.css — all pages (index, gcc, why-impact, skills-deployed)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  /* ---- main site tokens ---- */
  --navy: #071A3B;
  --navy-2: #0E2A55;
  --navy-deep: #071b2c;
  --navy-light: #1a2f5a;
  --blue: #0B4F9E;
  --blue-bright: #1E88E5;
  --blue-pale: #E8F1FC;
  --bg: #FFFFFF;
  --bg-alt: #F3F7FC;
  --text-heading: #0B1F3A;
  --text-secondary: #51637A;
  --border-color: #DCE6F2;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* ---- dashboard tokens (extended) ---- */
  --steel: #2563eb;
  --gold: #d99a3e;
  --paper: #f8fafc;
  --ink: #1e293b;
  --mute: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;

  /* ---- shared ---- */
  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.07);
  --shadow-hover: 0 22px 48px rgba(11, 31, 58, 0.14);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 76px;
  line-height: 1.6;
  margin: 0;
}
p {
  font-family: 'Karla', sans-serif !important;
}

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

h1,
h2,
h3,
h4,
h5 {
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
h1,
h2,
h3,
.display-font {
  font-family: 'Sora', sans-serif;
}
.mono {
  font-family: 'IBM Plex Mono', monospace;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
::selection {
  background: var(--blue-bright);
  color: #fff;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Shared utilities
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-light {
  color: var(--blue-bright);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title-light {
  color: #fff;
}

.section-text {
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 48ch;
}
.section-text-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .section-text {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--navy);
  background-image: radial-gradient(circle at 82% 15%, rgba(30, 136, 229, 0.18), transparent 45%);
}
.section-pad {
  padding: 56px 0;
}
/* ==========================================================================
   Dedicated content pages
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 94px 0 72px;
  background:
    linear-gradient(135deg, rgba(7, 26, 59, 0.96), rgba(14, 42, 85, 0.94)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop") center/cover;
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 136, 229, 0.18), transparent 62%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1;
  max-width: 920px;
  margin-bottom: 22px;
}
.page-hero .lead-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.22rem);
  max-width: 720px;
  margin-bottom: 30px;
}
.page-hero .eyebrow {
  color: #8ecbff;
}
.page-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.page-kpi {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 18px;
}
.page-kpi strong {
  display: block;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}
.page-kpi span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  margin-top: 8px;
}
.content-band {
  padding: 84px 0;
}
.content-band.alt {
  background: var(--bg-alt);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.content-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  transition: var(--transition);
}
.content-card .card-num {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 16px;
}
.content-card h3 {
  font-size: 1.12rem;
  line-height: 1.32;
  margin-bottom: 10px;
}
.content-card p,
.content-card li {
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.content-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}
.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
}
.process-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.process-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.process-item p {
  margin: 0;
  color: var(--text-secondary);
}
.link-card {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  color: var(--text-heading);
}
.link-card:hover {
  color: var(--blue);
  border-color: rgba(30, 136, 229, 0.42);
  box-shadow: var(--shadow-md);
}
.link-card span {
  color: var(--blue);
  font-weight: 700;
}
.page-cta {
  padding: 78px 0;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08), transparent 28%), radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.08), transparent 25%), linear-gradient(160deg, #eff6ff 0%, #ffffff 78%);
  color: #fff;
}
.page-cta h2 {
  color: #2d2323;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-cta p {
  color: rgba(29, 27, 27, 0.7); 
  max-width: 640px;
}
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-tile {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}
.contact-tile strong {
  display: block;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.contact-tile span {
  color: var(--text-secondary);
}

@media (max-width: 991.98px) {
  .page-kpis,
  .content-grid,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    padding: 70px 0 54px;
  }
  .page-kpis,
  .content-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .content-band {
    padding: 58px 0;
  }
  .process-item {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Buttons — Full Pill / Oval Style
   ========================================================================== */

.btn-pill {
    border-radius: 20px;
white-space: nowrap;
    padding: 0.72rem 1.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;

    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        background-color 0.35s var(--ease),
        color 0.35s var(--ease),
        border-color 0.35s var(--ease);

    border: 1.5px solid transparent;
    display: inline-block;
    cursor: pointer;
}

/* Large button */
.btn-pill.btn-lg {
    padding: 0.9rem 2.3rem;
    font-size: 1rem;
}

/* Small button */
.btn-pill.btn-sm {
    padding: 0.5rem 1.3rem;
    font-size: 0.86rem;
}

/* Primary button */
.btn-primary-pill {
    background: var(--blue-bright);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.32);
}

.btn-primary-pill:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(11, 79, 158, 0.4);
}

/* Outline button */
.btn-outline-pill {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue-bright);
}

.btn-outline-pill:hover {
    background: var(--blue-bright);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(30, 136, 229, 0.25);
}

/* Dark outline button */
.btn-outline-pill-dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-pill-dark:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
}



/* ==========================================================================
   Navbar (shared) — Cloud Services style: solid white, plain logo,
   dark links, round "Talk to an Expert" CTA. Used by ALL pages.
   ========================================================================== */
#mainNav {
  padding: 7px 0;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--border-color), 0 8px 24px rgba(11, 31, 58, 0.05);
  transition:
    top 0.35s var(--ease),
    left 0.35s var(--ease),
    right 0.35s var(--ease),
    padding 0.35s var(--ease),
    border-radius 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  z-index: 1030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#mainNav.scrolled {
  top: 7px;
  left: 3%;
  right: 3%;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 35px rgba(11, 31, 58, 0.15);
  border: 1px solid rgba(220, 230, 242, 0.9);
}

#mainNav.scrolled .nav-item .nav-link {
  color: black;
    background: #ffffff;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text-heading);
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
#mainNav.scrolled .brand-logo {
  height: 48px;
}
.brand-mark {
  width: 30px;
  height: 30px;
  color: var(--blue-bright);
  display: inline-flex;
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.brand-text {
  letter-spacing: -0.01em;
}

.navbar-nav {
  gap: 6px;
  align-items: center;
}

.nav-item .nav-link {
  color: var(--text-heading);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-pill);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav-item .nav-link:hover {
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-item.dropdown.show .nav-link,
.nav-item .nav-link.show {
  color: var(--blue);
  background: var(--blue-pale);
}

.dropdown-toggle::after {
  vertical-align: 1px;
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
  padding: 10px;
  margin-top: 0 !important;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
}
.dropdown-item {
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: var(--blue-pale);
  color: var(--blue);
}

.dropdown-menu-services .dropdown-item {
  white-space: normal;
  padding: 10px 15px;
}

.dropdown-menu-services .col-6:first-child {
  border-right: 1px solid #ddd;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}

/* Desktop dropdowns open as soon as the pointer reaches their parent. */
@media (min-width: 992px) {
  #mainNav .nav-item.dropdown:hover > .dropdown-menu,
  #mainNav .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #mainNav .nav-item.dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
  }

  #mainNav .nav-item.dropdown:hover > .nav-link,
  #mainNav .nav-item.dropdown:focus-within > .nav-link {
    color: var(--blue);
    background: var(--blue-pale);
  }

  .dropdown-menu-services {
    width: min(700px, calc(100vw - 40px));
    min-width: 0;
  }
}

/* The Blade navbar currently uses .btn-pill.btn-primary-pill.btn-sm */
#mainNav .nav-cta .btn-pill {
  transition:
    padding 0.35s var(--ease),
    font-size 0.35s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

#mainNav.scrolled .nav-cta .btn-pill {
  padding: 0.45rem 1.15rem;
  font-size: 0.8rem;
}

/* Round "Talk to an Expert" CTA button — matches Cloud Services navbar.
   Named .nav-cta-circle (not .nav-cta-btn) to avoid clashing with the
   existing .nav-cta-btn rule used by the .main-navbar theme elsewhere. */
.nav-cta-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary, var(--blue));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.25;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(8, 65, 198, 0.32);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta-circle:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 65, 198, 0.42);
}

#mainNav.scrolled .nav-cta-circle {
  width: 68px;
  height: 68px;
  font-size: 0.72rem;
}

.navbar-toggler {
  border: none;
  padding: 3px;
  box-shadow: none !important;
}
.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

@media (max-width: 991.98px) {
  #mainNav.scrolled {
    top: 8px;
    left: 2%;
    right: 2%;
    padding: 8px 12px;
    border-radius: 28px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 16px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }
  .navbar-collapse .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px !important;
    padding: 8px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transform: none;
  }
  .navbar-collapse .dropdown-menu-services .row {
    --bs-gutter-x: 0;
  }
  .navbar-collapse .dropdown-menu-services .col-6 {
    width: 100%;
    border-right: 0 !important;
  }
  .navbar-collapse .dropdown-menu .dropdown-item {
    white-space: normal;
    line-height: 1.4;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }
  .nav-cta-circle {
    width: 64px;
    height: 64px;
    font-size: 0.7rem;
  }
}




/* ==========================================================================
   Hero — main site (index.html)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
}
.hero-ripple {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-ripple svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.ripple-core {
  fill: var(--blue-bright);
  opacity: 0.9;
}
.ripple-ring {
  fill: none;
  stroke: var(--blue-bright);
}
.ripple-ring.r1 {
  stroke-width: 2;
  opacity: 0.35;
  animation: rippleGrow 4.5s ease-out infinite;
}
.ripple-ring.r2 {
  stroke-width: 1.6;
  opacity: 0.25;
  animation: rippleGrow 4.5s ease-out infinite;
  animation-delay: 1.1s;
}
.ripple-ring.r3 {
  stroke-width: 1.3;
  opacity: 0.16;
  animation: rippleGrow 4.5s ease-out infinite;
  animation-delay: 2.2s;
}
.ripple-ring.r4 {
  stroke-width: 1;
  opacity: 0.1;
  animation: rippleGrow 4.5s ease-out infinite;
  animation-delay: 3.3s;
}

@keyframes rippleGrow {
  0% {
    transform: scale(0.85);
    opacity: 0.4;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 580px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-cta.justify-content-center {
  justify-content: center;
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.hero-chips li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(30, 136, 229, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}
.panel-topbar {
  padding: 16px 22px;
  background: var(--navy);
  display: flex;
  align-items: center;
}
.panel-badge {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.panel-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35D07F;
      margin-right: 10px;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(53, 208, 127, 0.25);
}

.panel-body {
  padding: 28px 26px 30px;
}
.panel-metric-row {
  display: flex;
  gap: 30px;
  margin-bottom: 22px;
}
.panel-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-heading);
}
.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.panel-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 20px;
}
.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.94rem;
  color: var(--text-heading);
  font-weight: 500;
}
.panel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-color);
}
.panel-dot.on {
  background: #35D07F;
  box-shadow: 0 0 0 3px rgba(53, 208, 127, 0.18);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 1;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--blue-bright);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ==========================================================================
   Hero — why-impact.html
   ========================================================================== */
.hero-why {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(165deg, #0d1b3e 0%, #1a2f5a 100%);
  color: #fff;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-why::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-why .container {
  position: relative;
  z-index: 2;
}
.hero-why .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero-why h1 {
      color: white;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-why h1 span {
  color: #60a5fa;
}
.hero-why .hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-why .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-why .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-why .hero-chips li {
  font-size: 0.9rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-why .hero-chips li::before {
  content: '✓';
  color: #60a5fa;
  font-weight: 700;
}

.hero-panel-why {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 20px;
}
.hero-panel-why .panel-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero-panel-why .panel-metric {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}
.hero-panel-why .panel-metric:last-child {
  border-bottom: none;
}
.hero-panel-why .metric-label {
  color: rgba(255, 255, 255, 0.5);
}
.hero-panel-why .metric-value {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   Trusted-by strip / marquee (shared)
   ========================================================================== */
.trust-strip {
  padding: 46px 0 40px;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}
.trust-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}
.trust-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-track span {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-heading);
  white-space: nowrap;
  opacity: 0.75;
  padding: 10px 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

/* ==========================================================================
   Solution cards (main site)
   ========================================================================== */
.solution-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 34px 26px;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.solution-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.solution-icon svg {
  width: 23px;
  height: 23px;
}
.solution-title {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.solution-text {
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.solution-link {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.solution-link:hover {
  color: var(--blue-bright);
  gap: 10px;
}

/* ==========================================================================
   Stats — main site
   ========================================================================== */
.stats-section {
  padding: 90px 0;
  background: var(--bg-alt);
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-number {
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: #6e757d;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ==========================================================================
   Stats grid — why-impact.html
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  display: block;
  line-height: 1.1;
}
.stat-item .stat-number .suffix {
  font-size: 1.8rem;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   Why cards — main site (dark)
   ========================================================================== */
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(30, 136, 229, 0.1);
  border-color: rgba(30, 136, 229, 0.35);
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(30, 136, 229, 0.15);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 22px;
  height: 22px;
}
.why-card h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Pillar cards — why-impact.html
   ========================================================================== */
.pillar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-bright);
  opacity: 0;
  transition: var(--transition);
}
.pillar-card:hover::before {
  opacity: 1;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateY(-4px);
}
.pillar-card .pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-bright);
}
.pillar-card .pillar-icon svg {
  width: 28px;
  height: 28px;
}
.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}
.pillar-card .pillar-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(13, 27, 62, 0.04);
  line-height: 1;
  pointer-events: none;
}

/* ==========================================================================
   Audience cards (main site)
   ========================================================================== */
.audience-card {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 38px 30px;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background-color 0.4s var(--ease);
}
.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: #fff;
}
.audience-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.audience-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.audience-text {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ==========================================================================
   Work / success story cards (main site)
   ========================================================================== */
.work-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.work-media {
  overflow: hidden;
  height: 210px;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-media img {
  transform: scale(1.08);
}
.work-body {
  padding: 24px 24px 28px;
}
.work-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.work-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.work-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Insights — main site
   ========================================================================== */
.insight-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.insight-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.insight-title {
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 22px;
}
.insight-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-bright);
}

/* ==========================================================================
   Insight cards — why-impact.html
   ========================================================================== */
.insight-card-why {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.insight-card-why:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}
.insight-card-why .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.insight-card-why h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.4;
}
.insight-card-why .link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.insight-card-why .link:hover {
  gap: 8px;
}

/* ==========================================================================
   Timeline — why-impact.html
   ========================================================================== */
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
  padding-left: 32px;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}
.timeline-item .timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-bright);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-bright);
  flex-shrink: 0;
}
.timeline-item .timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 60px;
}
.timeline-item .timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.timeline-item .timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   Client grid — why-impact.html
   ========================================================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}
.client-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   CTA banner — main site
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-title {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.2;
}

/* ==========================================================================
   CTA banner — why-impact.html
   ========================================================================== */
.cta-banner-why {
  padding: 80px 0;
  background: linear-gradient(165deg, #0d1b3e 0%, #1a2f5a 100%);
  color: #fff;
  text-align: center;
}
.cta-banner-why .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 24px;
}
.cta-banner-why .cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-detail:last-child {
  border-bottom: none;
}
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 600;
}
.contact-label em {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-secondary);
  font-style: italic;
}
.contact-value {
  font-size: 1.02rem;
  color: var(--text-heading);
  font-weight: 500;
}

.impact-form .form-control,
.impact-form .form-select {
  border-radius: 14px;
  border: 1.5px solid var(--border-color);
  padding: 1rem;
  font-size: 0.98rem;
  background: #fff;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.impact-form .form-control:focus,
.impact-form .form-select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.18);
}
.impact-form .form-floating>label {
  color: var(--text-secondary);
  padding: 1rem;
}
.impact-form .form-floating>.form-control:focus~label,
.impact-form .form-floating>.form-control:not(:placeholder-shown)~label,
.impact-form .form-floating>.form-select~label {
  color: var(--blue);
}
.impact-form .form-control.is-valid,
.impact-form .form-select.is-valid {
  border-color: #28C840;
  background-image: none;
}
.impact-form .form-control.is-invalid,
.impact-form .form-select.is-invalid {
  border-color: #E4483C;
  background-image: none;
}
.impact-form .form-floating {
  margin-bottom: 0;
}
.impact-form textarea.form-control {
  min-height: 120px;
}

.form-success {
  color: var(--blue);
  font-weight: 500;
  background: var(--blue-pale);
  padding: 14px 18px;
  border-radius: 12px;
}

/* ==========================================================================
   Footer (shared)
   ========================================================================== */
.site-footer {
  background: #eaf3fd;
  padding: 9px 0 30px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
}
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 18px;
}
.site-footer .footer-brand .brand-mark {
  color: var(--blue-bright);
}
.site-footer .footer-text {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 22px;
  color: var(--text-secondary);
}
.site-footer .footer-social {
  display: flex;
  gap: 14px;
}
.site-footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.site-footer .footer-social svg {
  width: 16px;
  height: 16px;
}
.site-footer .footer-social a:hover {
  background: var(--blue-bright);
  color: #fff;
  transform: translateY(-3px);
}

.site-footer .footer-heading {
  color: var(--text-heading);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.site-footer .footer-links a:hover {
  color: var(--blue-bright);
}

.site-footer .footer-divider {
  border-color: var(--border-color);
  margin: 50px 0 26px;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
.site-footer .footer-legal {
  display: flex;
  gap: 22px;
}
.site-footer .footer-legal a {
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}
.site-footer .footer-legal a:hover {
  color: var(--blue-bright);
}

/* ==========================================================================
   Dashboard-specific: section headers (skills-deployed.html)
   ========================================================================== */
.section-head .kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(37, 99, 235, 0.08);
  display: inline-block;
  padding: 2px 14px;
  border-radius: 40px;
}
.section-head h2 {
  font-size: 1.7rem;
    font-weight: 200;
    color: #534d4d;

  margin-top: 8px;
  letter-spacing: -0.01em;
}


.section-head2 .section-text{
        max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color:#51637a !important;
}

.section-head p {

    
    
  color: #121212;
  max-width: 620px;
  font-size: 1rem;
}

/* ==========================================================================
   Dashboard: Featured IT panel (skills-deployed.html)
   ========================================================================== */
.it-panel {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.it-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(217, 154, 62, 0.14), transparent 65%);
  pointer-events: none;
}
.it-panel .badge-count {
  font-family: 'Sora', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.it-panel .sub-count {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-top: 4px;
}
.it-sub-list {
  margin-top: 18px;
}
.it-sub-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.it-sub-row:last-child {
  border-bottom: none;
}
.it-sub-name {
  width: 210px;
  flex-shrink: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}
.it-sub-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  overflow: hidden;
  min-width: 60px;
}
.it-sub-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--steel), var(--gold));
  border-radius: 4px;
}
.it-sub-val {
  width: 34px;
  text-align: right;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Dashboard: Ranked leaderboard (skills-deployed.html)
   ========================================================================== */
.rank-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 0;
  box-shadow: var(--shadow-sm);
}
.rank-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.rank-row:hover {
  background: #f8fafc;
}
.rank-row:last-child {
  border-bottom: none;
}
.rank-no {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--mute);
  font-size: 0.82rem;
  width: 28px;
  flex-shrink: 0;
  font-weight: 500;
}
.rank-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef3f8;
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.rank-name {
  width: 220px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.rank-bar-track {
  flex: 1;
  height: 10px;
  background: #eef1f4;
  border-radius: 5px;
  overflow: hidden;
  min-width: 80px;
}
.rank-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--navy), var(--steel));
}
.rank-val {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}

/* ==========================================================================
   Dashboard: Domain cards grid (skills-deployed.html)
   ========================================================================== */
.dcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.dcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--steel);
}
.dcard .dicon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef3f8;
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.dcard .dval {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy-deep);
  line-height: 1;
}
.dcard .dname {
  color: var(--mute);
  font-size: 0.88rem;
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================================
   Dashboard: ISO line in footer (skills-deployed.html)
   ========================================================================== */
.iso-line {
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 22px;
}
.iso-line a {
  color: var(--gold);
}
.iso-line a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Large screens */
@media (max-width: 991.98px) {
  body {
    padding-top: 68px;
  }
  .hero-dashboard h1 {
    font-size: 2.2rem;
  }
  .section-pad {
    padding: 40px 0;
  }
  .cta-banner-dash .cta-title {
    font-size: 1.8rem;
  }
  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 56px;
  }
  .hero-dashboard {
    padding: 50px 0 40px;
  }
  .hero-why {
    padding: 60px 0 80px;
    min-height: auto;
  }
  .hero-why h1 {
    font-size: 2.4rem;
  }
  .section {
    padding: 56px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-why .hero-panel-why {
    margin-top: 32px;
  }
  .cta-banner-why .cta-title {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item .stat-number {
    font-size: 2.2rem;
  }
}

/* Tablets and small laptops */
@media (max-width: 767.98px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .hero-cta {
    margin-bottom: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner {
    padding: 76px 0;
  }
  .hero-dashboard h1 {
    font-size: 1.8rem;
  }
  .hero-dashboard {
    padding: 40px 0 36px;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .stat-block-dash {
    padding-left: 12px;
  }
  .stat-row {
    margin-top: 24px;
    padding-top: 20px;
  }
  .section-head h2 {
    font-size: 1.4rem;
  }
  .cta-banner-dash .cta-title {
    font-size: 1.4rem;
  }
  .cta-banner-dash {
    padding: 40px 0;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .nav-cta {
    margin-top: 8px;
    flex-wrap: wrap;
  }

  .hero-why h1 {
    font-size: 2rem;
  }
  .hero-why .hero-sub {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .cta-banner-why .cta-title {
    font-size: 1.6rem;
  }
  .cta-banner-why {
    padding: 60px 0;
  }

  /* Dashboard IT panel responsive */
  .it-panel {
    padding: 24px 20px;
  }
  .it-sub-name {
    width: 120px;
    font-size: 0.78rem;
  }
  .it-panel .badge-count {
    font-size: 2.4rem;
  }
  .it-sub-row {
    flex-wrap: wrap;
    gap: 6px 10px;
  }
  .it-sub-bar-track {
    min-width: 40px;
    flex-basis: 60%;
  }

  /* Leaderboard responsive */
  .rank-row {
    padding: 10px 14px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .rank-name {
    width: 120px;
    font-size: 0.83rem;
  }
  .rank-val {
    width: 42px;
    font-size: 0.9rem;
  }
  .rank-no {
    width: 22px;
    font-size: 0.7rem;
  }
  .rank-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .rank-bar-track {
    min-width: 40px;
    flex-basis: 40%;
  }

  /* Timeline responsive */
  .timeline-item {
    padding-left: 24px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .timeline-item .timeline-year {
    min-width: auto;
  }
}

/* Mobile phones */
@media (max-width: 575.98px) {
  .panel-metric-row {
    gap: 20px;
  }
  .panel-body {
    padding: 22px 18px 26px;
  }
  .hero-dashboard h1 {
    font-size: 1.5rem;
  }
  .stat-num {
    font-size: 1.3rem;
  }
  .stat-label-dash {
    font-size: 0.7rem;
  }
  .it-panel .badge-count {
    font-size: 2rem;
  }
  .dcard .dval {
    font-size: 1.3rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .hero-why h1 {
    font-size: 1.7rem;
  }
  .hero-why .hero-chips li {
    font-size: 0.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-item {
    padding: 16px 8px;
  }
  .stat-item .stat-number {
    font-size: 1.8rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .rank-name {
    width: 80px;
    font-size: 0.75rem;
  }
  .rank-row {
    gap: 6px;
    padding: 8px 10px;
  }
  .rank-val {
    width: 32px;
    font-size: 0.8rem;
  }
  .hero-dashboard h1 {
    font-size: 1.3rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}
/* ===== CLOUD SERVICES GRID ===== */
.cloud-services-section {
    padding: 80px 0;
}

.cloud-services-heading {
    text-align: center;
    margin-bottom: 56px;
}

.cloud-services-kicker {
    color: #0B4F9E;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    margin-bottom: 8px;
}

.cloud-services-title {
    font-size: 34px;
    font-weight: 700;
    color: #0B1F3A;
}

.cloud-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .cloud-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #E8F1FC;
    color: #0B4F9E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 8px;
}

.service-text {
    font-size: 14px;
    color: #51637A;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #0B1F3A;
    text-decoration: none;
}

.service-link:hover {
    color: #0B4F9E;
}

.service-link span {
    margin-left: 4px;
}


.card-cloud-service {
  padding: 13px;
  border: 1px solid #B0D9F5;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-cloud-service:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 255, 0.2);
  transform: translateY(-4px);
}



/* ===== CLOUD SERVICES GRID section ===== */

/* ===== HIRE DEVELOPERS TABBED SECTION ===== */
.dev-hire-section {
    padding: 60px 0;
}

.dev-tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #e5e9f0;
    margin-bottom: 40px;
}

.dev-tab-btn {
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #8a94a6;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.dev-tab-btn.active {
    color: #0b1f3a;
    border-bottom-color: #0b4f9e;
}

.dev-tab-panel {
    display: none;
}

.dev-tab-panel.active {
    display: block;
}

.dev-tab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 992px) {
    .dev-tab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dev-illustration {
    background: #f3f5f8;
    border-radius: 14px;
    overflow: hidden;
}

.dev-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dev-tab-title {
    font-size: 26px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 24px;
}

.dev-feature-card {
    display: flex;
    gap: 16px;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.dev-feature-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e8f1fc;
    color: #0b4f9e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 4px;
}

.dev-feature-card p {
    font-size: 14px;
    color: #51637a;
    line-height: 1.5;
    margin: 0;
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    background: #0b0f24;
    padding: 70px 0;
    border-radius: 24px;
    margin: 60px auto;
    max-width: 1240px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 40px 40px;
}

.category-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-header p {
    color: #9aa4bd;
    font-size: 15px;
    max-width: 360px;
    line-height: 1.6;
    margin: 0;
}

.category-explore-link {
    color: #7ee6a8;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.category-explore-link:hover {
    color: #a3f2c1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 40px;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 4px;
}


.category-card p {
    font-size: 13px;
    color: #8a94a6;
    margin: 0;
}

.category-card.active {
    background: #5b4bff;
}

.category-card.active h3,
.category-card.active p {
    color: #ffffff;
}

.category-arrow {
   background: rgba(17, 48, 224, 1);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex: 0 0 auto;
}


/* ===== VIDEO + INFO SECTION ===== */
.video-info-section {
    padding: 70px 0;
}

.video-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .video-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.video-info-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.12);
    background: #000;
}

.video-info-media video {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-info-kicker {
    color: #0b4f9e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-bottom: 10px;
}

.video-info-title {
    font-size: 30px;
    font-weight: 700;
    color: #0b1f3a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.video-info-text {
    font-size: 15px;
    color: #51637a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.video-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.video-info-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #0b1f3a;
    font-weight: 500;
}

.video-info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b4f9e;
    font-weight: 700;
}

.video-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0b4f9e;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.video-info-btn:hover {
    background: #093d7a;
}



/* ===== LEADERSHIP QUALITIES SECTION ===== */
.leadership-section {
    position: relative;
    background: #eaf3fd;   /* ← light blue background — change this hex to adjust */
    overflow: hidden;
    padding: 80px 0;
    margin: 60px 0;
}

.leadership-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 2;
}

.leadership-kicker {
    color: #0b4f9e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-bottom: 10px;
}

.leadership-title {
    font-size: 30px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.leadership-sub {
    font-size: 15px;
    color: #51637a;
    line-height: 1.6;
    margin: 0;
}

.leadership-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.leadership-bubble-item {
    background: #ffffff;
    color: #0b1f3a;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(11, 79, 158, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.leadership-bubble-item:hover {
    transform: translateY(-4px);
    background: #0b4f9e;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(11, 79, 158, 0.25);
}

/* decorative floating circles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 79, 158, 0.08);
    z-index: 1;
}

.bubble-1 {
    width: 160px;
    height: 160px;
    top: -60px;
    left: -40px;
}

.bubble-2 {
    width: 90px;
    height: 90px;
    top: 40px;
    right: 8%;
}

.bubble-3 {
    width: 220px;
    height: 220px;
    bottom: -100px;
    right: -60px;
}

.bubble-4 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 12%;
}

.bubble-5 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 45%;
    opacity: 0.6;
}


/* ==========================================================
   BOUNCING BALL → IMPACT INFOTECH SECTION
   ========================================================== */

.ball-bounce-section {
    padding: 80px 0;
}

.ball-bounce-stage {
    position: relative;
    height: 260px;
    overflow: hidden;
}


/* ==========================================================
   BALL
   ========================================================== */

.bounce-ball {
    position: absolute;

    top: 50%;
    left: 0;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #0b4f9e;

    box-shadow: 0 10px 20px rgba(11, 79, 158, 0.3);
}


/* ==========================================================
   BOUNCE ANIMATION
   ========================================================== */

.bounce-ball.start-bounce {
    animation: bounceMove 3s ease-in-out forwards;
}


@keyframes bounceMove {

    0% {
        left: 0;
        top: 50%;
    }

    8% {
        left: 12%;
        top: 20%;
    }

    16% {
        left: 24%;
        top: 60%;
    }

    24% {
        left: 36%;
        top: 25%;
    }

    32% {
        left: 48%;
        top: 60%;
    }

    40% {
        left: 60%;
        top: 30%;
    }

    48% {
        left: 70%;
        top: 58%;
    }

    56% {
        left: 80%;
        top: 35%;
    }

    64% {
        left: 88%;
        top: 55%;
    }

    100% {
        left: calc(100% - 56px);
        top: 50%;
    }
}


/* ==========================================================
   POP EFFECT
   ========================================================== */

.bounce-ball.pop {
    animation: popEffect 0.7s ease forwards;
}


@keyframes popEffect {

    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.8);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-50%) scale(2.6);
        opacity: 0;
    }
}


/* ==========================================================
   IMPACT INFOTECH TEXT
   ========================================================== */

.impact-reveal-text {
    position: absolute;

    top: 50%;
    right: 4%;

    transform: translateY(-50%);

    font-size: clamp(24px, 4vw, 40px);

    font-weight: 800;

    color: #0b1f3a;

    opacity: 0;

    transition: opacity 0.7s ease;
}


.impact-reveal-text.show {
    opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════════════
   Impact Infotech — Premium Design System
   Color Theme: #0841c6 (Primary) + #ffffff (White)
   Font: Inter (Google Fonts)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties (Design Tokens) ─────────────────────────── */
:root {
    --primary: #0841c6;
    --primary-dark: #062d8a;
    --primary-light: #3a6cdd;
    --primary-lighter: #e8eefb;
    --primary-ghost: rgba(8, 65, 198, 0.06);
    --white: #ffffff;
    --light-bg: #f6f8fc;
    --grey-100: #f1f3f7;
    --grey-200: #e2e6ee;
    --grey-400: #9ba3b5;
    --grey-600: #5a6275;
    --grey-800: #272d3b;
    --dark: #0b1120;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(8, 65, 198, 0.08);
    --shadow-md: 0 8px 30px rgba(8, 65, 198, 0.12);
    --shadow-lg: 0 20px 60px rgba(8, 65, 198, 0.15);
    --shadow-card: 0 4px 20px rgba(8, 65, 198, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Tech Animation Tokens */
    --accent-glow: rgba(0, 212, 255, 0.5);
    --primary-glow: rgba(8, 65, 198, 0.4);
    --cursor-glow: rgba(8, 65, 198, 0.3);
    --glitch-color-1: rgba(255, 0, 80, 0.3);
    --glitch-color-2: rgba(0, 255, 235, 0.3);
}

/* ── Reset & Base ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #51637a;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--grey-600);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ── Section System ────────────────────────────────────────────────── */
.section {
   padding: 60px 0;
    position: relative;
}

.section-light {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Top Bar ───────────────────────────────────────────────────────── */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1051;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--white);
}

.main-navbar {
    /* background: rgba(8, 65, 198, 0.95); */
    /* backdrop-filter: blur(20px); */
    /* -webkit-backdrop-filter: blur(20px); */
    padding: 16px 0;
    transition: var(--transition);
    top: 0;
    box-shadow: none;
    z-index: 1050;
}

.navbar-collapse {
    flex-grow: 0;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), #00d4ff);
    width: 0%;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.1s ease-out;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    background: var(--cursor-glow);
    backdrop-filter: blur(1px);
}

.cursor-active .custom-cursor {
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--white);
}

.cursor-active .cursor-follower {
    width: 50px;
    height: 50px;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {

    .custom-cursor,
    .cursor-follower {
        display: none !important;
    }
}

.main-navbar.scrolled {
    padding: 8px 0;
    background: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.main-navbar.scrolled .nav-item {
    background-color: #0e389d;
    border-radius: 6px;
    margin: 0 4px;
    transition: var(--transition-fast);
}

@media (max-width: 991px) {
    .main-navbar.scrolled button.navbar-toggler.collapsed,
    .main-navbar.scrolled button.navbar-toggler {
        background-color: #0e389d;
        border-color: #0e389d;
        border-radius: 6px;
    }
}


.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-accent {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: var(--transition-fast);
    position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--white);
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* Nav CTA Button */
.nav-cta-btn {
    background: var(--white) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-full) !important;
    padding: 8px 24px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    transition: var(--transition) !important;
}

.nav-cta-btn:hover {
    background: var(--primary-lighter) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Dropdown Menus */
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.dropdown-menu-animated {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    animation: fadeInDropdown 0.3s ease;
    background: var(--white);
}

.dropdown-menu-animated .dropdown-item {
    padding: 8px 24px;
    font-size: 0.9rem;
    color: var(--grey-600);
    transition: var(--transition-fast);
}

.dropdown-menu-animated .dropdown-item:hover {
    background: var(--primary-ghost);
    color: var(--primary);
    padding-left: 28px;
}

/* Mega Menu */
.mega-menu {
    width: 100%;
    padding: 30px !important;
    left: 0;
    right: 0;
}

.mega-dropdown {
    position: static;
}

.mega-heading {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 0 24px;
}

.mega-col {
    border-right: 1px solid var(--grey-200);
    padding: 0;
}

.mega-col:last-child {
    border-right: none;
}


@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* ── HERO SECTION ──────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.btn-hero-primary:hover::after {
    left: 100%;
}


/* section -intersection*/

/* .impact-section {
    padding: 100px 0;
    color: #0f172a;
} */

/* .impact-title {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 1.3;
} */

/* Row Layout */
/* .venn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
} */

/* Circle Base */
/* .circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(8, 65, 198, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;

    mix-blend-mode: multiply;
} */

/* Equal Overlap (no z-index fighting) */
/* .circle-1 {
    transform: translateX(80px);
} */

/* .circle-2 {
    transform: translateX(0px);
} */

/* .circle-3 {
    transform: translateX(-80px);
} */

/* Hover */
/* .circle:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: #0f172a;
} */

/* Text */
/* .circle span {
    color: rgba(8, 65, 198, 0.98);
    font-size: 30px;
    font-weight: 500;
}

.impact-section {
    padding: 100px 0;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

/* 🔥 Background Glow */
/* .impact-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 65, 198, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
} */

/* keep content above */
/* .impact-section .container {
    position: relative;
    z-index: 1;
} */

/* Responsive */
/* @media (max-width: 768px) {
    .venn-row {
        flex-direction: column;
        gap: 20px;
    }

    .circle-2 {
        margin: 0;
    }
} */


/* ── Dot Grid Scroll-Pinned Section ────────────────────────────────── */
.dot-scroll-wrapper {
    height: 300vh;
    /* scroll room — 3x viewport */
    position: relative;
}

.dot-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dotCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot-content-overlay {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* TEXT */
.dot-text {
    color: #e5e5e5;
    font-size: clamp(42px, 10vw, 90px);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    animation: TextPulse 2s ease-in-out infinite;
}

@keyframes TextPulse {

    0%,
    100% {
        transform: scale(1);
        /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); */
    }

    50% {
        transform: scale(1.05);
        /* box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 50px rgba(255, 255, 255, 0.3); */
    }
}

.dot-middle {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 16px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    animation: TextPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 50px rgba(255, 255, 255, 0.3);
    }
}


/* India Video Background  */

/* ================= VIDEO HERO SECTION ================= */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO BACKGROUND */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(1.2);
    /* Enhance visibility */
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* Reduced from 0.5 */
    /* adjust opacity if needed */
    z-index: 1;
}

/* CONTENT WRAPPER */
.video-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* LEFT SIDE CONTENT */
.content-left {
    max-width: 600px;
}

/* MAIN HEADING */
.content-left h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUB TEXT */
.sub-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .content-left h1 {
        font-size: 40px;
    }

    .sub-text {
        font-size: 16px;
    }
}

/* ── TECH ANIMATIONS ───────────────────────────────────────────────── */
.typing-text {
    border-right: 3px solid var(--white);
    white-space: pre-wrap;
    overflow: hidden;
    margin: 0 auto;
    display: inline-block;
    min-height: 1.2em;
}

.typing-text.typing-done {
    border-right: none;
}

.typing-cursor {
    display: inline-block;
    opacity: 1;
}

.typing-cursor-blink {
    animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--white)
    }
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 65, 198, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 65, 198, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.glow-card {
    transition: var(--transition);
}

.glow-card:hover {
    padding: 20px;
    box-shadow: 0 0 4px var(--primary-glow);
}

.data-stream {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    animation: dataFall 3s linear infinite;
    opacity: 0.3;
}

@keyframes dataFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

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

.digital-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: scanMove 4s linear infinite;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 15px var(--accent-glow);
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

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

/* Heading Glitch */
/* .glitch-hover:hover {
    animation: textGlitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--primary-light);
    text-shadow: 2px 0 var(--glitch-color-1), -2px 0 var(--glitch-color-2);
} */

@keyframes textGlitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Magnetic Link */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Button Pulse */
.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 65, 198, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(8, 65, 198, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8, 65, 198, 0);
    }
}

.parallax-wrap {
    perspective: 1000px;
}

/* Digital Scan Line */
.digital-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 212, 255, 0.2),
            rgba(0, 212, 255, 0.5),
            rgba(0, 212, 255, 0.2),
            transparent);
    z-index: 10;
    pointer-events: none;
    animation: scanLine 8s linear infinite;
    opacity: 0;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    95% {
        opacity: 0.8;
    }

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

/* Circuit Lines decoration */
.circuit-line {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

.circuit-line-h {
    height: 1px;
}

.circuit-line-v {
    width: 1px;
}

.circuit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Animated Background Mesh */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatCircle 20s ease-in-out infinite;
}

.hero-bg .circle-1 {
    width: 600px;
    height: 600px;
    background: #3a6cdd;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-bg .circle-2 {
    width: 500px;
    height: 500px;
    background: #00d4ff;
    bottom: -200px;
    right: -100px;
    animation-delay: -7s;
}

.hero-bg .circle-3 {
    width: 350px;
    height: 350px;
    background: #0841c6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

/* Grid Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--white);
    font-weight: 900;
    margin: 0 auto 24px;
    line-height: 1.25;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-content h1 .highlight {
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* CTA Buttons */
.btn-hero-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
    color: var(--primary);
    background: var(--white);
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 65, 198, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::after {
    left: 100%;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 36px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    display: block;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── ABOUT SECTION ─────────────────────────────────────────────────── */
.about-section .about-text {
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-section .service-tag {
    display: inline-block;
    background: var(--primary-ghost);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    margin: 4px;
    transition: var(--transition);
}

.about-section .service-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── SOLUTIONS CARDS ───────────────────────────────────────────────── */
.solution-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--primary-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.solution-card:hover .card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.solution-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.solution-card .card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.solution-card:hover .card-link {
    gap: 12px;
}

/* ── STATS SECTION ─────────────────────────────────────────────────── */
.stats-section {
    background:linear-gradient(135deg, #f3f7fc 0%, #f8f9fa 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.stats-section .section-title h2,
.stats-section .section-title p {
    color: var(--white);
}

.stats-section .section-title h2::after {
    background: var(--white);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.stats-section .stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
  color: #000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .suffix {
    font-size: 0.6em;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
  color: #000;
    font-weight: 500;
}

/* ── CORE VALUES ───────────────────────────────────────────────────── */
.value-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ── CLIENTS / PARTNER LOGOS ───────────────────────────────────────── */
.clients-section {
    overflow: hidden;
}

.logo-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logo-item img {
    max-height: 50px;
    max-width: 120px;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.logo-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-lighter);
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ── INDUSTRY SECTION ──────────────────────────────────────────────── */
.industry-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.industry-card .industry-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    transform: scale(1.2);
}

.industry-card h4 {
    font-size: 1rem;
}

/* ── CONTACT FORM ──────────────────────────────────────────────────── */
.contact-section {
    background: var(--light-bg);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper .form-floating .form-control {
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(8, 65, 198, 0.1);
}

.contact-form-wrapper .form-floating label {
    color: var(--grey-400);
}

.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item i {
    font-size: 1.3rem;
    margin-top: 4px;
    opacity: 0.7;
}

.contact-info-item a {
    color: var(--white);
    opacity: 0.9;
}

.contact-info-item a:hover {
    opacity: 1;
}

/* ── CTA BAND ──────────────────────────────────────────────────────── */
.cta-band {
    background: radial-gradient(circle at 10% 20%, rgba(53, 58, 70, 0.08), transparent 28%), radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.08), transparent 25%), linear-gradient(160deg, #858a8f 0%, #d2cccc 78%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

/* ── GENERIC BUTTON ────────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── PAGE HERO (Inner Pages) ───────────────────────────────────────── */
body.light-service-page .page-hero {
    text-align: center;
    background: linear-gradient(160deg, rgb(239, 246, 255) 0%, rgb(255, 255, 255) 80%);
    padding: 70px 0px 60px;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
}




.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-hero .breadcrumb-item.active {
    color: var(--white);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: #a7c3e2;
    padding: 9px 0 30px;
  color: var(--text-secondary);
}

.site-footer .brand-text {
    font-size: 2.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ── STICKY CTA ────────────────────────────────────────────────────── */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulseCta 3s ease-in-out infinite;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    animation: none;
}

.sticky-cta i {
    font-size: 1.2rem;
}

/* ── BACK TO TOP ───────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════════════════════════ */

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseCta {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(8, 65, 198, 0.3);
    }

    50% {
        box-shadow: 0 4px 35px rgba(8, 65, 198, 0.55);
    }
}

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

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
    .mega-menu {
        padding: 20px !important;
    }
}

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

    .main-navbar .navbar-collapse {
        background: var(--primary);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }

    .main-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .main-navbar .nav-link.active::after {
        display: none;
    }

    .nav-cta-btn {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    .mega-menu {
        position: relative !important;
        box-shadow: none !important;
        padding: 10px !important;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .hero-section {
        min-height: 90vh;
        padding: 140px 0 60px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-info-card {
        padding: 30px;
        margin-top: 30px;
    }

    .sticky-cta span {
        display: none;
    }

    .sticky-cta {
        padding: 14px;
        border-radius: 50%;
    }
}

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

    .section-title {
        margin-bottom: 40px;
    }

    .hero-section {
        min-height: 80vh;
        padding: 120px 0 50px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stats-section {
        padding: 60px 0;
    }

    .logo-item {
        width: 140px;
        height: 70px;
        margin: 0 15px;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        margin-bottom: 10px;
    }

    .solution-card {
        padding: 30px 20px;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   INNER PAGE CONTENT
   ══════════════════════════════════════════════════════════════════════ */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    margin-bottom: 24px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content ul {
    padding-left: 0;
    list-style: none;
}

.page-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--grey-600);
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 0;
}

.sidebar-links a {
    display: block;
    padding: 10px 16px;
    color: var(--grey-600);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--primary-ghost);
    color: var(--primary);
    padding-left: 20px;
}

/* Value Detail Card (Core Values inner page) */
.value-detail-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-bottom: 30px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.value-detail-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-light);
    border-left-color: var(--primary);
}

.value-detail-card h3 {
    font-size: 1.25rem;
}

.value-detail-card p {
    font-size: 0.95rem;
}

/* Card Link (inner pages) */
.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ── FORM SUCCESS/ERROR FEEDBACK ──────────────────────────────────── */
.form-feedback {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: none;
    margin-top: 16px;
}

.form-feedback.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* ── Branch Map ─────────────────────────────────────────────────────── */
.branch-map-section {
    padding-bottom: 100px;
}

.branch-map-container {
    max-width: 600px;
    height: 600px;
    background: rgba(8, 65, 198, 0.03);
    border: 1px solid rgba(8, 65, 198, 0.1);
    border-radius: var(--radius-lg);
    position: relative;
    padding: 40px;
    margin: 0 auto;
    overflow: visible;
    backdrop-filter: blur(5px);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.india-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

.india-outline {
    fill: rgba(8, 65, 198, 0.08);
    stroke: var(--primary-light);
    stroke-width: 1.5;
    transition: all 0.5s ease;
}

.branch-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 20;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.pin-marker {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow);
    z-index: 2;
    position: relative;
    border: 2px solid var(--white);
}

.pin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350%;
    height: 350%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
    z-index: 1;
    opacity: 0.6;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.pin-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
    border-top: 4px solid var(--primary-light);
    backdrop-filter: blur(10px);
    text-align: left;
}

.branch-pin:hover {
    z-index: 101;
}

.branch-pin:hover .pin-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pin-info h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pin-info p {
    font-size: 0.85rem;
    margin: 0;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .branch-map-container {
        height: 400px;
        padding: 15px;
    }

    .pin-info {
        width: 160px;
        padding: 10px;
        bottom: 25px;
    }

    .pin-info h5 {
        font-size: 0.95rem;
    }

    .pin-info p {
        font-size: 0.75rem;
    }
}

.form-feedback.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

/* ══════════════════════════════════════════════════════════════════════
   LEADERSHIP & TESTIMONIALS (High-Fidelity)
   ══════════════════════════════════════════════════════════════════════ */

.leader-card {
    background: var(--white, #fff);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e2e5ea;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.leader-card:hover,
.leader-card:focus-within {
    border-color: var(--primary, #f7941d);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.leader-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f2f2f2;
}

.leader-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.leader-card:hover .leader-photo-wrap img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.leader-photo-wrap::after {
    content: none;
}

.leader-body {
    padding: 20px 18px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leader-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary, #222c3c);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
    color: var(--primary, #f7941d);
}

.leader-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary, #6b7686);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.leader-desc {
    font-size: 0.9rem;
    line-height: 1.72;
    color: var(--text-secondary, #3d5068);
    flex: 1;
}

.cmd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary, #f7941d);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.leader-divider {
    width: 30px;
    height: 2px;
    background: #d8dce2;
    border-radius: 2px;
    margin: 6px 0 10px;
}

.leader-card .read-more-link {
    font-size: 0.8rem !important;
    color: var(--text-secondary, #6b7686) !important;
    justify-content: center !important;
    margin-top: 8px !important;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.leader-card:hover .read-more-link {
    opacity: 1;
    color: var(--primary, #f7941d) !important;
}

.leader-card--featured {
    flex-direction: row;
    align-items: stretch;
}

.leader-card--featured .leader-photo-wrap {
    width: 340px;
    min-width: 300px;
    aspect-ratio: unset;
    flex-shrink: 0;
    border-radius: 0;
}

.leader-card--featured .leader-body {
    padding: 36px 40px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.leader-card--featured .leader-name {
    font-size: 1.4rem;
}

.leader-card--featured .leader-role {
    font-size: 0.85rem;
}

.leader-card--featured .leader-desc {
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 96px 0 80px;
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 110, 245, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 110, 245, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 110, 245, 0.08);
    color: var(--primary, #0a6ef5);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.section-title-testi {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: #0d1b2e;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title-testi em {
    font-style: italic;
    color: var(--primary, #0a6ef5);
}

.section-subtitle {
    font-size: 1rem;
    color: #3d5068;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(10, 110, 245, 0.10);
    box-shadow: 0 4px 24px rgba(13, 27, 46, 0.07);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(10, 110, 245, 0.12);
}

.testi-card--featured {
    grid-column: 1 / 3;
    background: #0f172a;
    color: white;
    border-color: transparent;
}

.testi-card--tall {
    grid-row: 1 / 3;
    grid-column: 3 / 4;
}

.testi-card--accent {
    background: #0d1b2e;
    color: white;
    border-color: transparent;
}

.quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.2;
    font-style: italic;
    color: #0a6ef5;
}

.testi-card--featured .quote-icon,
.testi-card--accent .quote-icon {
    color: white;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.stars i {
    font-size: 0.82rem;
    color: #f59e0b;
}

.testi-body {
    font-size: 0.96rem;
    line-height: 1.78;
    color: #3d5068;
    flex: 1;
    margin-bottom: 26px;
}

.testi-card--featured .testi-body,
.testi-card--accent .testi-body {
    color: rgba(255, 255, 255, 0.85);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(10, 110, 245, 0.15);
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0a6ef5;
    overflow: hidden;
}

.testi-card--featured .author-avatar {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.testi-card--accent .author-avatar {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.author-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #0d1b2e;
}

.testi-card--featured .author-name,
.testi-card--accent .author-name {
    color: white;
}

.author-title {
    font-size: 0.78rem;
    color: #7a8fa6;
    margin-top: 2px;
}

.testi-card--featured .author-title,
.testi-card--accent .author-title {
    color: rgba(255, 255, 255, 0.65);
}

.company-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7a8fa6;
    margin-bottom: 16px;
}

.featured-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item {
    text-align: center;
}

@media (max-width: 991px) {
    .leader-card--featured {
        flex-direction: column;
    }

    .leader-card--featured .leader-photo-wrap {
        width: 100%;
        aspect-ratio: 16/7;
        min-width: unset;
    }

    .leader-card--featured .leader-body {
        padding: 28px 28px;
    }

    .leader-card--featured .leader-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-card--featured {
        grid-column: 1 / 3;
    }

    .testi-card--tall {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card--featured {
        grid-column: 1;
    }

    .testimonials-section {
        padding: 64px 0;
    }
}

/* ── Branch Map & Pins ────────────────────────────────────────────── */
.branch-map-container {
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    transition: var(--transition);
}

.branch-map-container:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.india-svg {
    transition: var(--transition);
}

.branch-pin {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.pin-marker {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(8, 65, 198, 0.4);
    transition: var(--transition-fast);
}

.branch-pin:hover .pin-marker {
    background: var(--white);
    border-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(8, 65, 198, 0.6);
}

/* Pulsing Effect */
.branch-pin.pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pinPulse 2s infinite;
    z-index: -1;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.pin-info {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 180px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    text-align: center;
    border: 1px solid var(--grey-100);
}

.branch-pin:hover .pin-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pin-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
}

.pin-info span {
    display: block;
    color: var(--grey-600);
    font-size: 0.8rem;
    line-height: 1.4;
}

.pin-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    border-bottom: 1px solid var(--grey-100);
    border-right: 1px solid var(--grey-100);
}

/* Highlight Corporate/Regd */
.branch-pin.corporate .pin-marker {
    background: #ff3e3e;
    width: 18px;
    height: 18px;
}

.branch-pin.regd .pin-marker {
    background: #00c853;
}



/* ══════════════════════════════════════════════════════════
   LEADERSHIP & TESTIMONIALS (High-Fidelity)
   ══════════════════════════════════════════════════════════ */

.leader-card {
    background: var(--white, #fff);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(10, 110, 245, 0.10);
    box-shadow: 0 4px 24px rgba(13, 27, 46, 0.07);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 110, 245, 0.14);
}

.leader-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.6;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
}

.leader-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo-wrap img {
    transform: scale(1.04);
}

.leader-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 80, 200, 0.18) 0%, transparent 100%);
    pointer-events: none;
}

.leader-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary, #0d1b2e);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.leader-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary, #0a6ef5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.leader-desc {
    font-size: 0.9rem;
    line-height: 1.72;
    color: var(--text-secondary, #3d5068);
    flex: 1;
}

.leader-card--featured {
    flex-direction: row;
    align-items: stretch;
}

.leader-card--featured .leader-photo-wrap {
    width: 340px;
    min-width: 300px;
    aspect-ratio: unset;
    flex-shrink: 0;
    border-radius: 0;
}

.leader-card--featured .leader-body {
    padding: 36px 40px;
    justify-content: center;
}

.leader-card--featured .leader-name {
    font-size: 1.6rem;
}

.leader-card--featured .leader-role {
    font-size: 0.85rem;
}

.leader-card--featured .leader-desc {
    font-size: 0.95rem;
}

/* ── Compact card variant (used on the Leadership page grid) ── */
.leader-card.leader-card--compact .leader-photo-wrap {
    aspect-ratio: 4 / 3.2;
}

.leader-card.leader-card--compact .leader-body {
    padding: 16px 18px 20px;
}

.leader-card.leader-card--compact .leader-name {
    font-size: 1rem;
}

.leader-card.leader-card--compact .leader-role {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.leader-card.leader-card--compact .leader-divider {
    width: 32px;
    height: 2px;
    margin: 6px 0 10px;
}

.leader-card.leader-card--compact .read-more-link {
    font-size: 0.85rem !important;
    margin-top: 14px !important;
}

/* ── Name + LinkedIn icon row ── */
.leader-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-name-row .leader-name {
    margin-bottom: 0;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0a66c2;
    color: #fff !important;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.leader-linkedin:hover {
    background: #084d92;
    transform: scale(1.1);
}

/* ── Leadership Team heading ── */
.leadership-heading {
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: #0d1b2e;
    text-align: center;
    margin-bottom: 8px;
}

.leadership-heading-divider {
    width: 60px;
    height: 3px;
    background: var(--primary, #0a6ef5);
    border-radius: 2px;
    margin: 0 auto 48px;
}

/* ── Vision band (moved below leadership grid) ── */
.vision-band {
    background: #f4f7fb;
    padding: 64px 0;
    margin-top: 60px;
}

.cmd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary, #0a6ef5);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.leader-divider {
    width: 40px;
    height: 3px;
    background: var(--primary, #0a6ef5);
    border-radius: 2px;
    margin: 10px 0 16px;
}

@media (max-width: 991px) {
    .leader-card--featured {
        flex-direction: column;
    }

    .leader-card--featured .leader-photo-wrap {
        width: 100%;
        aspect-ratio: 16/7;
        min-width: unset;
    }

    .leader-card--featured .leader-body {
        padding: 28px 28px;
    }

    .leader-card--featured .leader-name {
        font-size: 1.3rem;
    }
}

.leadership-hero {
    position: relative !important;
    min-height: 400px !important;

    display: flex !important;
    align-items: center !important;

    background-image: url('/images/leadership/leadership-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.leadership-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 26, 59, 0.55);
    z-index: 1;
}

.leadership-hero .container {
    position: relative;
    z-index: 2;
}

.leadership-hero h1 {
    color: white !important;
}

.leadership-hero .breadcrumb-item,
.leadership-hero .breadcrumb-item.active,
.leadership-hero .breadcrumb-item a {
    color: white !important;
}



/* ── Leadership Stats Band ── */
.leadership-stats-band {
    background: var(--navy, #071A3B);
    padding: 56px 0;
}

.stat-box {
    padding: 8px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #716767;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(154, 146, 146, 0.75);
    font-weight: 500;
}

/* ── Leadership Philosophy ── */
.leadership-philosophy {
    padding: 72px 0;
    background: var(--bg, #ffffff);
}

.philosophy-card {
    background: var(--card, #ffffff);
    border: 1px solid var(--border-color, #DCE6F2);
    border-radius: var(--radius-card, 18px);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: var(--transition, 0.3s ease);
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 22px 48px rgba(11, 31, 58, 0.14));
    border-color: transparent;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-lighter, #e8eefb);
    color: var(--primary, #0841c6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.philosophy-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   SHARED: FIRST-SECTION WHITE BG + BLUE HEADING THEME
   Applied to the first content section on Core Values,
   Vision & Mission, and Company Profile pages.
   ══════════════════════════════════════════════════════════ */
.section-theme-white {
    background: var(--bg, #ffffff);
}

.section-title-theme-blue {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--primary, #0841c6);
    line-height: 1.2;
    margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════
   CORE VALUES PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Section 1: Core Values Grid ── */
.core-values-section {
    padding: 90px 0 72px;
}

.value-card {
    background: var(--card, #ffffff);
    border: 1px solid var(--border-color, #DCE6F2);
    border-radius: var(--radius-card, 18px);
    padding: 34px 26px;
    height: 100%;
    transition: var(--transition, 0.3s ease);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 22px 48px rgba(11, 31, 58, 0.14));
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-lighter, #e8eefb);
    color: var(--primary, #0841c6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Section 2: Values in Action ── */
.values-in-action {
    padding: 72px 0;
    background: var(--bg-alt, #F3F7FC);
}

.action-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.action-item i {
    color: var(--primary, #0841c6);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.action-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 4px;
}

.action-item p {
    font-size: 0.9rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Responsive: Culture Highlights Band ── */
.culture-highlights-band {
    background: var(--navy, #071A3B);
    padding: 56px 0;
}

.culture-stat i {
    font-size: 1.8rem;
    color: var(--blue-bright, #1E88E5);
    margin-bottom: 10px;
    display: inline-block;
}

.culture-number {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.culture-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   VISION & MISSION PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Section 1: Vision & Mission Split Cards ── */
.vm-cards-section {
    padding: 90px 0 72px;
}

.vm-card {
    height: 100%;
    padding: 44px 36px;
    border-radius: var(--radius-card, 18px);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vm-card--vision {
    background: linear-gradient(135deg, var(--navy, #071A3B) 0%, var(--navy-2, #0E2A55) 100%);
}

.vm-card--mission {
    background: linear-gradient(135deg, var(--blue, #0B4F9E) 0%, var(--blue-bright, #1E88E5) 100%);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.vm-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.vm-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vm-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ── Section 2: Strategic Pillars ── */
.strategic-pillars-section {
    padding: 72px 0;
    background: var(--bg-alt, #F3F7FC);
}

.pillar-card {
    background: var(--card, #ffffff);
    border-radius: var(--radius-card, 18px);
    padding: 30px 24px;
    height: 100%;
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(11, 31, 58, 0.07));
    transition: var(--transition, 0.3s ease);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 22px 48px rgba(11, 31, 58, 0.14));
}

.pillar-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-lighter, #e8eefb);
    -webkit-text-stroke: 1.5px var(--primary, #0841c6);
    margin-bottom: 14px;
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Responsive: Milestone Timeline ── */
.milestone-timeline-section {
    padding: 72px 0;
}

.timeline-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

.timeline-item {
    flex: 1 1 220px;
    text-align: center;
    padding: 0 12px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary, #0841c6);
    margin: 0 auto 16px;
    box-shadow: 0 0 0 6px var(--primary-lighter, #e8eefb);
}

.timeline-year {
    display: block;
    font-weight: 700;
    color: var(--primary, #0841c6);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .timeline-wrap {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        max-width: 320px;
    }
}

/* ══════════════════════════════════════════════════════════
   COMPANY PROFILE PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Section 1: Company Overview ── */
.company-overview-section {
    padding: 90px 0 72px;
}

.overview-text {
    font-size: 0.98rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.75;
    margin-bottom: 18px;
}

.overview-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.overview-stat-box {
    background: var(--bg-alt, #F3F7FC);
    border-radius: var(--radius-card, 18px);
    padding: 28px 20px;
    text-align: center;
}

.overview-stat-number {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--primary, #0841c6);
    margin-bottom: 6px;
}

.overview-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary, #51637A);
    font-weight: 500;
}

/* ── Section 2: What We Do ── */
.what-we-do-section {
    padding: 72px 0;
    background: var(--bg-alt, #F3F7FC);
}

.service-mini-card {
    background: var(--card, #ffffff);
    border-radius: var(--radius-card, 18px);
    padding: 30px 24px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(11, 31, 58, 0.07));
    transition: var(--transition, 0.3s ease);
}

.service-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 22px 48px rgba(11, 31, 58, 0.14));
}

.service-mini-card i {
    font-size: 1.9rem;
    color: var(--primary, #0841c6);
    margin-bottom: 14px;
    display: inline-block;
}

.service-mini-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 8px;
}

.service-mini-card p {
    font-size: 0.88rem;
    color: var(--text-secondary, #51637A);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Responsive: Global Presence Band ── */
.global-presence-band {
    padding: 72px 0;
}

.presence-card {
    text-align: center;
    padding: 24px 14px;
    border: 1px solid var(--border-color, #DCE6F2);
    border-radius: var(--radius-card, 18px);
    height: 100%;
    transition: var(--transition, 0.3s ease);
}

.presence-card:hover {
    border-color: var(--primary, #0841c6);
    transform: translateY(-4px);
}

.presence-card i {
    font-size: 1.7rem;
    color: var(--primary, #0841c6);
    margin-bottom: 12px;
    display: inline-block;
}

.presence-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading, #0B1F3A);
    margin-bottom: 4px;
}

.presence-card p {
    font-size: 0.8rem;
    color: var(--text-secondary, #51637A);
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   SHARED RESPONSIVE ADJUSTMENTS (all three pages)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .vm-card {
        padding: 32px 24px;
    }

    .overview-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .core-values-section,
    .vm-cards-section,
    .company-overview-section {
        padding: 60px 0 48px;
    }

    .strategic-pillars-section,
    .what-we-do-section,
    .values-in-action,
    .milestone-timeline-section,
    .global-presence-band {
        padding: 48px 0;
    }
}



/* ══════════════════════════════════════════════════════════════════════
   LIGHT-THEME SERVICE PAGES (scoped override)
   Applies only on: aiops, cloud-managed-services, application-management,
   cybersecurity-services, staffing-workforce, network-secure-edge.
   Add class="light-service-page" to <body> on those pages only —
   every other page keeps the existing dark .page-hero untouched.
   ══════════════════════════════════════════════════════════════════════ */

body.light-service-page .page-hero {
    background: linear-gradient(160deg, #eff6ff 0%, #ffffff 80%);
    padding:70px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
}
body.light-service-page .page-hero::before,
body.light-service-page .page-hero::after {
    content: none;
}
body.light-service-page .page-hero .eyebrow {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--steel, #2563eb);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
body.light-service-page .page-hero h1 {
    color: var(--gray-900, #0f172a);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.15;
    max-width: 880px;
    margin: 0 auto 20px;
}
body.light-service-page .page-hero h1 #typed-text {
    color: var(--steel, #2563eb);
    border-right: 3px solid var(--steel, #2563eb);
    padding-right: 4px;
    animation: blink-caret-light 0.75s step-end infinite;
}
@keyframes blink-caret-light {
    from, to { border-color: transparent; }
    50% { border-color: var(--steel, #2563eb); }
}
body.light-service-page .page-hero .lead-copy {
    color: var(--gray-600, #475569);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

body.light-service-page .page-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 32px auto 0;
}
body.light-service-page .page-kpi {
    min-height: auto;
    background: #ffffff;
    border: 1px solid var(--gray-200, #e2e8f0);
    backdrop-filter: none;
    border-radius: 16px;
    padding: 22px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}
body.light-service-page .page-kpi:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}
body.light-service-page .page-kpi strong {
    color: var(--steel, #2563eb);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.6rem;
}
body.light-service-page .page-kpi span {
    color: var(--gray-500, #64748b);
    font-size: 0.88rem;
}

body.light-service-page .content-band {
    padding: 64px 0;
}
body.light-service-page .content-band.alt {
    background: var(--bg-alt, #f3f7fc);
}
body.light-service-page .section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
body.light-service-page .section-head .eyebrow {
    background: rgba(37, 99, 235, 0.06);
    color: var(--steel, #2563eb);
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
}
body.light-service-page .content-card {
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
body.light-service-page .content-card:hover {
    border-color: #b9d0f0;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.06);
}
body.light-service-page .content-card .card-num {
    background: rgba(37, 99, 235, 0.08);
    color: var(--steel, #2563eb);
    border-radius: 12px;
    font-family: 'IBM Plex Mono', monospace;
}

body.light-service-page .page-cta {
    background:  linear-gradient(
        135deg,
        #e8edf6 0%,
    );
}
body.light-service-page .page-cta h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}

@media (max-width: 768px) {
    body.light-service-page .page-hero {
        padding: 110px 0 40px;
    }
    body.light-service-page .page-hero h1 {
        font-size: 2rem;
    }
    body.light-service-page .page-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════════════════
   LIGHT-THEME INNER PAGE HERO (scoped override, no body class needed)
   Add class="page-hero page-hero-light" to any inner-page hero section
   built on @extends('layouts.app') — e.g. Infrastructure Solutions,
   Cyber Security, Cloud Solutions, AI Services, GDC/GCC Services.
   Leaves the default dark .page-hero (with breadcrumbs) untouched
   everywhere it isn't explicitly opted in.
   ══════════════════════════════════════════════════════════════════════ */

.page-hero.page-hero-light {
    background: linear-gradient(160deg, #eff6ff 0%, #ffffff 80%) !important;
    padding: 70px 0 60px !important;
    text-align: center;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
}
.page-hero.page-hero-light::before,
.page-hero.page-hero-light::after {
    content: none !important;
}
.page-hero.page-hero-light h1 {
    color: var(--gray-900, #0f172a) !important;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.15;
    max-width: 880px;
    margin: 0 auto 20px;
}
.page-hero.page-hero-light h1 #typed-text {
    color: var(--steel, #2563eb);
    border-right: 3px solid var(--steel, #2563eb);
    padding-right: 4px;
    animation: blink-caret-inner 0.75s step-end infinite;
}
@keyframes blink-caret-inner {
    from, to { border-color: transparent; }
    50% { border-color: var(--steel, #2563eb); }
}
.page-hero.page-hero-light .breadcrumb {
    justify-content: center;
}
.page-hero.page-hero-light .breadcrumb-item,
.page-hero.page-hero-light .breadcrumb-item a {
    color: var(--gray-500, #64748b) !important;
    font-size: 0.9rem;
}
.page-hero.page-hero-light .breadcrumb-item.active {
    color: var(--gray-800, #1e293b) !important;
}
.page-hero.page-hero-light .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-300, #cbd5e1) !important;
}

@media (max-width: 768px) {
    .page-hero.page-hero-light {
        padding: 110px 0 40px !important;
    }
    .page-hero.page-hero-light h1 {
        font-size: 2rem;
    }
}





