/* ==========================================================================
   ZIPROX LLP - CORE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap');

/* CSS Variables & Design Tokens */
:root {
  /* Brand Color Palette */
  --primary-blue: #2D68C4;
  --primary-blue-dark: #1E4B94;
  --primary-blue-light: #4D85DE;
  --vibrant-teal: #00B4D8;
  --teal-glow: rgba(0, 180, 216, 0.15);
  --accent-purple: #7B2CBF;
  --warm-orange: #F77F00;
  --orange-light: #FF9E00;
  
  /* Neutral Palette */
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F1F5F9;
  --bg-dark-slate: #0F172A;
  --bg-dark-surface: #1E293B;
  
  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  /* UI Elements & Shadows */
  --border-color: #E2E8F0;
  --border-focus: #00B4D8;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(45, 104, 196, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(45, 104, 196, 0.1);
  --shadow-glow: 0 0 25px rgba(0, 180, 216, 0.25);
  
  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

@supports not (overflow-x: clip) {
  html, body {
    overflow-x: hidden;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-surface-alt);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  background: rgba(45, 104, 196, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 104, 196, 0.15);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

/* Buttons & CTA Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1D4ED8 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(45, 104, 196, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 104, 196, 0.45);
  background: linear-gradient(135deg, #1D4ED8 0%, var(--primary-blue-dark) 100%);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--primary-blue);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue-dark);
  background-color: rgba(45, 104, 196, 0.04);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--warm-orange) 0%, #EA580C 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(247, 127, 0, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 127, 0, 0.45);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Header & Navigation Bar */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-container nav {
  margin-left: auto;
  margin-right: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 68px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.35rem);
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active {
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-teal));
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface);
  z-index: 10001;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.85rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  transition: all var(--transition-fast);
  position: relative;
}

.mobile-nav-links .nav-link:hover {
  color: var(--primary-blue);
  background-color: rgba(45, 104, 196, 0.06);
}

.mobile-nav-links .nav-link.active {
  color: var(--primary-blue) !important;
  background: linear-gradient(135deg, rgba(45, 104, 196, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
  font-weight: 700;
  border: 1px solid rgba(0, 180, 216, 0.3);
  box-shadow: 0 4px 12px rgba(45, 104, 196, 0.08);
}

.mobile-nav-links .nav-link.active::after {
  display: none;
}

.mobile-nav-cta {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.mobile-nav-cta .btn {
  width: 100%;
  max-width: 220px;
  padding: 0.68rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1D4ED8 100%);
  color: var(--text-white) !important;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(45, 104, 196, 0.35);
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   PAGE: HOME PAGE (index.html)
   ========================================================================== */

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 6rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(45, 104, 196, 0.08) 0%, transparent 40%),
              var(--bg-main);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.text-center .hero-cta-group {
  justify-content: center;
}

.hero-badges {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--teal-glow);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Visual Card Showcase in Hero */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-stack:hover .hero-card-bg-image {
  transform: scale(1.04);
}

.hero-glass-floating {
  position: absolute;
  bottom: 25px;
  left: -20px;
  right: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Stats / Metrics Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background-color: var(--bg-surface);
  padding: 2.25rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.4);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.stat-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* Service Card Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 104, 196, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 100%);
  color: var(--text-white);
  box-shadow: 0 6px 15px rgba(0, 180, 216, 0.3);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--vibrant-teal);
  gap: 0.7rem;
}

/* Feature Matrix & Why Choose Us */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(0, 180, 216, 0.15);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE: ABOUT US PAGE (about.html)
   ========================================================================== */

/* Mission & Vision Section */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.mv-card {
  background-color: var(--bg-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--vibrant-teal));
}

.mv-card.vision::before {
  background: linear-gradient(180deg, var(--warm-orange), var(--accent-purple));
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

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

.team-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-bounce), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 104, 196, 0.3);
}

