/*
 * GlobalCore KPO Stylesheet
 * Core Design System
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-navy: #1A3C6E;
  --light-blue: #E8F1F8;
  --accent-blue: #6699CC;
  --white: #FFFFFF;
  --dark-grey: #333333;
  --soft-grey: #B0BEC5;
  --bg-off-white: #F5F9FC;
  
  /* Problem & Solution Palette */
  --problem-bg: #FFF5F5;
  --problem-pill-bg: #FFF0F0;
  --problem-text: #CC3333;
  --solution-bg: #F0FFF5;
  --solution-pill-bg: #E8FCEF;
  --solution-text: #1A7A4A;
  
  /* Typography */
  --font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-subtle: 0 4px 24px rgba(26, 60, 110, 0.06);
  --shadow-header: 0 2px 12px rgba(26, 60, 110, 0.08);
  --shadow-strong: 0 12px 32px rgba(26, 60, 110, 0.12);
  --shadow-card-hover: 0 16px 40px rgba(26, 60, 110, 0.15);
  
  /* Layout Options */
  --max-width: 1280px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--dark-grey);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

h1 {
  font-size: 2.75rem; /* 44px */
}

h2 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
  display: block;
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}

.bg-light {
  background-color: var(--bg-off-white);
}

.bg-navy {
  background-color: var(--primary-navy);
  color: var(--white);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3 {
  color: var(--white);
}

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

.max-w-md {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-lg {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #1A3C6E;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26, 60, 110, 0.15);
}

.btn-primary:hover {
  background-color: #000000;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.btn-secondary:hover {
  background-color: var(--light-blue);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: var(--light-blue);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text:hover {
  color: var(--primary-navy);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF; /* Pure white navbar */
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.nav-scrolled {
  background-color: #FFFFFF; /* Remain white on scroll */
  box-shadow: 0 2px 16px rgba(26,60,110,0.10); /* Subtle shadow on scroll */
}

header.nav-scrolled .nav-container {
  height: 72px;
}

header.nav-scrolled .logo-wrapper img {
  width: 130px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 101px;
  padding: 1px 16px;
}

@media (max-width: 767px) {
  .nav-container {
    height: 92px;
    padding: 0 16px;
  }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.logo-wrapper img {
  width: 168px;
  height: auto;
  object-fit: contain;
  border: none;
  border-radius: 0;
  transition: var(--transition-smooth);
}

@media (max-width: 767px) {
  .logo-wrapper img {
    width: 156px;
  }
}

img.navbar-logo {
  mix-blend-mode: normal;
  background: transparent;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: #1A3C6E; /* Navy links on white bg */
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #6699CC; /* Accent blue on hover/active */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Hamburger & Mobile Nav Drawer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1A3C6E; /* Dark navy lines for white navbar */
  margin: 5px 0;
  transition: var(--transition-smooth);
}

header.nav-scrolled .menu-toggle span {
  background-color: #1A3C6E;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem 2rem;
  gap: 2rem;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.25rem;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Section Header styling */
.section-header {
  margin-bottom: 3.5rem;
}

/* Home Hero Section */
.hero-section {
  min-height: 90vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #D0E8F5 0%,
    #E8F4FD 40%,
    #C8E2F2 70%,
    #D8EEFA 100%
  );
  overflow: hidden;
  z-index: 0;
}

/* Abstract Background Layers */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26,60,110,0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 2; /* Stacking Layer 2: Dot Grid */
}

.hero-abstract-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* Stacking Layer 1: SVG Lines & Circles */
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3; /* Stacking Layer 3: Glow Orbs */
}

.hero-glow-orb.orb-1 {
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.60) 0%,
    transparent 65%
  );
}

.hero-glow-orb.orb-2 {
  bottom: -180px;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(26,60,110,0.08) 0%,
    transparent 65%
  );
}

.hero-section .container {
  position: relative;
  z-index: 10;
}

