/* ==================== CORE DESIGN SYSTEM ==================== */
:root {
  /* Harmonious Blue Palette (HSL & RGB) */
  --color-primary: #1e40af; /* Classic Royal Blue */
  --color-primary-rgb: 30, 64, 175;
  --color-primary-dark: #0b1329; /* Deep Space Navy */
  --color-primary-light: #eff6ff; /* Soft Blue bg */
  
  --color-secondary: #06b6d4; /* Tech Cyan */
  --color-secondary-rgb: 6, 182, 212;
  --color-accent-blue: #3b82f6; /* Bright Tech Blue */
  --color-accent-blue-rgb: 59, 130, 246;
  
  /* Text and Interface Tones */
  --color-text-dark: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #ffffff;
  
  /* Section Backgrounds */
  --bg-light: #ffffff;
  --bg-gray: #f8fafc; /* Very soft light gray-blue */
  --bg-dark: #080d1a; /* Space Black-Blue */
  
  /* Modern Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Depth */
  --shadow-premium: 0 10px 30px -10px rgba(30, 64, 175, 0.04), 0 1px 3px rgba(30, 64, 175, 0.01);
  --shadow-card: 0 20px 40px -15px rgba(30, 64, 175, 0.06);
  --shadow-hover: 0 35px 60px -20px rgba(30, 64, 175, 0.12);
  --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.35);
  --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.25);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  /* Animation Timing */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* ==================== GLOBAL BASE STYLES ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================== TYPOGRAPHY & LABELS ==================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(30, 64, 175, 0.06);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-bottom: 3.5rem;
}

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

/* ==================== BUTTON STYLES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-pill {
  padding: 0.65rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
  font-size: 0.85rem;
}

.btn-pill:hover {
  background: white;
  color: var(--color-primary-dark);
  border-color: white;
  transform: translateY(-2px);
}

.btn-capsule {
  padding: 1rem 2.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0.25px;
  box-shadow: var(--shadow-premium);
}

.btn-primary-capsule {
  background-color: var(--color-accent-blue);
  color: white;
}

.btn-primary-capsule:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-outline {
  border: 2px solid rgba(30, 64, 175, 0.15);
  background: transparent;
  color: var(--color-primary);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 10px 25px -10px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

header .logo, 
header .nav-link, 
header .nav-tagline {
  color: white;
}

header .logo-cube span {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

header .btn-pill {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(30, 64, 175, 0.03);
  border-bottom: 1px solid rgba(30, 64, 175, 0.05);
  height: 75px;
}

header.scrolled .logo, 
header.scrolled .nav-link, 
header.scrolled .nav-tagline {
  color: var(--color-primary-dark);
}

header.scrolled .logo-cube span {
  border-color: var(--color-primary-dark);
  background: rgba(30, 64, 175, 0.05);
}

header.scrolled .btn-pill {
  border-color: rgba(30, 64, 175, 0.2);
  color: var(--color-primary-dark);
}

header.scrolled .btn-pill:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

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

/* Logo cube animation */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
}

.logo-cube {
  position: relative;
  width: 24px;
  height: 24px;
  transform-style: preserve-3d;
  animation: rotateCube 12s infinite linear;
}

.logo-cube span {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid;
  transition: var(--transition-smooth);
}

.logo-cube span:nth-child(1) { transform: rotateY(0deg) translateZ(12px); }
.logo-cube span:nth-child(2) { transform: rotateY(90deg) translateZ(12px); }
.logo-cube span:nth-child(3) { transform: rotateY(180deg) translateZ(12px); }
.logo-cube span:nth-child(4) { transform: rotateY(-90deg) translateZ(12px); }
.logo-cube span:nth-child(5) { transform: rotateX(90deg) translateZ(12px); }
.logo-cube span:nth-child(6) { transform: rotateX(-90deg) translateZ(12px); }