/* Avatar Frame & Rounded Styling */
.avatar-frame {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 50%, var(--warm-orange) 100%);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(45, 104, 196, 0.18);
  transition: transform var(--transition-normal);
}

.team-card:hover .avatar-frame {
  transform: scale(1.05);
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-surface-alt);
}

.team-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vibrant-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.team-bio strong {
  color: var(--text-main, #0f172a);
  font-weight: 700;
}

.team-bio em {
  font-style: italic;
  color: #1e293b;
}

.team-bio u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--primary-blue, #0077b6);
  color: var(--text-main, #0f172a);
}

.team-email-btn {
  width: 100%;
  margin-top: auto;
}

/* ==========================================================================
   PAGE: SERVICES PAGE (services.html)
   ========================================================================== */

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-detail-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  height: 100%;
  transition: all var(--transition-normal);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-4px);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 100%);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.service-detail-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-detail-body p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-pill {
  font-size: 0.85rem;
  font-weight: 600;
  background-color: var(--bg-surface-alt);
  color: var(--text-main);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

/* Delivery Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--vibrant-teal);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue);
  background: rgba(45, 104, 196, 0.1);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border: 2px solid rgba(45, 104, 196, 0.2);
  transition: all var(--transition-normal);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-teal));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PAGE: CONTACT US PAGE (contact.html)
   ========================================================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-card {
  background-color: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: var(--teal-glow);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-content p, .contact-info-content a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-content a:hover {
  color: var(--primary-blue);
}

/* Contact Form Styling */
.contact-form-container {
  background-color: var(--bg-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

/* Universal Form Elements & Grids */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.form-input,
.form-control,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.975rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface-alt);
  color: var(--text-main);
  transition: all var(--transition-fast);
  box-sizing: border-box;
  display: block;
}

select.form-input,
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-input:focus,
.form-control:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vibrant-teal);
  background-color: var(--bg-surface);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

textarea.form-textarea,
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error-msg {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-control,
.form-group.error .form-textarea {
  border-color: #DC2626 !important;
  background-color: #FEF2F2;
}

.form-group.error .form-error-msg {
  display: block;
}

/* Notification Toast */
.toast-notification {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--bg-dark-slate);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */

.footer {
  background-color: var(--bg-dark-slate);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand img {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--vibrant-teal);
}

/* Footer Contact Details with Icons */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--vibrant-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  }

  .nav-container {
    height: 70px;
  }

  .hero-grid, .feature-split, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nav-links, .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .nav-container {
    height: 66px;
  }

  .brand-logo img {
    height: 42px;
    max-width: 180px;
  }

  /* Reduce Excessive White Space on Mobile Devices */
  .section {
    padding: 2.25rem 0 !important;
  }

  .hero, section.hero, section.hero[style] {
    padding: 2.5rem 0 1.75rem 0 !important;
  }

  .section-title {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin: 0 auto 1.25rem auto !important;
  }

  .hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-badges {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-badge-item {
    width: 100%;
    max-width: 260px;
    justify-content: flex-start;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .modal-container {
    padding: 1.75rem 1.25rem !important;
  }

  #modal-next-btn {
    max-width: 240px;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  #modal-back-btn,
  #modal-submit-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    min-width: 90px;
  }

  .services-detail-grid, 
  .services-grid, 
  .team-grid, 
  .stats-grid, 
  .mission-vision-grid, 
  .process-grid,
  .perks-grid,
  .jobs-grid,
  .culture-grid,
  .feature-split,
  .contact-wrapper {
    grid-template-columns: 1fr;
    margin-top: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .job-filter-container {
    margin-bottom: 1.5rem !important;
    gap: 0.5rem;
  }

  .application-section {
    padding: 2.25rem 0 !important;
  }

  .application-card, .contact-form-container {
    padding: 1.75rem 1.25rem !important;
  }

  .faq-accordion {
    margin-top: 1.25rem !important;
    gap: 0.75rem;
  }

  /* Center Card Icons & Content on Mobile Devices */
  .service-card, .perk-card {
    text-align: center;
    align-items: center;
  }

  .service-card > div:first-child,
  .perk-card > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .service-icon-box,
  .perk-icon-box,
  .service-detail-icon,
  .contact-info-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1rem !important;
  }

  .service-link {
    justify-content: center;
    margin: 0 auto;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    text-align: center;
    justify-items: center;
  }

  .service-pill-list {
    justify-content: center;
  }

  .contact-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2rem !important;
    gap: 1.75rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 62px;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ==========================================================================
   MODAL POPUP STYLING
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-surface);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-bounce);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--primary-blue);
  color: var(--text-white);
  border-color: var(--primary-blue);
}