/* Hero visual and infographic column styling */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-infographic-container {
  position: relative;
  width: 500px;
  height: 400px;
  max-width: 100%;
}

.hero-infographic-svg {
  width: 100%;
  height: 100%;
}

.hub-line {
  stroke: rgba(26,60,110,0.30);
  stroke-width: 1.5px;
  stroke-dasharray: 6 4;
  fill: none;
}

/* Animated Infographic Flow & Pulses */
.canada-flow {
  animation: flowToHub 2s linear infinite;
  animation-delay: 0s;
}

.usa-flow {
  animation: flowToHub 2s linear infinite;
  animation-delay: 0.4s;
}

.uk-flow {
  animation: flowToHub 2s linear infinite;
  animation-delay: 0.8s;
}

.india-flow {
  animation: flowToHub 2s linear infinite;
  animation-delay: 1.2s;
}

.australia-flow {
  animation: flowToHub 2s linear infinite;
  animation-delay: 1.6s;
}

@keyframes flowToHub {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.hub-outer.animate-hub-pulse {
  animation: hubPulse 2s ease-in-out infinite;
}

@keyframes hubPulse {
  0% {
    r: 28px;
    opacity: 0.9;
  }
  50% {
    r: 34px;
    opacity: 0.4;
  }
  100% {
    r: 28px;
    opacity: 0.9;
  }
}

.pin-dot {
  animation: pinPulse 2s ease-in-out infinite;
}

.pin-dot-canada {
  animation-delay: 0s;
}

.pin-dot-usa {
  animation-delay: 0.3s;
}

.pin-dot-uk {
  animation-delay: 0.6s;
}

.pin-dot-india {
  animation-delay: 0.9s;
}

.pin-dot-australia {
  animation-delay: 1.2s;
}

@keyframes pinPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hub-outer {
  fill: rgba(26,60,110,0.05);
  stroke: rgba(26,60,110,0.5);
  stroke-width: 1.5px;
}

.hub-inner {
  fill: #1A3C6E;
}

.hub-text {
  font-size: 9px;
  fill: #FFFFFF;
  font-weight: 800;
  text-anchor: middle;
}

.pin-shape {
  fill: #1A3C6E;
  filter: drop-shadow(0 4px 12px rgba(26,60,110,0.25));
}

.pin-label {
  fill: #1A3C6E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-anchor: middle;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content .eyebrow {
  color: #4A7FA8 !important;
}

/* Hero Company Name — GlobalCore KPO */
.hero-company-name {
  font-size: 2.25rem;        /* Stepped down from the base h1 2.75rem */
  font-weight: 700;
  color: #1A3C6E;
  letter-spacing: 0.02em;
  margin-top: 50px;          /* Push heading ~50px lower than default */
  margin-bottom: 0;
  line-height: 1.2;
}

/* "KPO" part — normal weight, not bold */
.kpo-text {
  font-weight: 400;
  color: #4A7FA8;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #1A3C6E;
  line-height: 1.2;
  display: block;
  margin-bottom: 0;
  max-width: 560px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #4A7FA8;
  font-style: italic;
  margin-top: 12px;
  display: block;
  letter-spacing: 0.01em;
}

/* Custom specific hero CTA buttons for light background */
#hero-primary-cta {
  background-color: #1A3C6E !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border: 2px solid #1A3C6E !important;
  border-radius: 8px !important;
}

#hero-primary-cta:hover {
  background-color: #0D2348 !important;
  color: #FFFFFF !important;
  border-color: #0D2348 !important;
}

#hero-secondary-cta {
  color: #1A3C6E !important;
}

#hero-secondary-cta:hover {
  color: #0D2348 !important;
  text-decoration: underline !important;
}

