/* ==========================================================================
   AVANZA GLOBAL TECH - B2B ENTERPRISE CX PLATFORM DESIGN SYSTEM
   Palette: All colors strictly specified using RGB & RGBA formats
   Tagline: "Innovate • Integrate • Elevate"
   ========================================================================== */

/* Import Google Fonts: Oswald (Condensed Headings) & Inter / DM Sans (Body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400..800;1,9..40,400..800&display=swap');

:root {
  /* Dark Navy Backgrounds (RGB Format) */
  --bg-navy-dark: rgb(10, 22, 40);
  --bg-navy-medium: rgb(13, 27, 46);
  --bg-navy-card: rgb(19, 35, 58);
  --bg-navy-teal-card: rgba(15, 34, 56, 0.85);
  --bg-nav: rgba(10, 22, 40, 0.95);

  /* Light Backgrounds (RGB Format) */
  --bg-light-pure: rgb(255, 255, 255);
  --bg-light-soft: rgb(248, 250, 252);
  --bg-light-card: rgb(255, 255, 255);
  --bg-light-alt: rgb(241, 245, 249);

  /* Brand Accent Colors (RGB Format) */
  --accent-sky-blue: rgb(30, 155, 224);
  --accent-deep-blue: rgb(27, 58, 107);
  --accent-gold: rgb(245, 184, 0);
  --accent-emerald: rgb(0, 210, 106);
  --accent-emerald-glow: rgba(0, 210, 106, 0.3);
  --accent-sky-glow: rgba(30, 155, 224, 0.3);

  /* Text Color System (RGB Format) */
  --text-dark-navy: rgb(13, 27, 46);
  --text-dark-body: rgb(51, 65, 85);
  --text-dark-muted: rgb(100, 116, 139);

  --text-white: rgb(255, 255, 255);
  --text-light-muted: rgb(148, 163, 184);
  --text-light-dim: rgb(100, 116, 139);
  --text-emerald: rgb(0, 210, 106);
  --text-gold: rgb(245, 184, 0);
  --text-sky-blue: rgb(30, 155, 224);

  /* Borders & Gradients (RGB Format) */
  --border-light-card: rgb(226, 232, 240);
  --border-dark-card: rgba(255, 255, 255, 0.08);
  --border-emerald-subtle: rgba(0, 210, 106, 0.3);
  --border-blue-subtle: rgba(30, 155, 224, 0.3);

  --gradient-top-card: linear-gradient(90deg, rgb(30, 155, 224) 0%, rgb(0, 210, 106) 100%);
  --gradient-cta-banner: linear-gradient(135deg, rgb(27, 58, 107) 0%, rgb(30, 155, 224) 50%, rgb(0, 210, 106) 100%);
  --gradient-gold-btn: linear-gradient(135deg, rgb(245, 184, 0) 0%, rgb(230, 154, 0) 100%);
  --gradient-blue-btn: linear-gradient(135deg, rgb(30, 155, 224) 0%, rgb(27, 58, 107) 100%);
  --bg-hero-blue: rgb(0, 107, 255);
  --gradient-hero-bg: radial-gradient(130% 100% at 50% 10%, rgb(0, 107, 255) 0%, rgb(10, 22, 40) 85%);

  /* Fonts */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Elevation & Shadows (RGB Format) */
  --shadow-light-card: 0 10px 25px -5px rgba(13, 27, 46, 0.08), 0 8px 10px -6px rgba(13, 27, 46, 0.04);
  --shadow-light-hover: 0 20px 35px -10px rgba(13, 27, 46, 0.15), 0 10px 15px -5px rgba(30, 155, 224, 0.2);
  --shadow-dark-card: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-dark-hover: 0 18px 40px rgba(0, 210, 106, 0.15);
  --shadow-gold-btn: 0 6px 20px rgba(245, 184, 0, 0.35);
  --shadow-blue-btn: 0 6px 20px rgba(30, 155, 224, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  /* Prevents mobile long-press popup menus on iOS */
}

/* Allow normal text selection inside input fields & textareas */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image drag, highlight, and tap-and-hold menus */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  /* Passes click through to parent while preventing right-click target on img */
}

body {
  font-family: var(--font-body);
  color: var(--text-dark-body);
  background-color: var(--bg-light-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  font-family: var(--font-body);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: var(--gradient-top-card);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Section Tag & Titles */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-tag.tag-emerald {
  background: rgba(0, 210, 106, 0.12);
  color: var(--accent-emerald);
  border: 1px solid var(--border-emerald-subtle);
}

.section-tag.tag-blue {
  background: rgba(30, 155, 224, 0.12);
  color: var(--accent-sky-blue);
  border: 1px solid var(--border-blue-subtle);
}

.section-tag.tag-gold {
  background: rgba(245, 184, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 184, 0, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.dark-section .section-title {
  color: var(--text-white);
}

.light-section .section-title {
  color: var(--text-dark-navy);
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 48px auto;
  font-weight: 400;
}

.dark-section .section-subtitle {
  color: var(--text-light-muted);
}

.light-section .section-subtitle {
  color: var(--text-dark-muted);
}

.text-emerald {
  color: var(--accent-emerald) !important;
}

.text-sky {
  color: var(--accent-sky-blue) !important;
}

.text-gold {
  color: var(--accent-gold) !important;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold-btn);
  color: var(--text-dark-navy);
  box-shadow: var(--shadow-gold-btn);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 184, 0, 0.5);
}

.btn-sky-filled {
  background: var(--gradient-top-card);
  color: rgb(255, 255, 255);
  box-shadow: var(--shadow-blue-btn);
}

.btn-sky-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 155, 224, 0.45);
}