.modal-header {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.modal-header h3 {
  font-size: 1.75rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Multi-Step Modal Progress Bar & Step Navigation */
.modal-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-surface-alt);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--vibrant-teal) 100%);
  border-radius: var(--radius-full);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--primary-blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
  animation: fadeInStep 0.3s ease forwards;
}

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

.modal-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 1.5rem;
}

#modal-back-btn,
#modal-submit-btn {
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  min-width: 100px;
  justify-content: center;
}

#modal-next-btn {
  width: 100%;
  max-width: 250px;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  margin: 1.25rem auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* ==========================================================================
   TALK TO ZIPROX - PHONE & WHATSAPP CONTACT OPTIONS MODAL
   ========================================================================== */

.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
}

.contact-option-card {
  background: var(--bg-surface-alt, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal, 0.3s ease);
}

.contact-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.contact-option-card.phone-card {
  border-top: 4px solid var(--primary-blue, #0077b6);
}

.contact-option-card.phone-card:hover {
  border-color: var(--primary-blue, #0077b6);
}

.contact-option-card.whatsapp-card {
  border-top: 4px solid #25D366;
}

.contact-option-card.whatsapp-card:hover {
  border-color: #25D366;
  box-shadow: 0 12px 24px -6px rgba(37, 211, 102, 0.2);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform var(--transition-fast, 0.2s ease);
}

.contact-option-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-icon.phone-icon-bg {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 119, 182, 0.25) 100%);
  color: var(--primary-blue, #0077b6);
}

.contact-card-icon.phone-icon-bg svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-card-icon.whatsapp-icon-bg {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.25) 100%);
  color: #25D366;
}

.contact-card-icon.whatsapp-icon-bg svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  margin-bottom: 0.35rem;
}

.contact-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  min-height: 2.4em;
}

.contact-card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  align-items: center;
}