@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Header Logo Images */
.header-logo-main {
  max-height: 60px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.header-logo-sticky {
  max-height: 60px;
  width: auto;
  display: none;
  transition: opacity 0.3s ease;
}

header.scrolled .header-logo-main {
  display: none;
}

header.scrolled .header-logo-sticky {
  display: block;
}

/* Footer Logo Image */
.footer-logo-img {
  max-width: 150px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  opacity: 0.85;
}

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

.nav-link:hover, .nav-link.active {
  opacity: 1;
}

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

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

.nav-tagline {
  font-size: 0.85rem;
  border-right: 1.5px solid rgba(255, 255, 255, 0.2);
  padding-right: 1.5rem;
  opacity: 0.8;
}

header.scrolled .nav-tagline {
  border-right-color: rgba(30, 64, 175, 0.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  transition: var(--transition-fast);
}

header.scrolled .menu-toggle span {
  background-color: var(--color-primary-dark);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  /* Augment to a state-of-the-art dark mesh gradient background */
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.28) 0%, transparent 60%),
              var(--bg-dark);
  padding: 190px 0 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.hero-title-scroller {
  display: block;
  height: 1.2em;
  overflow: hidden;
  position: relative;
  margin: 0.2rem 0;
}

.scroller-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: var(--color-secondary);
}

.scroller-text.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.underline-wrapper {
  position: relative;
  white-space: nowrap;
}

.underline-svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 15px;
}

.underline-svg path {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawUnderline 2s forwards 0.5s;
}

@keyframes drawUnderline {
  to { stroke-dashoffset: 0; }
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 530px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-play-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  cursor: pointer;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-play-wrapper:hover .play-btn {
  transform: scale(1.1);
  background-color: white;
  color: var(--color-primary-dark);
  border-color: white;
  box-shadow: var(--shadow-glow-cyan);
}

/* Hero Right Column (Bigger Circle Cutout filling the right side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.grid-sphere-container {
  position: relative;
  /* Make circle much bigger to fill the right column nicely */
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Nested Outer Dashed spinning ring overlay to augment designs */
.grid-sphere-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px dashed rgba(6, 182, 212, 0.25);
  animation: rotation 30s linear infinite;
}

/* Nested Inner Solid technical ring details */
.grid-sphere-container::after {
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.12) inset;
}

.grid-sphere-glow {
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(30, 58, 138, 0) 70%);
  filter: blur(15px);
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 1; }
}

.grid-sphere-warp {
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(transparent 45%, rgba(6, 182, 212, 0.05) 46%, transparent 70%);
}

.grid-portrait-img {
  position: relative;
  /* Make portrait occupy 80% of container */
  width: 384px;
  height: 384px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: var(--transition-smooth);
}

.grid-portrait-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.badge-stamp {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 130px;
  height: 130px;
  z-index: 3;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.badge-stamp-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-stamp-icon {
  position: absolute;
  font-size: 1.45rem;
  color: var(--color-secondary);
  z-index: 4;
}

.badge-stamp svg {
  width: 100%;
  height: 100%;
  animation: rotation 15s linear infinite;
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==================== OUR CLIENTS SECTION ==================== */
.clients-section {
  padding: 6rem 0;
  background-color: var(--bg-gray);
  border-bottom: 1px solid rgba(30, 64, 175, 0.05);
}

.clients-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 3.5rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card {
  background: #ffffff;
  border-radius: 12px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.client-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.08); /* Premium violet hover glow */
  border-color: rgba(124, 58, 237, 0.15);
}

.client-card svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clients-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.clients-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: #7c3aed; /* Violet as reference */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.04);
  transition: var(--transition-smooth);
}