.btn-hero-explore {
  background-color: rgb(0, 240, 128);
  color: rgb(10, 22, 40);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 240, 128, 0.4);
}

.btn-hero-explore:hover {
  transform: translateY(-2px);
  background-color: rgb(0, 220, 115);
  color: rgb(10, 22, 40);
  box-shadow: 0 10px 28px rgba(0, 240, 128, 0.6);
}

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

.btn-outline-sky:hover {
  background: rgba(30, 155, 224, 0.12);
  color: rgb(255, 255, 255);
  border-color: var(--accent-emerald);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

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

/* Geometric Triangle/Diamond Background Motif */
.geo-motif-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.05;
  z-index: 1;
}

.geo-motif-bg svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   1. STICKY NAVBAR (White BG, Black Text, RGB & Neon Effect)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgb(0, 240, 128);
  box-shadow: 0 4px 24px rgba(0, 240, 128, 0.25), 0 2px 10px rgba(10, 22, 40, 0.08);
  z-index: 999;
  transition: all var(--transition-normal);
  padding: 8px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 4px;
  border: 2px solid rgba(0, 107, 255, 0.4);
  box-shadow: 0 4px 18px rgba(0, 107, 255, 0.3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.25s ease;
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0A1628;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: #006BFF;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(10, 22, 40);
  position: relative;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: rgb(0, 180, 90);
  text-shadow: 0 0 10px rgba(0, 240, 128, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, rgb(0, 240, 128) 0%, rgb(0, 107, 255) 100%);
  box-shadow: 0 0 10px rgba(0, 240, 128, 0.8);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: rgb(10, 22, 40);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   2. HERO SECTION (Dark Navy BG rgb(10, 22, 40))
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--gradient-hero-bg);
  background-color: rgb(0, 107, 255);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 106, 0.12);
  border: 1px solid var(--border-emerald-subtle);
  color: var(--accent-emerald);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.hero-headline {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 16px;
  text-align: center;
}

.hero-headline span {
  color: rgb(0, 240, 128);
  -webkit-text-fill-color: rgb(0, 240, 128);
  text-shadow: 0 0 24px rgba(0, 240, 128, 0.45);
}

.hero-tagline-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(245, 184, 0, 0.2);
  text-align: center;
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin: 0 auto 30px auto;
  max-width: 760px;
  text-align: center;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(30, 155, 224, 0.3) 0%, rgba(0, 210, 106, 0.3) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  filter: brightness(0.95) contrast(1.05);
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: 10px;
  background: rgba(13, 27, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-emerald-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 210, 106, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-text h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-white);
}

.floating-text p {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   3. STATS BAR
   ========================================================================== */
.stats-bar-section {
  background: var(--bg-navy-medium);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.stats-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}

.stats-ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: ticker-slide 22s linear infinite;
  will-change: transform;
}

.stats-ticker-wrapper:hover .stats-ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-slide {
  0% {
    transform: translateX(0);
  }

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-sky-blue);
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

.stat-number.text-emerald {
  color: rgb(0, 240, 128);
  text-shadow: 0 0 12px rgba(0, 240, 128, 0.35);
}

.stat-number.text-sky {
  color: rgb(30, 155, 224);
  text-shadow: 0 0 12px rgba(30, 155, 224, 0.35);
}

.stat-number.text-gold {
  color: rgb(245, 184, 0);
  text-shadow: 0 0 12px rgba(245, 184, 0, 0.35);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ==========================================================================
   4. CORE OFFERINGS GRID (Clean White BG, Gradient Top Border Cards)
   ========================================================================== */
/* ==========================================================================
   4. CORE OFFERINGS GRID (Electric Blue BG rgb(0, 107, 255), Graphics Animation & Neon Hover)
   ========================================================================== */
.offerings-section {
  background: radial-gradient(120% 120% at 50% 10%, rgb(0, 107, 255) 0%, rgb(10, 22, 40) 100%);
  background-color: rgb(0, 107, 255);
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offerings-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.offering-card {
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

/* Gradient Top Border */
.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-top-card);
  transition: background 0.3s ease;
}

.offering-card:hover {
  background: linear-gradient(135deg, rgb(0, 240, 128) 0%, rgb(0, 180, 90) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 240, 128, 0.5), 0 0 25px rgba(0, 240, 128, 0.3);
}

.offering-header {
  padding: 24px 24px 16px 24px;
}

.offering-3d-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgb(10, 22, 40) 0%, rgb(19, 35, 58) 100%);
  border: 1px solid rgba(0, 240, 128, 0.25);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.2);
}

.offering-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.offering-card:hover .offering-3d-img {
  transform: scale(1.08);
}

.offering-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgb(10, 22, 40);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-title {
  color: rgb(10, 22, 40) !important;
}