.contact-card-actions .btn {
  width: 100%;
  max-width: 185px;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.48rem 0.85rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm, 7px);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.contact-card-actions .btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-whatsapp-action {
  background-color: #25D366;
  color: #ffffff !important;
  border: 1px solid #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-whatsapp-action:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* WhatsApp Submit Button (Careers Application) */
.btn-whatsapp-submit {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.72rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp-submit:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #0e7063 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

@media (max-width: 480px) {
  .btn-whatsapp-submit {
    padding: 0.62rem 1.25rem;
    font-size: 0.88rem;
    max-width: 275px;
  }
}

.btn-phone-call {
  background-color: var(--primary-blue, #0077b6);
  color: #ffffff !important;
  border: 1px solid var(--primary-blue, #0077b6);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
  transition: all 0.25s ease;
}

.btn-phone-call:hover {
  background-color: var(--primary-blue-dark, #023e8a);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.35);
  color: #ffffff !important;
}

.btn-copy-number {
  background: transparent;
  color: var(--text-muted, #64748b);
  border: 1px solid var(--border-color, #e2e8f0);
  font-size: 0.78rem !important;
  padding: 0.38rem 0.65rem !important;
  min-height: 30px !important;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm, 7px);
  white-space: nowrap;
}

.btn-copy-number svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.btn-copy-number:hover {
  background: var(--bg-surface, #ffffff);
  color: var(--text-main, #0f172a);
  border-color: var(--primary-blue, #0077b6);
}

.btn-copy-number.copied {
  background: #e6f9ed;
  color: #16a34a;
  border-color: #86efac;
}

.contact-modal-footer {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-color, #e2e8f0);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
}

.contact-modal-footer a {
  color: var(--primary-blue, #0077b6);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.contact-modal-footer a:hover {
  color: var(--primary-blue-dark, #023e8a);
}

@media (max-width: 600px) {
  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-option-card {
    padding: 1.25rem 1.1rem;
  }
}

/* ==========================================================================
   ABOUT US - LEADERSHIP & FOUNDERS SECTION
   ========================================================================== */

.leadership-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.leader-founder-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  padding: 2.25rem 1.25rem 1.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal, 0.3s ease), box-shadow var(--transition-normal, 0.3s ease), border-color 0.3s ease;
}

.leader-founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 180, 216, 0.4);
}

.leader-avatar-ring {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--vibrant-teal, #00b4d8) 0%, var(--primary-blue, #0077b6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px -4px rgba(0, 180, 216, 0.35);
  transition: transform var(--transition-fast, 0.2s ease);
}

.leader-founder-card:hover .leader-avatar-ring {
  transform: scale(1.05);
}

.leader-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f5f9;
  display: block;
}

.leader-founder-card .leader-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main, #0f172a);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.leader-founder-card .leader-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vibrant-teal, #00b4d8);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 0.95rem;
  text-align: center;
}

.leader-founder-card .leader-bio {
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-leader-email {
  margin-top: auto;
  width: 100%;
  max-width: 180px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border: none;
  padding: 0.65rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-full, 9999px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-leader-email:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  color: #ffffff !important;
}

@media (max-width: 1150px) {
  .leadership-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 800px) {
  .leadership-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .leadership-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .leader-founder-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   TOOLS & ENVIRONMENTS SECTION (SERVICES PAGE)
   ========================================================================== */

.tools-env-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.tools-env-title {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.tools-env-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tool-item-card {
  background: var(--bg-surface-alt);
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

.tool-item-name {
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 0.3rem;
  color: var(--text-heading);
}

.tool-item-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 680px) {
  .tools-env-card {
    padding: 1.4rem 1.15rem;
  }
  .tools-env-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .tools-env-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .tool-item-card {
    padding: 1rem 1.15rem;
  }
}

/* ==========================================================================
   AI & LLM SPECIALIZED CAPABILITY SECTION (AI-LLM PAGE)
   ========================================================================== */

.ai-capability-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 880px;
  margin: 0 auto;
}

.ai-capability-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.ai-capability-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ai-capability-btn {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .ai-capability-card {
    padding: 2.25rem 1.25rem;
  }
  .ai-capability-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  .ai-capability-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .ai-capability-btn {
    padding: 0.65rem 1.35rem !important;
    font-size: 0.88rem !important;
    max-width: 100%;
    line-height: 1.3;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .ai-capability-card {
    padding: 1.75rem 1rem;
  }
  .ai-capability-title {
    font-size: 1.35rem;
  }
  .ai-capability-desc {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }
  .ai-capability-btn {
    padding: 0.6rem 1.15rem !important;
    font-size: 0.84rem !important;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 9999px;
    line-height: 1.25;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .ai-capability-btn {
    font-size: 0.78rem !important;
    padding: 0.55rem 0.9rem !important;
  }
}

/* ==========================================================================
   WHATSAPP INTEGRATION & FLOATING WIDGET STYLES
   ========================================================================== */

:root {
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-light: #25D366;
  --whatsapp-chat-bg: #E5DDD5;
}

/* Floating WhatsApp Button Container */
.whatsapp-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Plus Jakarta Sans', sans-serif;
  pointer-events: none;
}

/* Floating Action Button */
.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
  pointer-events: auto;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

/* Pulse Animation Ring */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  z-index: -1;
  animation: wa-pulse 2s infinite ease-in-out;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Tooltip Badge */


/* Status Indicator Dot */
.whatsapp-status-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #25D366;
}

/* Expandable Interactive Chat Popup */
.whatsapp-chat-popup {
  width: 340px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.whatsapp-chat-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-popup-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-avatar-wrapper {
  position: relative;
  width: 42px;
  height: 42px;
}

.whatsapp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  background: #ffffff;
}

.whatsapp-avatar-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25D366;
  border: 2px solid #075E54;
  border-radius: 50%;
}

.whatsapp-profile-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.whatsapp-profile-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 2px 0 0 0;
}

.whatsapp-popup-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  padding: 4px;
}

.whatsapp-popup-close:hover {
  color: #ffffff;
}

.whatsapp-popup-body {
  padding: 20px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 16px 16px;
  max-height: 280px;
  overflow-y: auto;
}

.whatsapp-msg-bubble {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.88rem;
  color: #303030;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  margin-bottom: 12px;
  position: relative;
  line-height: 1.45;
}

.whatsapp-msg-time {
  font-size: 0.7rem;
  color: #8696a0;
  text-align: right;
  margin-top: 4px;
}

.whatsapp-popup-footer {
  padding: 14px 16px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.whatsapp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--whatsapp-green);
  color: #ffffff !important;
  padding: 10px 16px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

.whatsapp-send-btn:hover {
  background-color: #1eb956;
  color: #ffffff !important;
}

.whatsapp-send-btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* Custom Inline WhatsApp Button Component */
.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  border: none;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */

/* Career Hero & Stats */
.career-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.career-hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.career-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.career-stat-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  line-height: 1.1;
}

.career-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Workplace Perks & Benefits Grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.perk-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.perk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-teal));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--vibrant-teal);
}

