@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Premium Dark Navy & Light Alternations */
  --color-bg-primary: #0A1628;
  --color-bg-secondary: #0F1F3D;
  --color-surface: #162040;
  --color-accent: #0E44FF;
  --color-accent-hover: #3A6AFF;
  --color-success: #22C55E;
  
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #A0AECF;
  --color-text-muted: #6B7A99;
  --color-border: #1E2F52;
  --color-card-overlay: rgba(22, 32, 64, 0.7);
  
  --color-bg-light: #F0F4FF;
  --color-text-dark: #1A1A2E;
  
  /* Helper variables for backward compatibility and inlines */
  --color-text-white: #FFFFFF;
  --color-primary-blue: #0E44FF;
  --color-border-dark: #1E2F52;

  /* Typography */
  --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing Scale */
  --space-025x: 4px;
  --space-05x: 8px;
  --space-1x: 16px;
  --space-2x: 32px;
  --space-3x: 48px;
  --space-4x: 64px;
  
  /* Corner Radii */
  --radius-button: 100px; /* Pill-shaped buttons */
  --radius-card: 20px;    /* Rounded cards */
  --radius-navbar: 100px; /* Floating pill navbar */

  /* Transitions */
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 400ms ease;
}

/* 1. Global Reset & Base Elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-primary);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-primary);
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
}

h4 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

p.large {
  font-size: 18px;
  line-height: 1.7;
}

/* Links */
a {
  color: var(--color-text-white);
  text-decoration: none;
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 2px;
}

/* 2. Container & Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1400px;
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1440px;
    padding-right: 48px;
    padding-left: 48px;
  }
}

.section {
  padding-top: var(--space-3x);
  padding-bottom: var(--space-3x);
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-4x);
    padding-bottom: var(--space-4x);
  }
}

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

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

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--color-text-dark);
}

.section-light p {
  color: var(--color-text-dark);
  opacity: 0.9;
}

.section-light .stat-label {
  color: var(--color-text-dark);
  opacity: 0.85;
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-card);
  padding: var(--space-2x);
  color: var(--color-text-dark);
  box-shadow: 0 8px 32px 0 rgba(14, 68, 255, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.85);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card-light:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 68, 255, 0.25);
  box-shadow: 0 16px 32px rgba(14, 68, 255, 0.12);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
}

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

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

/* 3. Floating Pill Navigation Header */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 72px;
  background: rgba(15, 31, 61, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-navbar);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  padding: 0 var(--space-2x);
}

.navbar.scrolled {
  top: 12px;
  width: 85%;
  max-width: 1100px;
  background: rgba(10, 22, 40, 0.85);
  border-color: rgba(14, 68, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  height: 60px;
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 32px);
    top: 16px;
    height: 64px;
    padding: 0 var(--space-1x);
  }
  .navbar.scrolled {
    width: calc(100% - 24px);
    top: 8px;
    height: 58px;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-05x);
  z-index: 1002;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-white);
  letter-spacing: 0.5px;
}

.logo-text .dot {
  color: var(--color-accent);
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2x);
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-normal);
  }

  .nav-links a:hover {
    color: var(--color-text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  .nav-links a.active {
    color: var(--color-text-white);
    font-weight: 600;
    position: relative;
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
    border-radius: 2px;
  }
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

/* Hamburger mobile button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: var(--space-025x);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 120px var(--space-2x) var(--space-2x) var(--space-2x);
  transform: translateY(-100%);
  transition: transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1x);
  margin-bottom: var(--space-2x);
  align-items: center;
}

.mobile-nav-links a {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.mobile-nav-links a.active {
  color: var(--color-text-white);
}

/* 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  height: 48px;
  padding: 0 var(--space-2x);
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(14, 68, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-white);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-white);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-large {
  height: 52px;
  padding: 0 var(--space-3x);
}

.btn-full {
  width: 100%;
}

/* 5. Glowing Orbs Background */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

.glow-purple {
  background: var(--color-accent);
  width: 400px;
  height: 400px;
}

.glow-pink {
  background: var(--color-accent-hover);
  width: 300px;
  height: 300px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.08);
  }
}

/* 6. Glassmorphism Card System (Standard Dark Cards) */
.glass-card {
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.65) 0%, rgba(15, 31, 61, 0.4) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: var(--space-2x);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 68, 255, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(14, 68, 255, 0.25);
}

/* Badge Tags */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-025x);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-new {
  background-color: rgba(14, 68, 255, 0.1);
  color: #4A9EFF;
  border: 1px solid rgba(14, 68, 255, 0.25);
}

.badge-fresh {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* 7. Interactive UI Components */

/* Stat Counter */
.stat-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1x);
}

@media (max-width: 1024px) {
  .stat-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stat-container {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-1x);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-05x);
  text-shadow: 0 0 20px rgba(14, 68, 255, 0.25);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Testimonial Carousel */
.testimonial-carousel-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  opacity: 0.3;
  transition: opacity var(--transition-slow);
}

.carousel-slide.active {
  opacity: 1;
}

.testimonial-card {
  text-align: center;
  padding: var(--space-1x);
}

.testimonial-quote-icon {
  font-size: 72px;
  line-height: 1;
  color: rgba(14, 68, 255, 0.12);
  font-family: Georgia, serif;
  margin-bottom: -16px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 18px);
  font-style: italic;
  color: var(--color-text-white);
  line-height: 1.7;
  margin-bottom: var(--space-2x);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-05x);
}

.testimonial-author-name {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-white);
}

.testimonial-author-title {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1x);
  margin-top: var(--space-1x);
}

.carousel-arrow {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.carousel-arrow:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-white);
  box-shadow: 0 0 15px rgba(14, 68, 255, 0.4);
}

.carousel-dots {
  display: flex;
  gap: var(--space-05x);
}