.offering-desc {
  font-size: 0.92rem;
  color: rgb(51, 65, 85);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-desc {
  color: rgb(10, 22, 40) !important;
  font-weight: 500;
}

.offering-body {
  padding: 0 24px 28px 24px;
  flex-grow: 1;
}

.offering-list {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
  padding-top: 16px;
  transition: border-color 0.3s ease;
}

.offering-card:hover .offering-list {
  border-top-color: rgba(10, 22, 40, 0.2);
}

.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgb(51, 65, 85);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-list li {
  color: rgb(10, 22, 40) !important;
  font-weight: 600;
}

.offering-list li svg {
  color: rgb(0, 107, 255);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-list li svg {
  color: rgb(10, 22, 40) !important;
}

/* ==========================================================================
   5. AI CAPABILITIES & QA ENGINE (Dark Navy BG rgb(10, 22, 40), Emerald Green Headers)
   ========================================================================== */
/* ==========================================================================
   5. AI CAPABILITIES & QA ENGINE (Animated Background, White Cards, Black Text)
   ========================================================================== */
/* ==========================================================================
   5. AI CAPABILITIES & QA ENGINE (Graphics Canvas Animation & Neon Card Hover)
   ========================================================================== */
.ai-section {
  background-color: rgb(8, 16, 28);
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Native 4K Hardware-Accelerated AI Capabilities Background Image */
.ai-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  pointer-events: none;
}

/* Light & Crisp Overlay (Preserves 4K details & high contrast) */
.ai-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(8, 16, 28, 0.30) 0%, rgba(8, 16, 28, 0.70) 100%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.45) 0%, rgba(8, 16, 28, 0.25) 50%, rgba(8, 16, 28, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.ai-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 128, 0.25) 0%, rgba(0, 107, 255, 0) 70%);
  border-radius: 50%;
  animation: floatOrb 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 155, 224, 0.3) 0%, rgba(0, 107, 255, 0) 70%);
  border-radius: 50%;
  animation: floatOrb 11s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -35px) scale(1.15);
  }

  100% {
    transform: translate(-30px, 45px) scale(0.92);
  }
}