.perk-card:hover::before {
  opacity: 1;
}

.perk-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.perk-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.perk-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Department Filter Buttons */
.job-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.job-filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.job-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.job-filter-btn.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
}

/* Job Openings Grid & Cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.job-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 104, 196, 0.4);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.job-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.job-badge-dept {
  background: rgba(45, 104, 196, 0.1);
  color: var(--primary-blue);
}

.job-badge-type {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
}

.job-badge-loc {
  background: rgba(247, 127, 0, 0.1);
  color: var(--warm-orange);
}

.job-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.job-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.job-highlights {
  list-style: none;
  margin-bottom: 1.75rem;
  padding: 0;
}

.job-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-highlights li::before {
  content: "✓";
  color: var(--vibrant-teal);
  font-weight: 800;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-surface-alt);
}

.job-exp-info {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Job Application Form Section */
.application-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface-alt) 100%);
  padding: 5rem 0;
}

.application-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.file-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-main);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--vibrant-teal);
  background: rgba(0, 180, 216, 0.05);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.file-upload-text span {
  color: var(--primary-blue);
  font-weight: 600;
}

.file-name-display {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vibrant-teal);
}

/* Candidate FAQ Accordion */
.faq-accordion {
  max-width: 820px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
  flex-shrink: 0;
  font-weight: 700;
  color: var(--text-muted);
}

.faq-icon svg {
  display: block;
  transition: stroke var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-blue);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Culture & Testimonial Cards */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-teal));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--vibrant-teal);
  font-weight: 600;
}

/* ==========================================================================
   STATISTICS SECTION & METRIC CARDS
   ========================================================================== */
.stats-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--vibrant-teal);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem auto;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--vibrant-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.stat-sublabel {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INDUSTRIES WE SERVE SECTION
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--vibrant-teal));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.4);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.industry-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 104, 196, 0.1) 0%, rgba(0, 180, 216, 0.15) 100%);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.industry-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.industry-use-cases-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.65rem;
}