/* Hero Network SVG overrides for dark background contrast */
.hero-network-svg text {
  fill: #FFFFFF !important;
}
.hero-network-svg circle[fill="#E8F1F8"] {
  fill: rgba(255, 255, 255, 0.15) !important;
}
.hero-network-svg circle[stroke="#1A3C6E"] {
  stroke: #93C5FD !important;
}
.hero-network-svg circle[fill="#1A3C6E"] {
  fill: #6699CC !important;
}
.hero-network-svg circle[fill="#1A3C6E"][r="26"] {
  fill: #1A3C6E !important; /* Keep GC central hub background dark navy */
}
.hero-network-svg circle[fill="#1A3C6E"][r="4"] {
  fill: #FFFFFF !important;
}

.hero-subtext {
  font-size: 1.125rem;
  color: #2A5A80;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ===== HERO RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-company-name {
    text-align: center;
    margin-top: 30px;  /* Reduced from 50px desktop on tablet */
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 38px;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    height: auto;
  }

  .hero-infographic-container {
    width: 380px;
    height: 300px;
  }
}

/* ===== HERO RESPONSIVE — MOBILE (≤767px) ===== */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-company-name {
    font-size: 1.75rem;
    text-align: center;
    margin-top: 0;     /* Remove extra push on mobile — layout is already stacked */
    margin-bottom: 0;
  }

  .hero-content {
    align-items: center;
  }

  .hero-content .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-top: 8px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  #hero-primary-cta {
    width: 100%;
    text-align: center;
    font-size: 0.9rem !important;
    padding: 0.85rem 1.25rem !important;
  }

  .hero-visual {
    height: auto;
  }

  .hero-infographic-container {
    width: 280px;
    height: 220px;
    margin: 0 auto;
  }

  /* Scale down pin labels on mobile */
  .pin-label {
    font-size: 10px;
  }
}