.ai-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ai-card {
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.ai-card:hover {
  background: linear-gradient(135deg, rgb(0, 240, 128) 0%, rgb(0, 180, 90) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 240, 128, 0.5), 0 0 25px rgba(0, 240, 128, 0.3);
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 107, 255, 0.1);
  color: rgb(0, 107, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ai-card:hover .ai-card-icon {
  background: rgb(10, 22, 40);
  color: rgb(0, 240, 128);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.ai-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: rgb(10, 22, 40);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.ai-card:hover .ai-card-title {
  color: rgb(10, 22, 40) !important;
}

.ai-card-list {
  list-style: none;
}

.ai-card-list li {
  font-size: 0.88rem;
  color: rgb(51, 65, 85);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.ai-card:hover .ai-card-list li {
  color: rgb(10, 22, 40) !important;
  font-weight: 600;
}

.ai-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgb(0, 107, 255);
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.ai-card:hover .ai-card-list li::before {
  color: rgb(10, 22, 40);
}

/* 100% QA Engine Architecture Box (Automatic Scroll Pop-Up & Retract) */
.qa-engine-box {
  background: rgb(255, 255, 255);
  border: 2px solid rgb(0, 240, 128);
  border-radius: var(--radius-lg);
  padding: 0 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  max-height: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  position: relative;
  z-index: 2;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease,
    transform 0.5s ease,
    padding 0.5s ease,
    margin-top 0.5s ease;
}

.qa-engine-box.qa-popup-active {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding: 40px;
  margin-top: 36px;
  pointer-events: auto;
}

.qa-header {
  text-align: center;
  margin-bottom: 36px;
}

.qa-header h3 {
  font-size: 1.8rem;
  color: rgb(10, 22, 40);
  margin-bottom: 8px;
}

.qa-header p {
  color: rgb(0, 150, 75);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.qa-flow-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.qa-step-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-step-card {
  background: rgb(248, 250, 252);
  border: 1px solid rgb(226, 232, 240);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.qa-step-card:hover {
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 107, 255, 0.45);
}

.qa-step-card h5 {
  font-size: 1.05rem;
  color: rgb(0, 107, 255);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.qa-step-card:hover h5 {
  color: rgb(255, 255, 255) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.qa-step-card p,
.qa-step-card ul {
  font-size: 0.88rem;
  color: rgb(51, 65, 85);
  transition: color 0.3s ease;
}

.qa-step-card:hover p,
.qa-step-card:hover ul {
  color: rgb(255, 255, 255) !important;
  font-weight: 500;
}

.qa-step-card ul {
  list-style: none;
}

.qa-step-card ul li {
  margin-bottom: 4px;
}

.qa-core-hub {
  background: linear-gradient(145deg, rgb(10, 22, 40) 0%, rgb(19, 35, 58) 100%);
  border: 2px solid rgb(0, 240, 128);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 240, 128, 0.25);
  transition: all 0.4s ease;
  cursor: pointer;
}

.qa-core-hub:hover {
  transform: scale(1.05);
  border-color: rgb(0, 240, 128);
  box-shadow: 0 0 50px rgba(0, 240, 128, 0.6);
}

.qa-core-hub h4 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.qa-tags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.qa-tag-badge {
  background: rgba(0, 210, 106, 0.1);
  border: 1px solid rgba(0, 210, 106, 0.3);
  color: var(--accent-emerald);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   6. SERVICE DELIVERY FRAMEWORK (Dark Navy BG, Teal Cards & Interactive Tabs)
   ========================================================================== */
/* ==========================================================================
   6. SERVICE DELIVERY FRAMEWORK (Electric Blue BG rgb(0, 107, 255), Graphics Animation & Neon Hover)
   ========================================================================== */
.frameworks-section {
  background: radial-gradient(120% 120% at 50% 10%, rgb(0, 107, 255) 0%, rgb(10, 22, 40) 100%);
  background-color: rgb(0, 107, 255);
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.frameworks-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.frameworks-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.framework-teal-card {
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.framework-teal-card:hover {
  background: linear-gradient(135deg, rgb(0, 240, 128) 0%, rgb(0, 180, 90) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 240, 128, 0.5), 0 0 25px rgba(0, 240, 128, 0.3);
}

.framework-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 107, 255, 0.1);
  color: rgb(0, 107, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.framework-teal-card:hover .framework-card-icon {
  background: rgb(10, 22, 40);
  color: rgb(0, 240, 128);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.framework-teal-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: rgb(10, 22, 40);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  padding-bottom: 12px;
  transition: all 0.3s ease;
}

.framework-teal-card:hover h4 {
  color: rgb(10, 22, 40) !important;
  border-bottom-color: rgba(10, 22, 40, 0.2);
}

.framework-teal-card ul {
  list-style: none;
}

.framework-teal-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgb(51, 65, 85);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.framework-teal-card:hover ul li {
  color: rgb(10, 22, 40) !important;
  font-weight: 600;
}

.framework-teal-card ul li svg {
  color: rgb(0, 107, 255);
  flex-shrink: 0;
  margin-top: 3px;
  transition: color 0.3s ease;
}

.framework-teal-card:hover ul li svg {
  color: rgb(10, 22, 40) !important;
}

/* Interactive Tabs Bar */
.frameworks-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgb(255, 255, 255);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: rgb(0, 240, 128);
  color: rgb(10, 22, 40);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 240, 128, 0.45);
}

.framework-panel {
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 2px solid rgb(0, 240, 128);
  padding: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Hiring Pipeline */
.hiring-pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.hiring-step {
  background: rgb(248, 250, 252);
  border: 1px solid rgb(226, 232, 240);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
}

.hiring-step:hover {
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 107, 255, 0.4);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(0, 107, 255);
  color: rgb(255, 255, 255);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.hiring-step:hover .step-num {
  background: rgb(10, 22, 40);
  color: rgb(0, 240, 128);
}

.hiring-step h5 {
  font-size: 0.95rem;
  color: rgb(10, 22, 40);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.hiring-step:hover h5 {
  color: rgb(255, 255, 255) !important;
}

.hiring-step p {
  font-size: 0.78rem;
  color: rgb(51, 65, 85);
  transition: color 0.3s ease;
}

.hiring-step:hover p {
  color: rgb(255, 255, 255) !important;
}
}

/* ==========================================================================
   7. LEADERSHIP SECTION (Electric Blue BG rgb(0, 107, 255), Graphics Animation & Premium Blue Hover)
   ========================================================================== */
.leadership-section {
  background-color: rgb(10, 22, 40);
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Native 4K Hardware-Accelerated Image Sharpness */
.leadership-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  pointer-events: none;
}

/* Light & Vibrant Vignette Overlay (Leaves 4K Details Crisp & High-Contrast) */
.leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 22, 40, 0.30) 0%, rgba(10, 22, 40, 0.70) 100%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.45) 0%, rgba(10, 22, 40, 0.25) 50%, rgba(10, 22, 40, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.leadership-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   ULTRA-MODERN STRATEGIC ASPIRATION & MISSION BANNER
   ========================================================================== */
.aspiration-banner {
  background: linear-gradient(135deg, rgba(13, 27, 48, 0.94) 0%, rgba(9, 20, 36, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0, 240, 128, 0.28);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 
              0 0 40px rgba(0, 240, 128, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 40px 48px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.aspiration-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 128, 0.5);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.75), 
              0 0 60px rgba(0, 240, 128, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.aspiration-glow-spot {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 128, 0.08) 0%, rgba(245, 184, 0, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 8s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% { transform: scale(0.9) rotate(0deg); opacity: 0.6; }
  100% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

.aspiration-card {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.aspiration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 184, 0, 0.12);
  color: #F5B800;
  border: 1px solid rgba(245, 184, 0, 0.35);
  box-shadow: 0 0 15px rgba(245, 184, 0, 0.15);
}

.badge-sky {
  background: rgba(56, 189, 248, 0.12);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.aspiration-heading {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.heading-sky {
  color: #F8FAFC;
}

.aspiration-quote-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.quote-secondary {
  font-style: italic;
  color: #CBD5E1;
}

/* Highlight Text Pills */
.hl-gold {
  color: #F5B800;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(245, 184, 0, 0.22) 0%, rgba(245, 184, 0, 0.08) 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

.hl-emerald {
  color: #00F080;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(0, 240, 128, 0.22) 0%, rgba(0, 240, 128, 0.08) 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

.hl-sky {
  color: #38BDF8;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0.08) 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Central Separator */
.aspiration-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  padding: 0 10px;
}

.divider-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0, 240, 128, 0.6), rgba(245, 184, 0, 0.6), transparent);
}

.divider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00F080;
  box-shadow: 0 0 12px #00F080, 0 0 20px #F5B800;
  position: absolute;
}

.leaders-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.leader-card {
  flex: 0 1 calc(33.333% - 28px);
  max-width: 370px;
  min-width: 280px;
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.leader-card:hover {
  background: linear-gradient(135deg, rgb(27, 58, 107) 0%, rgb(0, 107, 255) 100%);
  border-color: rgb(0, 107, 255);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 107, 255, 0.5), 0 0 25px rgba(0, 107, 255, 0.3);
}

.avatar-wrapper {
  position: relative;
  width: 100%;
  height: 270px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgb(241, 245, 249);
  border: 2px solid rgba(0, 107, 255, 0.25);
  box-shadow: 0 6px 16px rgba(13, 27, 46, 0.12);
  transition: border-color 0.3s ease;
}

.leader-card:hover .avatar-wrapper {
  border-color: rgb(245, 184, 0);
}

.leader-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover .leader-avatar {
  transform: scale(1.06);
}

.leader-role-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 107, 255, 0.1);
  color: rgb(0, 107, 255);
  border: 1px solid rgba(0, 107, 255, 0.25);
  margin-bottom: 12px;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.leader-card:hover .leader-role-badge {
  background: rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.4);
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(10, 22, 40);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
  color: rgb(255, 255, 255) !important;
}

.leader-title {
  font-size: 0.9rem;
  color: rgb(0, 107, 255);
  font-weight: 600;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-title {
  color: rgb(245, 184, 0) !important;
}

.leader-bio {
  font-size: 0.88rem;
  color: rgb(51, 65, 85);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-bio {
  color: rgb(248, 250, 252) !important;
}

.leader-highlights {
  width: 100%;
  list-style: none;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
  padding-top: 14px;
  margin-top: auto;
  transition: border-color 0.3s ease;
}

.leader-card:hover .leader-highlights {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.leader-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgb(51, 65, 85);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-highlights li {
  color: rgb(255, 255, 255) !important;
}

.leader-highlights li svg {
  color: rgb(0, 107, 255);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-highlights li svg {
  color: rgb(245, 184, 0) !important;
}

/* ==========================================================================
   8. WHY AVANZA GLOBAL TECH (Electric Blue BG rgb(0, 107, 255), Graphics Animation & Neon Hover)
   ========================================================================== */
.why-section {
  background: radial-gradient(120% 120% at 50% 10%, rgb(0, 107, 255) 0%, rgb(10, 22, 40) 100%);
  background-color: rgb(0, 107, 255);
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.why-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.why-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.why-hex-card {
  background: rgb(255, 255, 255);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  cursor: pointer;
}

.why-hex-card:hover {
  background: linear-gradient(135deg, rgb(0, 240, 128) 0%, rgb(0, 180, 90) 100%);
  border-color: rgb(0, 240, 128);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 240, 128, 0.5), 0 0 25px rgba(0, 240, 128, 0.3);
}

/* Custom Hexagon Icon Container */
.hex-icon-container {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.4s ease, background 0.3s ease;
}

.why-hex-card:hover .hex-shape {
  transform: rotate(30deg);
  background: rgb(10, 22, 40) !important;
}

.hex-blue {
  background: linear-gradient(135deg, rgb(30, 155, 224) 0%, rgb(27, 58, 107) 100%);
}

.hex-gold {
  background: linear-gradient(135deg, rgb(245, 184, 0) 0%, rgb(215, 140, 0) 100%);
}

.hex-emerald,
.hex-green {
  background: linear-gradient(135deg, rgb(0, 210, 106) 0%, rgb(0, 150, 75) 100%);
}

.hex-icon-svg {
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
}

.why-hex-card:hover .hex-icon-svg {
  color: rgb(0, 240, 128);
}

.why-hex-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(10, 22, 40);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.why-hex-card:hover h4 {
  color: rgb(10, 22, 40) !important;
}

.why-hex-card p {
  font-size: 0.92rem;
  color: rgb(51, 65, 85);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-hex-card:hover p {
  color: rgb(10, 22, 40) !important;
  font-weight: 600;
}

/* ==========================================================================
   9. CTA BANNER (Blue-to-Green Gradient rgb(30, 155, 224) to rgb(0, 210, 106))
   ========================================================================== */
.cta-banner-section {
  background: var(--gradient-cta-banner);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: rgb(255, 255, 255);
  box-shadow: 0 10px 40px rgba(30, 155, 224, 0.25);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.cta-banner-text h2 {
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* ==========================================================================
   10. FOOTER (Dark Navy BG rgb(10, 22, 40))
   ========================================================================== */
/* ==========================================================================
   10. ULTRA-PROFESSIONAL SLIM FOOTER WITH BIG SIDE LOGO
   ========================================================================== */
.site-footer {
  background-color: var(--bg-navy-dark, #0A1628);
  border-top: 2px solid rgba(0, 240, 128, 0.35);
  padding: 44px 0 20px 0;
  color: var(--text-light-muted);
  position: relative;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 28px;
  align-items: start;
}

/* Big Website Logo Container on Left Side */
.footer-big-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-big-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  padding: 6px 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 240, 128, 0.4);
  box-shadow: 0 8px 24px rgba(0, 240, 128, 0.25), 0 0 15px rgba(245, 184, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-big-brand-link:hover .footer-big-logo {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 240, 128, 0.45);
}

.footer-brand-title {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-text-sub {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #00F080;
  letter-spacing: 2px;
}

.footer-tagline-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  color: #F5B800;
  background: rgba(245, 184, 0, 0.12);
  border: 1px solid rgba(245, 184, 0, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.86rem;
  color: rgb(148, 163, 184);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 240, 128, 0.3);
  display: inline-block;
  padding-bottom: 4px;
}

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

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

.footer-links a {
  font-size: 0.88rem;
  color: rgb(148, 163, 184);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #00F080;
  padding-left: 5px;
}

.footer-address {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgb(148, 163, 184);
}

.footer-address strong {
  color: var(--text-white);
  display: block;
  margin-bottom: 4px;
}

/* Footer Contact Details & Hyperlinks */
.footer-contact-details {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgb(148, 163, 184);
}

.contact-detail-item .detail-icon {
  color: rgb(0, 240, 128);
  flex-shrink: 0;
}

.contact-detail-item .whatsapp-icon-color {
  color: rgb(37, 211, 102);
}

.footer-contact-link {
  color: rgb(56, 189, 248);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: rgb(0, 240, 128);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(0, 240, 128, 0.4);
}

.whatsapp-contact-link {
  color: rgb(37, 211, 102);
}

.whatsapp-contact-link:hover {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-sky-blue);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgb(148, 163, 184);
}

/* Responsive Breakpoints for Desktop, Laptops & Mobile */
@media (max-width: 1366px) {
  .container {
    max-width: 1140px;
    padding: 0 24px;
  }

  .hero-headline {
    font-size: 3.2rem;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ai-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .hiring-pipeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .why-hex-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }

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

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .frameworks-three-grid {
    grid-template-columns: 1fr;
  }

  .leaders-grid {
    gap: 20px;
  }

  .leader-card {
    flex: 0 1 calc(50% - 20px);
    max-width: 400px;
  }

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

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Desktop default: Hide mobile dropdown buttons & carousel controls, render contents directly */
.mobile-dropdown-btn,
.leader-carousel-controls {
  display: none !important;
}

.mobile-collapsible-wrapper {
  display: contents !important;
}

/* ==========================================================================
   MOBILE-ONLY CARD-BY-CARD DISPLAY SYSTEM (MAX-WIDTH: 768PX)
   Desktop layout is 100% preserved and unaffected.
   ========================================================================== */
@media (max-width: 768px) {

  /* Site Header & Navigation */
  .site-header {
    padding: 8px 0;
  }

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

  .site-header {
    padding: 6px 0 !important;
  }

  .brand-logo {
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-img {
    height: 38px !important;
    width: auto !important;
    border-radius: 7px !important;
    padding: 2px !important;
    border: 1.5px solid rgba(0, 107, 255, 0.4) !important;
    box-shadow: 0 3px 12px rgba(0, 107, 255, 0.3) !important;
  }

  .logo-text {
    font-size: 1.05rem !important;
    white-space: nowrap !important;
    font-weight: 900 !important;
  }

  .logo-text span {
    font-size: 0.68rem !important;
    letter-spacing: 1.2px !important;
  }

  .header-actions {
    display: flex !important;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Global Mobile Button Size Optimization */
  .btn {
    font-size: 0.88rem !important;
    padding: 11px 18px !important;
    border-radius: 12px !important;
    min-height: 42px !important;
    gap: 8px !important;
  }

  .btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 0.88rem !important;
  }

  .header-actions .btn {
    padding: 5px 10px !important;
    font-size: 0.72rem !important;
    height: auto !important;
    min-height: 28px !important;
    border-radius: 16px !important;
    white-space: nowrap !important;
    gap: 4px !important;
    box-shadow: 0 2px 8px rgba(245, 184, 0, 0.3) !important;
  }

  .header-actions .btn svg {
    width: 11px !important;
    height: 11px !important;
  }

  .tab-btn {
    padding: 9px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
  }

  .mobile-dropdown-btn {
    padding: 11px 16px !important;
    font-size: 0.84rem !important;
    border-radius: 12px !important;
    margin: 12px 0 16px 0 !important;
  }

  .cta-banner .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 0.88rem !important;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 107, 255, 0.1);
    border: 1px solid rgba(0, 107, 255, 0.35);
    color: rgb(10, 22, 40);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid #00F080;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 0 0 18px 18px;
  }

  .nav-menu.active {
    display: flex;
    animation: mobileNavSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileNavSlide {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .nav-link {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #00F080;
    background: rgba(0, 240, 128, 0.12);
    padding-left: 20px;
  }

  .nav-link::after {
    display: none;
  }

  /* Section Titles & Spacing */
  section {
    padding: 28px 0 !important;
  }

  .section-tag {
    font-size: 0.72rem !important;
    padding: 3px 10px !important;
    margin-bottom: 6px !important;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem) !important;
    margin-bottom: 8px !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.48 !important;
    margin-bottom: 18px !important;
  }

  /* Hero Section as Mobile Cards */
  .hero-section {
    padding: 24px 0 !important;
  }

  .hero-headline {
    font-size: clamp(1.65rem, 6vw, 2.1rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 10px !important;
  }

  .hero-subheading {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Mobile Responsive Aspiration Banner */
  .aspiration-banner {
    display: flex !important;
    flex-direction: column;
    padding: 28px 22px;
    gap: 24px;
  }
  .aspiration-divider {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 240, 128, 0.6), rgba(245, 184, 0, 0.6), transparent);
  }
  .divider-dot {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Mobile Smooth Horizontal Moving Marquee Ticker */
  .stats-bar-section {
    padding: 14px 0 !important;
    overflow: hidden;
  }

  .stats-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
  }

  .stats-ticker-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px !important;
    white-space: nowrap !important;
    animation: ticker-slide 16s linear infinite !important;
    width: auto !important;
    will-change: transform;
  }

  .stat-item {
    flex-shrink: 0 !important;
    width: auto !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-pill) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }

  /* Mobile Dropdown Accordion System */
  .mobile-dropdown-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: rgba(0, 240, 128, 0.12);
    border: 1.5px solid rgba(0, 240, 128, 0.4);
    color: #00F080;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    margin: 14px 0 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .mobile-dropdown-btn:hover,
  .mobile-dropdown-btn.active {
    background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
    color: #FFFFFF;
    border-color: #00F080;
    box-shadow: 0 8px 25px rgba(0, 240, 128, 0.4);
  }

  .mobile-dropdown-btn .dropdown-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 0.75rem;
  }

  .mobile-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-collapsible-wrapper {
    display: none !important;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .mobile-collapsible-wrapper.active {
    display: flex !important;
    animation: mobileAccordionExpand 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileAccordionExpand {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .offerings-grid,
  .ai-pillars-grid,
  .frameworks-three-grid,
  .why-hex-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .offering-card,
  .ai-card,
  .framework-teal-card,
  .why-hex-card {
    width: 100% !important;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
  }

  /* Leadership Mobile Touch Swiper Carousel */
  .leaders-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    margin: 0 !important;
    width: 100% !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
  }

  .leaders-grid::-webkit-scrollbar {
    display: none !important;
  }

  .leaders-grid .leader-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
  }

  .leader-carousel-controls {
    display: none !important;
  }

  .offering-header {
    padding: 16px 14px 10px 14px !important;
  }

  .offering-body {
    padding: 0 14px 14px 14px !important;
  }

  .offering-3d-img {
    max-height: 110px !important;
  }

  /* 100% QA Engine Box on Mobile */
  .qa-engine-box.qa-popup-active {
    padding: 20px 14px;
  }

  .qa-flow-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .qa-step-card {
    padding: 14px;
    border-radius: 12px;
  }

  /* Hiring Pipeline Card-by-Card */
  .hiring-pipeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hiring-step {
    width: 100%;
    border-radius: 12px;
    padding: 14px 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .avatar-wrapper {
    height: 190px !important;
    border-radius: 12px !important;
  }

  /* Compact Mobile CTA Banner */
  .cta-banner {
    padding: 20px 0 !important;
  }

  .cta-banner-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .cta-banner-text h2 {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .cta-banner-text p {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
  }

  .cta-banner .btn {
    width: auto !important;
    display: inline-flex !important;
    align-self: center !important;
    padding: 9px 20px !important;
    font-size: 0.82rem !important;
    border-radius: 20px !important;
  }

  /* Ultra-Compact & Beautiful Mobile Footer */
  .site-footer {
    padding: 24px 0 16px 0 !important;
    background: #08101C !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .footer-brand .brand-logo {
    gap: 8px;
  }

  .footer-brand .logo-img {
    height: 26px;
  }

  .footer-brand .logo-text {
    font-size: 0.88rem;
  }

  .footer-tagline {
    font-size: 0.68rem !important;
    letter-spacing: 1px !important;
    color: #00F080 !important;
    margin-top: 0 !important;
  }

  .footer-desc {
    display: none !important;
    /* Hide long paragraph on mobile for a clean compact footer */
  }

  .social-links {
    margin-top: 4px !important;
    gap: 8px !important;
  }

  .social-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .footer-col h5 {
    font-size: 0.84rem !important;
    margin-bottom: 8px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.5px !important;
  }

  .footer-links {
    gap: 5px !important;
  }

  .footer-links li a {
    font-size: 0.76rem !important;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-address {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    font-size: 0.7rem !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stat-item {
    padding: 10px 14px;
  }

  .offering-card,
  .ai-card,
  .leader-card,
  .why-hex-card,
  .framework-teal-card {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM FLOATING ACTION CONTAINER (AI CHATBOT + WHATSAPP)
   ========================================================================== */
.floating-chat-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  z-index: 99999;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

/* AI Chat Floating Action Button */
.ai-chat-float {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 107, 255, 0.55), 0 0 20px rgba(0, 240, 128, 0.35);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-bot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  opacity: 0.65;
  z-index: -1;
  animation: ai-bot-pulse 2.2s infinite ease-out;
}

@keyframes ai-bot-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.68);
    opacity: 0;
  }
}

.ai-chat-float:hover {
  transform: scale(1.14) translateY(-3px);
  border-color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 240, 128, 0.7), 0 0 25px rgba(0, 107, 255, 0.5);
}

.ai-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #00F080;
  color: #0A1628;
  font-weight: 800;
  font-size: 0.64rem;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid #0A1628;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 240, 128, 0.5);
}

.ai-chat-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(10, 22, 40, 0.95);
  color: #FFFFFF;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 128, 0.2);
  border: 1.5px solid rgba(0, 240, 128, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(10, 22, 40, 0.95);
}

.ai-chat-float:hover .ai-chat-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* WhatsApp Floating Button inside container */
.whatsapp-float {
  position: relative;
  bottom: auto;
  right: auto;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55), 0 0 20px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-bounce 3.2s infinite ease-in-out;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.65;
  z-index: -1;
  animation: whatsapp-pulse 2.4s infinite ease-out;
}

.whatsapp-float::after {
  animation-delay: 0.8s;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes whatsapp-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-float:hover {
  transform: scale(1.14) translateY(-3px);
  border-color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.75), 0 0 25px rgba(37, 211, 102, 0.5);
  animation-play-state: paused;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: rotate(8deg) scale(1.08);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(10, 22, 40, 0.95);
  color: #FFFFFF;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.2);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(10, 22, 40, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   ULTRA-PREMIUM AI CHATBOT MODAL WINDOW
   ========================================================================== */
.ai-chat-window {
  position: fixed;
  bottom: 160px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 180px);
  background: linear-gradient(180deg, #0A1628 0%, #0F233E 100%);
  border: 1.5px solid rgba(0, 240, 128, 0.4);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 107, 255, 0.35);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.94);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #006BFF, #00F080, #F5B800);
  z-index: 5;
}

.ai-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  background: rgba(13, 27, 46, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-bot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 15px rgba(0, 240, 128, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.ai-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #00F080;
  border: 2px solid #0A1628;
  border-radius: 50%;
  box-shadow: 0 0 8px #00F080;
}

.ai-bot-name {
  color: #FFFFFF;
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.2px;
}

.ai-bot-status {
  color: #00F080;
  font-size: 0.74rem;
  font-weight: 600;
}

.ai-chat-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ai-chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Chat Body */
.ai-chat-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 107, 255, 0.1) 0%, rgba(10, 22, 40, 0) 100%);
}

.chat-message {
  display: flex;
  flex-direction: column;
  max-width: 90%;
}

.chat-message.bot-message {
  align-self: flex-start;
}

.chat-message.user-message {
  align-self: flex-end;
}

.message-content {
  padding: 13px 16px;
  border-radius: 18px;
  font-size: 0.89rem;
  line-height: 1.55;
  word-break: break-word;
}

.bot-message .message-content {
  background: rgba(19, 35, 58, 0.85);
  border: 1px solid rgba(0, 240, 128, 0.25);
  color: #E2E8F0;
  border-top-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.user-message .message-content {
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 170, 255) 100%);
  color: #FFFFFF;
  border-top-right-radius: 4px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 107, 255, 0.35);
}

/* Quick Options Chips */
.chat-quick-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
}

.quick-opt-btn {
  background: rgba(0, 240, 128, 0.08);
  border: 1px solid rgba(0, 240, 128, 0.35);
  color: #00F080;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quick-opt-btn:hover {
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border-color: #00F080;
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 240, 128, 0.4);
}

.quick-opt-btn.whatsapp-opt-btn {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
  color: #25D366;
}

.quick-opt-btn.whatsapp-opt-btn:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
}

/* Embedded WhatsApp CTA Button inside Bot Message */
.chat-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  transition: all 0.25s ease;
}

.chat-wa-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  background: rgba(19, 35, 58, 0.85);
  border: 1px solid rgba(0, 240, 128, 0.25);
  border-radius: 18px;
  border-top-left-radius: 4px;
  width: fit-content;
}

.typing-dot {
  width: 7px;
  height: 7px;
  background: #00F080;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

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

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Footer & Input */
.ai-chat-footer {
  padding: 14px 16px;
  background: rgba(13, 27, 46, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-input-form {
  display: flex;
  gap: 8px;
}

#aiChatInput {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 9px 16px;
  color: #FFFFFF;
  font-size: 0.86rem;
  outline: none;
  transition: all 0.25s ease;
}

#aiChatInput:focus {
  border-color: #00F080;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 240, 128, 0.25);
}

.ai-send-btn {
  background: linear-gradient(135deg, rgb(0, 107, 255) 0%, rgb(0, 240, 128) 100%);
  border: none;
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 240, 128, 0.4);
  transition: transform 0.2s ease;
}

.ai-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 240, 128, 0.6);
}