.industry-use-cases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.industry-use-cases li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.industry-use-cases li::before {
  content: '✓';
  color: var(--vibrant-teal);
  font-weight: 700;
  flex-shrink: 0;
}

.industry-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.industry-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: rgba(45, 104, 196, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   HOW IT WORKS (5-STEP PROCESS TIMELINE)
   ========================================================================== */
.how-it-works-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  position: relative;
}

@media (max-width: 992px) {
  .how-it-works-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.how-it-works-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem 1.5rem 1.25rem;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--vibrant-teal);
}

.step-badge-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-teal));
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-key-deliverable {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* ==========================================================================
   B2B LEAD GENERATION FORM & SECTION
   ========================================================================== */
.b2b-lead-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.b2b-lead-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.b2b-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .b2b-lead-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.b2b-lead-intro h2 {
  color: #ffffff;
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.b2b-lead-intro p {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.b2b-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.b2b-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.b2b-benefits-list .b2b-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.2);
  color: var(--vibrant-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.b2b-form-card {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
}

.b2b-form-header {
  margin-bottom: 1.75rem;
}

.b2b-form-header h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.b2b-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Enhanced CTA Glow & Emphasis */
.btn-cta-glow {
  background: linear-gradient(135deg, var(--vibrant-teal) 0%, var(--primary-blue) 100%);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
}

.btn-cta-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.6);
}

.btn-cta-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  transition: transform 0.6s ease;
}

.btn-cta-glow:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
}

/* Leadership Principle Table */
.leadership-table-container {
  overflow-x: auto;
  margin-top: 2.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.leadership-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leadership-table th {
  background: var(--bg-surface-alt);
  padding: 1.15rem 1.5rem;
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
}

.leadership-table td {
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  text-align: left;
}

.leadership-table tr:last-child td {
  border-bottom: none;
}

.leadership-table tr:hover td {
  background-color: rgba(45, 104, 196, 0.03);
}

.leadership-table .leader-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-blue);
  text-align: left;
  margin: 0;
  white-space: nowrap;
}

/* Bold, punchy display font for Role */
.leadership-table .leader-role {
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0096c7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  margin: 0;
  white-space: nowrap;
}

/* Distinct, elegant body font for Focus */
.leadership-table .leader-focus,
.leadership-table td:nth-child(3) {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  min-width: 220px;
}

@media (max-width: 768px) {
  .leadership-table-container {
    border-radius: var(--radius-md);
  }

  .leadership-table th {
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }

  .leadership-table td {
    padding: 1rem 1rem;
    font-size: 0.9rem;
  }

  .leadership-table .leader-name {
    font-size: 0.98rem;
  }

  .leadership-table .leader-role {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .leadership-table .leader-focus {
    font-size: 0.88rem;
    min-width: 200px;
  }
}

/* Avatar Placeholder with Monogram */
.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 104, 196, 0.12) 0%, rgba(0, 180, 216, 0.22) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  border: 2px solid rgba(0, 180, 216, 0.3);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   LEADERSHIP PROFILES GRID & CARDS (leadership.html)
   ========================================================================== */

.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  width: 100%;
}