/* ===== HERO RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 2.5rem;
  }

  .hero-company-name {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-infographic-container {
    width: 240px;
    height: 190px;
  }
}


.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-blue);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-navy);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  color: var(--accent-blue);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Map Network SVG styling */
.hero-network-svg {
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

/* Stats Matrix Card Grid */
.stat-card {
  background-color: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stat-icon-wrapper i {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.stat-number {
  font-size: 3rem; /* 48px */
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.8125rem; /* 13px */
  color: #444444;
  line-height: 1.6;
}

/* Why GlobalCore Grid */
.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #555555;
  margin-bottom: 0;
}

/* Problem & Solution Section Layout */
.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-solution-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.problem-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ps-card-header {
  padding: 1.5rem 1.75rem 0.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ps-card-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-card-header-icon i {
  font-size: 1.125rem;
  color: var(--primary-navy);
}

.problem-zone {
  background-color: var(--problem-bg);
  padding: 1rem 1.75rem 1.75rem 1.75rem;
  flex-grow: 1;
}

.solution-zone {
  background-color: var(--solution-bg);
  padding: 1.75rem;
}

.ps-pill {
  font-size: 0.625rem; /* 10px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ps-pill-problem {
  background-color: var(--problem-pill-bg);
  color: var(--problem-text);
}

.ps-pill-solution {
  background-color: var(--solution-pill-bg);
  color: var(--solution-text);
}

.ps-title-problem {
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.ps-title-solution {
  font-size: 1rem; /* 16px */
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.ps-desc-problem {
  font-size: 0.875rem; /* 14px */
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
}

.ps-desc-solution {
  font-size: 0.875rem; /* 14px */
  color: #3A5A7A;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ps-divider {
  height: 1px;
  background-color: var(--light-blue);
  width: 100%;
}

.ps-metrics-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px dashed rgba(26,60,110,0.15);
  padding-top: 0.75rem;
}

.ps-metric-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem; /* 12px */
  font-weight: 500;
  color: var(--primary-navy);
  gap: 0.5rem;
}

.ps-metric-item i {
  color: var(--accent-blue);
  font-size: 0.75rem;
}

/* Services Grid (Overview) */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-tile {
  background-color: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.service-tile i {
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.service-tile h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-tile p {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-tile .tile-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-tile:hover .tile-link {
  color: var(--primary-navy);
}

/* Software Ticker */
.ticker-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-off-white);
  border-top: 1px solid var(--light-blue);
  border-bottom: 1px solid var(--light-blue);
  overflow: hidden;
  position: relative;
}

.ticker-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-bottom: 2rem;
}

.ticker-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-track-2 {
  display: none;
  margin-top: 1rem;
}

/* Pause scroll animation on hover */
.ticker-container:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-badge,
.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 20px;
  min-width: fit-content;
  border: 1px solid #1A3C6E;
  border-radius: 8px;
  background: #E8F4FD;
  color: #1A3C6E;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.ticker-badge:hover,
.platform-badge:hover {
  transform: translateY(-2px);
  background-color: var(--white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-subtle);
}

.ticker-logo {
  height: 20px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
  vertical-align: middle;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.ticker-badge:hover .ticker-logo,
.platform-badge:hover .ticker-logo {
  opacity: 1;
  transform: scale(1.12);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* What You Gain Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual-svg {
  width: 100%;
  max-width: 480px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-block {
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-icon i {
  color: var(--primary-navy);
  font-size: 0.75rem;
}

.benefit-block-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.benefit-block-content p {
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 0;
}

/* Calendly Section styling */
.calendly-section {
  position: relative;
}

.calendly-card {
  background-color: var(--white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-strong);
  padding: 3rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.calendly-intro {
  margin-bottom: 2.5rem;
}

.calendly-intro h2 {
  color: var(--primary-navy);
}

.calendly-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.8125rem;
  color: var(--soft-grey);
  margin-top: 2rem;
  border-top: 1px solid var(--light-blue);
  padding-top: 1.5rem;
}

/* Services Detail Layouts (Alternating Sections) */
.services-hero {
  padding-top: 160px;
  padding-bottom: 5rem;
}

.services-detail-section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-detail-grid.reverse .service-detail-content {
  order: 2;
}

.service-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.service-detail-content p {
  font-size: 0.9375rem;
  color: #555555;
  margin-bottom: 1.25rem;
}

.deliverables-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.deliverables-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deliverables-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #444444;
}

.deliverables-list li i {
  color: var(--accent-blue);
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.platforms-used {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.platforms-used span.label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-right: 0.5rem;
}

.platform-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: var(--light-blue);
  color: var(--primary-navy);
}

.service-detail-visual {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-blue);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}

.service-visual-icon i {
  font-size: 2.5rem;
  color: var(--primary-navy);
}

/* About Us Layouts */
.about-hero {
  padding-top: 160px;
  padding-bottom: 5rem;
}

.about-prose-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-prose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-prose-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.about-prose-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333333;
}

.values-grid, .vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card, .vision-card {
  background-color: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.value-card:hover, .vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.value-card i, .vision-card i {
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.value-card h3, .vision-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p, .vision-card p {
  font-size: 0.8125rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Leadership Team Grid styling */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-blue);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  box-shadow: var(--shadow-strong);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-subtle);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.team-title-tag {
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background-color: var(--light-blue);
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.team-bio {
  font-size: 0.8125rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Page specific styles */
.contact-hero {
  padding-top: 160px;
  padding-bottom: 5rem;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-blue);
  padding: 3rem;
  box-shadow: var(--shadow-subtle);
}

.form-title {
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--soft-grey);
  font-size: 0.9375rem;
  color: var(--dark-grey);
  transition: var(--transition-fast);
  background-color: var(--bg-off-white);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary-navy);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,60,110,0.1);
}

.phone-input-wrapper {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-blue);
  padding: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-navy);
}

.info-details h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.info-details p, .info-details a {
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 0;
}

.certifications-block {
  margin-top: 1.5rem;
}

.cert-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--primary-navy);
  color: var(--primary-navy);
  display: inline-block;
  background-color: var(--white);
}

.response-note {
  font-size: 0.8125rem;
  color: #666666;
  font-style: italic;
  margin-top: 1rem;
}