.clients-btn:hover {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.clients-btn:active {
  transform: translateY(0);
}

.clients-grid.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

/* ==================== SECTIONS GENERAL ==================== */
.section {
  padding: 8rem 0;
}

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

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

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

/* ==================== SECTION 2: MODERN BUSINESS AGENCY (COLLAGE) ==================== */
.collage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.collage-img-back {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(30, 64, 175, 0.05);
}

.collage-img-front {
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 240px;
  height: 280px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.collage-burst {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 110px;
  height: 110px;
  z-index: 3;
  animation: rotation 25s linear infinite;
  opacity: 0.85;
}

.progress-bars-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem 0;
}

.progress-bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-bar-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.progress-bar-track {
  width: 100%;
  height: 10px;
  background-color: #f1f5f9;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.05);
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.agency-content.revealed .fill-growth {
  width: 100% !important;
}

.agency-content.revealed .fill-technology {
  width: 80% !important;
}

.fill-growth {
  background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
}

.fill-technology {
  background: linear-gradient(90deg, #3b82f6 0%, #7c3aed 100%);
}

.progress-note {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-primary);
  padding-left: 0.75rem;
  margin-top: 1.5rem;
}

/* ==================== SECTION 3: CREATIVE THINKING ==================== */
.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.25rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.check-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.15);
  flex-shrink: 0;
}

.checklist-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.creative-buttons {
  display: flex;
  gap: 1.5rem;
}

.creative-buttons .btn-purple {
  background-color: #7c3aed;
  color: white;
  box-shadow: 0 10px 25px -10px rgba(124, 58, 237, 0.35);
}

.creative-buttons .btn-purple:hover {
  background-color: #6d28d9;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(124, 58, 237, 0.5);
}

.creative-buttons .btn-light-purple {
  background-color: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.creative-buttons .btn-light-purple:hover {
  background-color: rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

/* Lady with phone visual */
.lady-phone-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lady-phone-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(10px);
  animation: pulseGlow 8s infinite alternate;
}

.lady-phone-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(124, 58, 237, 0.2);
  animation: rotation 30s linear infinite;
}

.lady-phone-img {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow-card);
  z-index: 2;
  transition: var(--transition-smooth);
}

.lady-phone-img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Floating Growth Card overlay */
.floating-growth-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.08);
  z-index: 3;
}

.growth-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #7c3aed;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.growth-details {
  display: flex;
  flex-direction: column;
}

.growth-percentage {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.growth-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Floating технический chart overlay card */
.floating-chart-card {
  position: absolute;
  top: 40px;
  right: -30px;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.08);
  border: 1px solid rgba(30, 64, 175, 0.05);
  z-index: 3;
}

.chart-header {
  display: flex;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 60px;
  padding: 0 0.25rem;
}

.chart-bar {
  width: 16px;
  background-color: #f1f5f9;
  border-radius: 4px 4px 0 0;
  transition: var(--transition-smooth);
}

.chart-bar.active {
  background-color: var(--color-accent-blue);
}

/* Floating technical symbols details */
.floating-plus {
  position: absolute;
  top: 80px;
  left: 20px;
  color: #7c3aed;
  font-size: 1.5rem;
  animation: floatDecoration 4s ease-in-out infinite;
  z-index: 3;
}