@media (min-width: 901px) {
  .team-grid-4 .leader-profile-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

.leader-profile-card {
  align-items: flex-start;
  text-align: left;
  padding: 2.75rem 2.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.leader-profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 1.5rem;
  min-width: 0;
}

.leader-profile-avatar {
  width: 110px;
  height: 110px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.leader-profile-info {
  min-width: 0;
  flex: 1;
}

.leader-profile-info .team-name {
  margin-bottom: 0.25rem;
  font-size: 1.45rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.leader-profile-info .team-role {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.leader-profile-focus {
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.leader-email-link {
  margin-top: auto;
  align-self: flex-start;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .team-grid-4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .leader-profile-card {
    padding: 1.75rem 1.25rem;
  }

  .leader-profile-header {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .leader-profile-avatar {
    width: 85px;
    height: 85px;
  }

  .leader-profile-info .team-name {
    font-size: 1.25rem;
  }

  .leader-profile-info .team-role {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
  }

  .leader-profile-focus {
    font-size: 0.8rem;
  }

  .leader-email-link {
    font-size: 0.8rem;
    padding: 0.55rem 0.95rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .leader-profile-card {
    padding: 1.5rem 1rem;
  }

  .leader-profile-header {
    gap: 0.85rem;
  }

  .leader-profile-avatar {
    width: 78px;
    height: 78px;
  }

  .leader-profile-info .team-name {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   THE MEANING OF ZIPROX SECTION STYLING
   ========================================================================== */

.ziprox-meaning-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-surface) 100%);
  padding: 5rem 0;
}

.ziprox-meaning-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-top: 3.5rem;
}

.meaning-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.85rem 0.7rem 1.6rem 0.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.meaning-badge-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--badge-color);
  background: var(--badge-bg);
  color: var(--badge-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 4px 14px var(--badge-shadow);
  transition: transform var(--transition-fast);
}

.meaning-card:hover .meaning-badge-circle {
  transform: scale(1.08);
}

.meaning-card h3 {
  font-size: clamp(0.76rem, 0.84vw, 0.94rem);
  font-weight: 700;
  color: var(--badge-color);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: 100%;
}

.meaning-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.meaning-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--badge-color);
  padding: 0.45rem 0.55rem;
  background: var(--badge-bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 46px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-top: auto;
}

/* Specific theme colors for Z, I, P, R, O, X */
.meaning-card.m-z {
  --badge-color: #1E40AF;
  --badge-bg: rgba(30, 64, 175, 0.07);
  --badge-shadow: rgba(30, 64, 175, 0.15);
  --card-accent: #1E40AF;
}

.meaning-card.m-i {
  --badge-color: #059669;
  --badge-bg: rgba(5, 150, 105, 0.07);
  --badge-shadow: rgba(5, 150, 105, 0.15);
  --card-accent: #059669;
}

.meaning-card.m-p {
  --badge-color: #D97706;
  --badge-bg: rgba(217, 119, 6, 0.07);
  --badge-shadow: rgba(217, 119, 6, 0.15);
  --card-accent: #D97706;
}

.meaning-card.m-r {
  --badge-color: #7C3AED;
  --badge-bg: rgba(124, 58, 237, 0.07);
  --badge-shadow: rgba(124, 58, 237, 0.15);
  --card-accent: #7C3AED;
}

.meaning-card.m-o {
  --badge-color: #0284C7;
  --badge-bg: rgba(2, 132, 199, 0.07);
  --badge-shadow: rgba(2, 132, 199, 0.15);
  --card-accent: #0284C7;
}

.meaning-card.m-x {
  --badge-color: #DB2777;
  --badge-bg: rgba(219, 39, 119, 0.07);
  --badge-shadow: rgba(219, 39, 119, 0.15);
  --card-accent: #DB2777;
}

/* Our Promise Highlight Banner */
.meaning-promise-banner {
  margin-top: 2.75rem;
  background: var(--bg-surface);
  border: 1.5px solid rgba(45, 104, 196, 0.25);
  border-radius: var(--radius-full);
  padding: 1.1rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  box-shadow: 0 6px 20px rgba(45, 104, 196, 0.08);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.promise-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary-blue);
  letter-spacing: 0.03em;
  font-size: 1rem;
  white-space: nowrap;
  padding-right: 1.5rem;
  border-right: 2px solid var(--border-color);
}

.promise-tag svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.promise-text {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1240px) {
  .ziprox-meaning-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .meaning-card h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .ziprox-meaning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .meaning-promise-banner {
    border-radius: var(--radius-lg);
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .promise-tag {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .ziprox-meaning-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