.map-placeholder {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--light-blue);
  position: relative;
  background-color: #e5e9f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle, #6699cc 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-blue);
  position: relative;
  z-index: 2;
}

/* Global Footer styling */
footer {
  background-color: var(--primary-navy); /* Signature navy footer */
  color: var(--white);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p {
  color: var(--soft-grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
  mix-blend-mode: normal;
  background-color: transparent !important;
  padding: 0;
  border-radius: 0;
}

.footer-column h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-blue);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul a {
  color: var(--soft-grey);
  transition: var(--transition-fast);
}

.footer-column ul a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}

.footer-iso {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--soft-grey);
}

.footer-iso i {
  color: var(--accent-blue);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--soft-grey);
  font-size: 0.8125rem;
}

/* Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.scroll-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  
  .hero-grid { gap: 2rem; }
  .hero-title { font-size: 36px; max-width: 440px; }
  .hero-subtitle { font-size: 18px; }
  .hero-visual { height: 380px; }
  
  .problem-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid, .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
  
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 28px;
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-content {
    align-items: flex-start;
  }
  
  .hero-subtext {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .trust-bar {
    justify-content: flex-start;
  }
  
  .hero-visual {
    height: 300px;
    order: -1;
  }
  
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefits-visual {
    order: -1;
  }
  
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-detail-grid.reverse .service-detail-content {
    order: unset;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid, .vision-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .ticker-track {
    animation: scroll 20s linear infinite;
  }
  
  .ticker-track-2 {
    display: flex;
    animation: scroll 20s linear infinite reverse;
  }
  
  .banner-section {
    padding-top: 130px;
    padding-bottom: 3rem;
  }
  
  .banner-section h1 {
    font-size: 2.25rem !important;
  }
  
  .calendly-section {
    padding: 60px 0 !important;
  }
  
  .ps-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .ps-tab-btn {
    white-space: nowrap;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  
  .hero-infographic-container {
    height: auto;
    aspect-ratio: 5 / 4;
    max-height: 300px;
    margin: 0 auto;
  }
}

/* Home Hero Section Company Name Display */
.hero-company-name {
  font-family: var(--font-family);
  font-size: 72px;
  font-weight: 900;
  color: #1A3C6E;
  text-shadow: none;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  width: 100%;
}

@media (max-width: 1199px) {
  .hero-company-name {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-company-name {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
}

/* Redesigned Problem & Solution Section */
.redesigned-problem-solution {
  background-color: #F5F9FC;
  padding-top: 5rem;
  padding-bottom: 8rem; /* Extra bottom padding for solution card translation */
  position: relative;
  overflow: hidden;
}

.ps-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

.ps-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 900px;
}

.ps-tab-btn {
  background-color: var(--white);
  color: #333333;
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.ps-tab-btn:hover {
  background-color: var(--light-blue);
  border-color: var(--accent-blue);
}

.ps-tab-btn.active {
  background-color: #1A3C6E;
  color: var(--white);
  border-color: #1A3C6E;
  box-shadow: 0 4px 12px rgba(26, 60, 110, 0.2);
}

.ps-content-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.ps-tab-content {
  display: none;
  width: 100%;
  animation: psFadeIn 0.4s ease forwards;
}

.ps-tab-content.active {
  display: block;
}

@keyframes psFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ps-heading {
  font-size: 40px;
  font-weight: 800;
  color: #1A3C6E;
  margin-bottom: 2.5rem;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(26, 60, 110, 0.15);
  padding-bottom: 0.75rem;
}

.ps-cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  align-items: start;
}

.ps-card {
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.ps-card-problem {
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ps-card-solution {
  background-color: #EBF5FF;
  box-shadow: 0 4px 20px rgba(26,60,110,0.10);
  transform: translateY(40px);
}

.ps-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 24px;
  font-weight: 700;
  color: #1A3C6E;
  margin-bottom: 1.25rem;
}

.dot-problem {
  width: 12px;
  height: 12px;
  background-color: #CC8800;
  border-radius: 50%;
  display: inline-block;
}

.dot-solution {
  width: 12px;
  height: 12px;
  background-color: #1A7A4A;
  border-radius: 50%;
  display: inline-block;
}

.ps-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A3C6E;
  margin-bottom: 0.5rem;
}

.ps-card-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1.25rem;
}