.floating-sparkle {
  position: absolute;
  bottom: 80px;
  right: 10px;
  color: #7c3aed;
  font-size: 1.25rem;
  animation: floatDecoration 5s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes floatDecoration {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==================== SERVICES SECTION (WHAT WE OFFER) ==================== */
/* Adjusted to exactly 3 columns (3 up, 3 down) to lay out 6 cards uniformly */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 4.5rem;
}

.service-card {
  background: white;
  padding: 3rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(30, 64, 175, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent-blue);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(30, 64, 175, 0.03);
  transition: var(--transition-smooth);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.service-card .service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Card Hover States */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #bfdbfe;
}

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

.service-card:hover .service-icon {
  background: var(--color-accent-blue);
  color: white;
  box-shadow: var(--shadow-glow-blue);
}

.service-card:hover .service-link {
  color: var(--color-accent-blue);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us-visual {
  display: flex;
  justify-content: center;
}

.why-image-container {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1e3a8a 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-card);
}

.why-image-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-stat-big {
  display: block;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-stat-desc {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-top: 0.5rem;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.why-feature i {
  color: var(--color-secondary);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
}

.why-item-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent-blue);
  background-color: rgba(59, 130, 246, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.why-item-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ==================== PREMIUM TESTIMONIALS GRID SECTION ==================== */
.testimonials-section {
  position: relative;
  /* Deep navy-blue space background */
  background: radial-gradient(circle at 15% 25%, rgba(30, 64, 175, 0.28) 0%, transparent 60%),
              radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.18) 0%, transparent 65%),
              #090e1a;
  color: white;
  padding: 8rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Translucent neon blurs positioned behind the cards grid */
.testimonials-glow-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.testimonials-glow-right {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.testimonials-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4.5rem;
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.testimonials-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* Yellow serif italic subtitle font matching the screenshot */
.testimonials-title .title-serif {
  font-family: 'Outfit', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: #facc15; /* Soft gold rating yellow */
  letter-spacing: 0.25px;
}

.testimonials-title .title-bold {
  font-size: 3.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.testimonials-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

/* Overall rating badge block */
.rating-overall {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-stars {
  display: flex;
  gap: 0.35rem;
  color: #facc15;
  font-size: 1.1rem;
}

.rating-text {
  color: #facc15;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Aligned 3-Card Grid layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-grid-card {
  background: #111a2e; /* Slate-navy translucent card */
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.testimonial-grid-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15); /* Electric cyan glow pulse */
  border-color: rgba(6, 182, 212, 0.25);
}

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

/* User avatar bubble matching AJ, SW, CO reference bubbles */
.user-avatar-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fef08a; /* Soft warning yellow matching screenshot bubble */
  color: #1e293b;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.user-name {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.user-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.card-stars {
  display: flex;
  gap: 0.25rem;
  color: #facc15;
  font-size: 0.95rem;
}

/* Giant quote overlay mark in the corner background */
.quote-icon {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.testimonial-quote-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  flex-grow: 1;
}

.testimonial-date {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

/* ==================== CONTACT SECTION (GET IN TOUCH) ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Form Success Glassmorphic Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-anim {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: scaleSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleSuccess {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* Floating labels form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.form-group {
  position: relative;
  width: 100%;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 0;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  border: none;
  border-bottom: 2px solid rgba(30, 64, 175, 0.12);
  background: transparent;
  transition: var(--transition-fast);
}

.form-textarea {
  height: 100px;
  resize: none;
}

.form-label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  pointer-events: none;
}

/* Floating behavior when input is focused or not empty */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-blue);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent-blue);
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.form-checkbox-input {
  display: none;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(30, 64, 175, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.form-checkbox-input:checked + .form-checkbox {
  background-color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
}

.form-checkbox-input:checked + .form-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 0.65rem;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.form-checkbox-label a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.contact-info-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

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

.contact-method-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(30, 64, 175, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-method-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-method-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-method-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.contact-method-value:hover {
  color: var(--color-accent-blue);
}

.contact-socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1.5px solid rgba(30, 64, 175, 0.08);
  padding-top: 2rem;
}

.social-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-gray);
  border: 1px solid rgba(30, 64, 175, 0.05);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* ==================== SECTION 4: INDUSTRIES WE SERVE ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}

.industry-card {
  background: white;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(30, 64, 175, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent-blue);
  opacity: 0;
  transition: var(--transition-smooth);
}

.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(30, 64, 175, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.industry-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.85rem;
}

.industry-card .industry-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Industry card hovers */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #bfdbfe;
}

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

.industry-card:hover .industry-icon {
  background-color: var(--color-accent-blue);
  color: white;
  box-shadow: var(--shadow-glow-blue);
}

.industry-card:hover .industry-link {
  color: var(--color-accent-blue);
}

/* ==================== SECTION 5: PARTNERS & VIDEO TRANSITION ==================== */
.partners-content {
  display: flex;
  flex-direction: column;
}

.partner-big-metric {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 0.5rem;
}

.partners-logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partners-logos-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

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

.partner-logo-item {
  background: white;
  border: 1px solid rgba(30, 64, 175, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.partner-logo-item i {
  color: var(--color-accent-blue);
  font-size: 1.25rem;
}

.partner-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: #bfdbfe;
}

/* High-end Dark Video Banner Block styling */
.chess-banner-section {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.chess-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.chess-banner-section:hover .chess-banner-bg {
  transform: scale(1.04);
}

.chess-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 14, 30, 0.9) 0%, rgba(30, 58, 138, 0.65) 100%);
  z-index: 1;
}