.carousel-dot {
  background-color: var(--color-border);
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-normal);
}

.carousel-dot.active {
  background-color: var(--color-accent);
  transform: scale(1.3);
}

/* Accordion FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-05x);
}

.faq-card {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: var(--space-1x) 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-white);
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  transition: color var(--transition-normal);
}

.faq-trigger:hover {
  color: var(--color-accent-pink);
}

.faq-icon {
  color: var(--color-accent-purple);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding-bottom: var(--space-1x);
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.faq-card.active .faq-panel {
  max-height: 300px;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

/* 8. Leadership Cards (PREMIUM 3*3 / 3-col Grid) */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
}

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

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

.team-card {
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.65) 0%, rgba(15, 31, 61, 0.4) 100%);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 68, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(14, 68, 255, 0.3);
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(15%);
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.04);
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(22, 32, 64, 0.95) 0%, rgba(22, 32, 64, 0) 100%);
  pointer-events: none;
}

.team-info {
  padding: var(--space-1.5x) var(--space-1.5x) var(--space-2x) var(--space-1.5x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.team-name {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.team-designation {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #4A9EFF; /* light blue */
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  gap: var(--space-1x);
  margin-top: auto;
  justify-content: center;
}

.team-social-icon {
  color: var(--color-text-muted);
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
}

.team-social-icon i,
.team-social-icon svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
}

.team-social-icon:hover {
  color: var(--color-accent);
}

/* 9. Services Page Alternating Detail Blocks */
.service-detail-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2x);
  padding: var(--space-2x) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail-block:last-child {
  border-bottom: none;
}

.service-detail-content {
  flex: 1.2;
}

.service-detail-image-wrapper {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
}

.service-detail-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-detail-image-wrapper:hover img {
  transform: scale(1.03);
}

.service-label-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-05x);
  display: block;
}

.service-detail-title {
  margin-bottom: var(--space-05x);
}

.service-detail-desc {
  margin-bottom: var(--space-1x);
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-05x);
  margin-bottom: var(--space-2x);
}

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

.service-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-05x);
  font-size: 15px;
  color: var(--color-text-secondary);
}

.service-feature-icon {
  color: var(--color-success);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .service-detail-block {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3x);
  }

  .service-detail-block.reverse {
    flex-direction: row-reverse;
  }
}

/* 10. How We Work Timeline Layout */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
}

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

.process-card {
  cursor: pointer;
}

.process-number {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: rgba(14, 68, 255, 0.15);
  line-height: 1;
  margin-bottom: var(--space-05x);
  transition: all var(--transition-normal);
}

.process-card.active .process-number {
  color: var(--color-accent-hover);
  text-shadow: 0 0 15px rgba(58, 106, 255, 0.3);
}

/* Case Study / results cards */
.case-study-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1.6;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2x);
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

.case-study-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 60%, rgba(10, 22, 40, 0.1) 100%);
  z-index: -1;
}

.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 68, 255, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(14, 68, 255, 0.25);
}

.case-study-metrics {
  display: flex;
  gap: var(--space-2x);
  margin-top: var(--space-1x);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-1x);
}

.case-study-metric-item {
  display: flex;
  flex-direction: column;
}

.case-study-metric-val {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
}

.case-study-metric-lbl {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* 11. Forms and Subscribe Modules */
.form-group {
  margin-bottom: var(--space-1x);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-05x);
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-hover);
  box-shadow: 0 0 0 3px rgba(58, 106, 255, 0.2);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-group.has-error .form-control {
  border-color: #EF4444;
}

.form-error-msg {
  display: none;
  color: #EF4444;
  font-size: 13px;
  margin-top: 4px;
}

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

.visual-trap {
  display: none !important;
}

.success-card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2x) var(--space-1x);
}

.checkmark-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1x);
  color: var(--color-success);
  font-size: 24px;
}

/* Newsletter Inline form */
.subscribe-form {
  display: flex;
  gap: var(--space-05x);
  margin-top: var(--space-05x);
}

.subscribe-form .form-control {
  flex-grow: 1;
}

/* 12. Footer */
.footer {
  background-color: #050D1A;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 var(--space-2x) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2x);
  margin-bottom: var(--space-2x);
}

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

@media (min-width: 1280px) {
  .footer-grid {
    grid-template-columns: 2.2fr 1fr 1.2fr 2fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-05x);
  margin-bottom: var(--space-05x);
}

.footer-logo img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-1x);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: var(--space-05x);
}

.footer-social-btn {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.footer-social-btn:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(14, 68, 255, 0.4);
}

.footer-social-btn i,
.footer-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-1x);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-05x);
}

.footer-links a {
  font-size: 15px;
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3x);
  margin-top: var(--space-3x);
  display: flex;
  flex-direction: column;
  gap: var(--space-05x);
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-1x);
}

.footer-legal a {
  font-size: 13px;
  color: var(--color-text-muted);
}

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

/* 13. Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 14. Accessibility Preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .reveal,
  .btn,
  .glass-card,
  .team-card,
  .carousel-track,
  .carousel-slide,
  .faq-panel,
  .form-control,
  .case-study-card {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* 15. Lucide Icons Global Standard styling */
svg.lucide,
.lucide {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}

/* 16. CTA Banner Wrapper */
.cta-banner-wrapper {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-3x) var(--space-2x);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  margin-top: var(--space-3x);
  margin-bottom: var(--space-3x);
}

@media (min-width: 768px) {
  .cta-banner-wrapper {
    padding: var(--space-4x) var(--space-3x);
  }
}

/* 17. Contact Us Page Responsiveness */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1280px) {
  .contact-grid {
    gap: 48px;
  }
}

.contact-card {
  padding: 20px;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .contact-card {
    padding: 40px;
  }
}