.ps-card-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
}

.highlight-problem {
  font-weight: 700;
  color: #CC8800;
}

.highlight-solution {
  font-weight: 700;
  color: #1A3C6E;
}

/* Curved Arrow Styles */
.ps-arrow-container {
  position: absolute;
  top: 15%;
  left: calc(50% - 80px);
  width: 160px;
  height: 100px;
  z-index: 10;
  pointer-events: none;
}

.ps-arrow-svg {
  width: 100%;
  height: 100%;
}

/* Bottom Actions link styling */
.ps-footer-actions {
  margin-top: 6rem;
  display: flex;
  justify-content: flex-start;
}

.btn-by-the-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1A3C6E;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(26,60,110,0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-by-the-numbers:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26,60,110,0.25);
  color: var(--white);
}

.btn-dot {
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
  display: inline-block;
}

/* Responsive styles for redesigned P&S section */
@media (max-width: 991px) {
  .ps-arrow-container {
    display: none;
  }
  
  .ps-cards-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ps-card-solution {
    transform: translateY(0);
  }

  .redesigned-problem-solution {
    padding-bottom: 5rem;
  }
  
  .ps-footer-actions {
    margin-top: 3.5rem;
    justify-content: center;
  }
}

/* Navbar CTA Button */
#nav-cta-btn {
  background-color: #1A3C6E !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  transition: var(--transition-fast) !important;
}

#nav-cta-btn:hover {
  background-color: #0D2348 !important;
  color: #FFFFFF !important;
  transform: none !important;
}

/* Home Hero Section Logo */
.hero-logo-container {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
  border: none;
}

.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .hero-logo {
    height: 90px;
  }
}

/* Mobile Nav Drawer links color override */
.mobile-nav-drawer .nav-link {
  color: var(--primary-navy);
}

.mobile-nav-drawer .nav-link:hover,
.mobile-nav-drawer .nav-link.active {
  color: var(--accent-blue);
}

/* ==========================================================================
   NEW VISUAL AND LAYOUT UPDATES (CHANGE 1, 2, 3, 4)
   ========================================================================== */

/* Banner Section Style (Services, About, Contact Banners) */
.banner-section {
  position: relative;
  background: linear-gradient(
    135deg,
    #D0E8F5 0%,
    #E8F4FD 40%,
    #C8E2F2 70%,
    #D8EEFA 100%
  );
  color: #1A3C6E;
  padding-top: 160px;
  padding-bottom: 5rem;
  overflow: hidden;
  z-index: 0;
}

.banner-section h1 {
  color: #1A3C6E !important;
  font-weight: 800 !important;
}

.banner-section .breadcrumb,
.banner-section .breadcrumb a {
  color: #4A7FA8 !important;
}

.banner-section .subtitle,
.banner-section p {
  color: #2A5A80 !important;
}

/* Floating Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(26, 60, 110, 0.25);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
}

/* Breathing Glow Orbs */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.18;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.28;
  }
}

.banner-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.banner-glow-orb.orb-1 {
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.60) 0%,
    transparent 65%
  );
  animation: breathe 6s ease-in-out infinite;
}

.banner-glow-orb.orb-2 {
  bottom: -180px;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(26, 60, 110, 0.08) 0%,
    transparent 65%
  );
  animation: breathe 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* SVG Diagonal Lines Shimmer */
@keyframes shimmer {
  0%, 100% { opacity: 0.07; }
  50% { opacity: 0.14; }
}