.chess-banner-content {
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chess-banner-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.chess-banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  max-width: 650px;
  line-height: 1.2;
}

.chess-banner-play-btn {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
  z-index: 2;
}

.chess-banner-play-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: var(--color-secondary);
  color: white;
  box-shadow: var(--shadow-glow-cyan);
}

/* ==================== FOOTER ==================== */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  /* Restructured for 5 columns on desktop grid */
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

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

.footer-logo {
  color: white;
}

.footer-logo .logo-cube span {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col-title {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

/* 8-Image Masonry Gallery Grid styling on right side of footer */
.footer-gallery-col {
  display: flex;
  flex-direction: column;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 55px;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  filter: brightness(1.05);
  transform: scale(1.08);
}

/* Custom aligned masonry grid sizes */
.gallery-item.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.span-2x1 {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item.span-1x2 {
  grid-column: span 1;
  grid-row: span 2;
}

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-link:hover {
  color: white;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: floatPulse 2s infinite alternate;
}

@keyframes floatPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  background-color: #20ba5a;
}

/* ==================== RESPONSIVE RESPONSIVENESS ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-visual {
    width: 100%;
    margin-top: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 1.5rem;
  }
  header {
    height: 70px;
  }
  .menu-toggle {
    display: flex;
  }
  /*#072536*/
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color:  #8c9599 !important;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 998;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    left: 0;
  }
  header.scrolled .nav-menu {
    top: 75px;
    height: calc(100vh - 75px);
  }
  header .menu-toggle span {
    background-color: white;
  }
  header.scrolled .menu-toggle span {
    background-color: var(--color-primary-dark);
  }
  .nav-actions {
    display: none;
  }
  .hero {
    padding: 140px 0 70px 0;
  }
  .grid-sphere-container {
    width: 320px;
    height: 320px;
  }
  .grid-portrait-img {
    width: 260px;
    height: 260px;
  }
  .badge-stamp {
    width: 100px;
    height: 100px;
    left: -10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-card {
    padding: 2rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-gallery {
    max-width: 320px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==================== SMOOTH SCROLL REVEAL EFFECTS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==================== SUBPAGE STYLING SYSTEMS ==================== */
.subpage-banner {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.2) 0%, transparent 60%),
              var(--bg-dark);
  padding: 170px 0 90px 0;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subpage-banner-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--color-secondary);
}

.breadcrumb a:hover {
  color: white;
}

/* About subpage: Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(30, 64, 175, 0.04);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: #bfdbfe;
}

.team-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

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

.team-role {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Products Subpage */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 64, 175, 0.05);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: #93c5fd;
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(30, 64, 175, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-glow-blue);
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

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

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.product-features-list i {
  color: #10B981;
  margin-right: 0.5rem;
}

/* Careers open jobs list */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.job-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 64, 175, 0.05);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.job-card:hover {
  transform: translateX(5px);
  border-color: #93c5fd;
  box-shadow: var(--shadow-card);
}

.job-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 70%;
}

.job-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.job-meta-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.job-meta-row span i {
  color: var(--color-accent-blue);
  margin-right: 0.4rem;
}

.job-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* Contact page FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(30, 64, 175, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  transition: var(--transition-fast);
}

.faq-header:hover {
  background: rgba(30, 64, 175, 0.02);
  color: var(--color-primary);
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
  color: var(--color-accent-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 2rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* Responsive adjustment subpages */
@media (max-width: 1024px) {
  .team-grid, .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid, .products-grid {
    grid-template-columns: 1fr;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .job-main {
    max-width: 100%;
  }
  .subpage-banner-title {
    font-size: 2.5rem;
  }
}