.ai-chat-footer-action {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}

.direct-wa-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.direct-wa-link:hover {
  text-decoration: underline;
  color: #00F080;
}

/* Mobile Floater & Modal Drawer Overrides */
@media (max-width: 768px) {
  .floating-chat-container {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }

  /* Hide AI Chat Bot floating button & chat window completely on mobile */
  .ai-chat-float,
  .ai-chat-window,
  #aiChatToggle,
  #aiChatWindow {
    display: none !important;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .ai-chat-tooltip,
  .whatsapp-tooltip {
    display: none !important;
  }
}

/* ==========================================================================
   CORPORATE MODERN WHITE COOKIE CONSENT BANNER & SETTINGS MODAL
   ========================================================================== */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-banner-wrapper.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text a {
  color: #2563EB;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: #1D4ED8;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: #0A1628;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.15);
}

.btn-cookie-accept:hover {
  background: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 22, 40, 0.25);
}

.btn-cookie-reject {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
}

.btn-cookie-reject:hover {
  background: #E2E8F0;
  color: #0F172A;
  border-color: #94A3B8;
}

.btn-cookie-settings {
  background: #FFFFFF;
  color: #2563EB;
  border: 1px solid #93C5FD;
}

.btn-cookie-settings:hover {
  background: #EFF6FF;
  border-color: #2563EB;
  color: #1D4ED8;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal-overlay.active .cookie-modal-card {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
}

.cookie-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-header h3 svg {
  color: #2563EB;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: #64748B;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.cookie-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  background: #FFFFFF;
}

.cookie-intro {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-cat-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cookie-cat-item:hover {
  border-color: #93C5FD;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-cat-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-required {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

.badge-optional {
  background: #DBEAFE;
  color: #1D4ED8;
  border: 1px solid #93C5FD;
}

.cookie-cat-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Custom Toggle Switches */
.switch-label {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.switch-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E1;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #0A1628;
}

input:checked + .slider:before {
  transform: translateX(20px);
  background-color: #FFFFFF;
}

input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: #F8FAFC;
}

@media (max-width: 768px) {
  .cookie-banner-card {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cookie {
    width: 100%;
    text-align: center;
  }
  .cookie-banner-wrapper {
    bottom: 12px;
    width: calc(100% - 24px);
  }
}