.shimmer-line {
  animation: shimmer 4s ease-in-out infinite;
}

.shimmer-line:nth-child(1) { animation-delay: 0s; }
.shimmer-line:nth-child(2) { animation-delay: 0.5s; }
.shimmer-line:nth-child(3) { animation-delay: 1.0s; }
.shimmer-line:nth-child(4) { animation-delay: 1.5s; }
.shimmer-line:nth-child(5) { animation-delay: 2.0s; }
.shimmer-line:nth-child(6) { animation-delay: 2.5s; }
.shimmer-line:nth-child(7) { animation-delay: 3.0s; }
.shimmer-line:nth-child(8) { animation-delay: 3.5s; }

/* Apply breathe to existing hero orbs */
.hero-glow-orb.orb-1 {
  animation: breathe 6s ease-in-out infinite !important;
}

.hero-glow-orb.orb-2 {
  animation: breathe 6s ease-in-out infinite !important;
  animation-delay: 3s !important;
}

/* Standardized Calendly Section */
.calendly-section {
  background-color: #1A3C6E !important;
  padding: 80px 0 !important;
  position: relative;
  z-index: 5;
}

.calendly-section .eyebrow {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: rgba(255, 255, 255, 0.65) !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  text-align: center !important;
}

.calendly-section h2 {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  text-align: center !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
}

@media (max-width: 767px) {
  .calendly-section h2 {
    font-size: 28px !important;
  }
}

.calendly-section .subtext {
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  text-align: center !important;
  max-width: 560px !important;
  margin: 0 auto 40px !important;
  line-height: 1.6 !important;
}

.calendly-section .calendly-container {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.calendly-section .trust-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 32px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.60) !important;
  margin-top: 2.5rem !important;
  border-top: none !important;
  padding-top: 0 !important;
}

/* Service Page Image Card Overlays & Zoom */
.service-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(26, 60, 110, 0.40) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.service-image-container:hover img {
  transform: scale(1.05);
}

/* Staggered card reveal on scroll */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: none; /* Let CSS animation handle it */
}

.reveal-card.revealed {
  animation: cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* About Us Leadership Redesign (Change 4) */
.team-grid-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.team-row-1 {
  width: 100%;
}

.team-row-2,
.team-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 767px) {
  .team-row-2,
  .team-row-3 {
    grid-template-columns: 1fr;
  }
}

.team-card-v2 {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(26, 60, 110, 0.08);
  border-left: 4px solid #1A3C6E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
}

.team-card-v2.revealed {
  animation: cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.team-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 60, 110, 0.15);
}

.team-card-v2.founder-card {
  background: linear-gradient(
    135deg,
    #F0F7FF 0%,
    #FFFFFF 100%
  );
  padding: 48px;
}

.founder-badge {
  background: #1A3C6E;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.team-card-v2 .team-name {
  font-size: 22px;
  font-weight: 800;
  color: #1A3C6E;
  margin-bottom: 4px;
  line-height: 1.2;
}

.team-card-v2.founder-card .team-name {
  font-size: 28px;
}

.team-card-v2 .team-role {
  font-size: 14px;
  font-weight: 600;
  color: #6699CC;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  margin-bottom: 12px;
}

.team-card-v2 .team-bio-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ====== Key Facts Row (Problem & Solution Section) ====== */
.ps-facts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26,60,110,0.04);
  border-radius: 12px;
  padding: 20px 32px;
  margin-top: 24px;
  width: 100%;
}

.ps-fact-item {
  flex: 1;
  text-align: center;
}

.ps-fact-number {
  font-size: 28px;
  font-weight: 800;
  color: #1A3C6E;
  line-height: 1.2;
}

.ps-fact-label {
  font-size: 11px;
  font-weight: 600;
  color: #6699CC;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.ps-fact-separator {
  width: 1px;
  height: 40px;
  background-color: #E8F1F8;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ps-facts-row {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }
  .ps-fact-separator {
    display: none;
  }
}

