/* ══════════════════════════════════════════════
   CLINISOLTECH — Global Enterprise Consulting Theme
   Creative Direction: Alternating backgrounds, massive photography,
                       split-image layouts, 3D card tilts,
                       and GSAP-ready typography reveals.
   Typography: Plus Jakarta Sans (Titles) + Inter (Body)
   Design System: Royal Blue (#0B4F93), Purple (#7C3AED), Navy (#060913)
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  /* Color Variables */
  --bg-primary:         #ffffff;
  --bg-secondary:       #F5F9FF; /* Soft Blue */
  --bg-lavender:        #FAF5FF; /* Light Lavender */
  --bg-dark-navy:       #060913; /* Dark Tech Navy */
  --bg-tertiary:        #f1f5f9;
  
  --brand:              #0B4F93;
  --brand-dk:           #073b6f;
  --brand-light:        rgba(11, 79, 147, 0.04);
  
  --accent:             #7C3AED;
  --accent-dk:          #6d28d9;
  --accent-light:       rgba(124, 58, 237, 0.05);
  
  --cyan:               #06B6D4;
  --cyan-light:         rgba(6, 182, 212, 0.05);

  /* Typography Text */
  --text:               #0f172a;
  --text2:              #475569;
  --text3:              #64748b;
  --text-white:         #ffffff;

  /* Spacing Grid & Borders */
  --border:             rgba(15, 23, 42, 0.06);
  --border-brand:       rgba(11, 79, 147, 0.12);
  --border-accent:      rgba(124, 58, 237, 0.12);
  
  --shadow-sm:          0 2px 10px rgba(15, 23, 42, 0.015);
  --shadow:             0 8px 30px rgba(15, 23, 42, 0.035);
  --shadow-lg:          0 20px 60px rgba(15, 23, 42, 0.06);
  
  --radius-sm:          8px;
  --radius:             16px;
  --radius-lg:          32px;
  
  --nav-h:              76px;
  --transition:         all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast:    all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE RULES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: auto; /* keep instant for SPA page switches */
  scrollbar-width: thin;
  scrollbar-color: var(--brand) var(--bg-tertiary);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

a { cursor: pointer; text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; color: inherit; background: none; border: none; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* .page show/hide handled below in PAGE ROUTER section */

/* ─── ANIMATION SAFETY FALLBACK ─── */
/* Ensure content is always visible — GSAP will override with smooth animations */
.gsap-reveal,
.reveal,
.line-reveal {
  opacity: 1;
  transform: none;
}


.brand { color: var(--brand); }
.brand-accent { color: var(--accent); }

/* ─── SCROLL BAR ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--cyan));
  width: 0%;
  z-index: 8999;
  pointer-events: none;
  transition: width 0.1s ease-out;
}

/* ─── MESH BACKGROUND BLOOMS ─── */
.mesh-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(11, 79, 147, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mesh-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(11, 79, 147, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
}
.mesh-bg::after {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 40%);
  filter: blur(40px);
  animation: bg-drift 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}
@keyframes bg-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5%, -5%) rotate(10deg); }
}

/* ─── CURSOR PHYSICS RING ─── */
#cursor-ring {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--brand);
  border-radius: 50%;
  position: fixed;
  top: -12px;
  left: -12px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(0, 0);
  transition: transform 0.1s ease-out;
}
#cursor-ring.hov {
  width: 44px;
  height: 44px;
  background-color: rgba(11, 79, 147, 0.05);
  border-color: var(--accent);
}

/* ─── BUTTONS (MAGNETIC CAPABLE) ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(11, 79, 147, 0.12);
  position: relative;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-dk);
  box-shadow: 0 12px 30px rgba(11, 79, 147, 0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--accent-dk);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.22);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border-brand);
  color: var(--brand);
  background: transparent;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--brand);
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--accent);
}

/* ─── NAVIGATION FLOATING DECK ─── */
.navbar {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 9000;
  pointer-events: all;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-inner {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 79, 147, 0.1);
  border-radius: 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  box-shadow: 0 8px 30px rgba(11, 79, 147, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
  top: 12px;
}
.navbar.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(11, 79, 147, 0.15);
  border-color: rgba(11, 79, 147, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text2);
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--brand);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  cursor: pointer;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 24px;
  transition: var(--transition);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-size: 1.2rem; font-weight: 700; color: var(--text2); }
.mobile-nav a:hover { color: var(--brand); }
.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text2);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: var(--transition-fast);
}
.mobile-close-btn:hover {
  color: var(--brand);
  transform: rotate(90deg);
}
.btn-quote-mobile {
  margin-top: auto;
  text-align: center;
  background: var(--brand);
  color: #fff;
  padding: 16px;
  border-radius: 30px;
  font-weight: 700;
}

/* ─── PAGE ROUTER ACTIVE SWAPS ─── */
.page {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.page.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

/* ─── HERO SPLIT-SCREEN COLLAGE ─── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: radial-gradient(circle at 10% 20%, rgba(11, 79, 147, 0.02) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.02) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-content { position: relative; z-index: 5; }
/* ─── HERO ABSTRACT DECORATIONS (LEFT TOP) ─── */
.hero-deco-dots {
  position: absolute;
  top: -90px;
  left: -64px;
  width: 180px;
  height: 180px;
  background-image: 
    radial-gradient(rgba(11, 79, 147, 0.18) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
  animation: float-rotate 28s ease-in-out infinite alternate;
}
@keyframes float-rotate {
  0% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(12px, -12px); }
  100% { transform: rotate(360deg) translate(0, 0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 79, 147, 0.05);
  border: 1px solid rgba(11, 79, 147, 0.15);
  color: var(--brand);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(11, 79, 147, 0.04);
  animation: float-badge-subtle 4s ease-in-out infinite;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-badge:hover {
  background: rgba(11, 79, 147, 0.08);
  border-color: rgba(11, 79, 147, 0.3);
  box-shadow: 0 6px 20px rgba(11, 79, 147, 0.08);
}
@keyframes float-badge-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
}
.badge-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  margin-top: -4px; margin-left: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: badge-ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  opacity: 0;
  box-sizing: border-box;
}
@keyframes badge-ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text2);
  margin-bottom: 16px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-sub-secondary {
  font-size: 1.05rem;
  color: var(--text3);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }
  .hero-sub-secondary {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .hero-sub {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
  }
  .hero-sub-secondary {
    font-size: 0.9rem !important;
    margin-bottom: 24px !important;
  }
}
.hero-actions { display: flex; align-items: center; gap: 16px; }

/* 3D Collage Hero Frame */
.hero-image {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-collage-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.device-frame-3d {
  position: relative;
  z-index: 2;
  width: 440px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-15deg) rotateX(8deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.collage-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-1 {
  top: 40px;
  left: -20px;
  transform: translateZ(40px);
}
.cb-2 {
  bottom: 60px;
  right: -20px;
  transform: translateZ(50px);
}

/* ─── TRUST TICKER ─── */
.features-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.features-bar-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.fbar-item {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.fbar-item i { color: var(--brand); }

/* ─── SECTION HEADER HEADS ─── */
.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}
.section-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-subtitle { color: var(--text2); font-size: 1.05rem; }

/* ─── ALTERNATING CONSULTING SURFACES ─── */
.bg-white {
  background: var(--bg-primary);
}
.bg-soft-blue {
  background: var(--bg-secondary); /* #F5F9FF */
}
.bg-lavender {
  background: var(--bg-lavender); /* #FAF5FF */
}
.bg-dark-navy {
  background: var(--bg-dark-navy); /* #060913 */
  color: #ffffff;
}
.bg-dark-navy h1, .bg-dark-navy h2, .bg-dark-navy h3, .bg-dark-navy h4, .bg-dark-navy h5 {
  color: #ffffff !important;
}
.bg-dark-navy p, .bg-dark-navy .section-subtitle, .bg-dark-navy .svc-d-text p {
  color: #94a3b8 !important;
}
.bg-dark-navy .section-label {
  color: var(--cyan);
}
.bg-dark-navy .border, .bg-dark-navy .svc-detail-card {
  border-color: rgba(255, 255, 255, 0.08);
}
.bg-dark-navy .svc-detail-card {
  background: rgba(255, 255, 255, 0.02);
}
.bg-dark-navy .svc-d-icon {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
}

/* ─── DIAGNOL / OVERLAPPING LAYOUT SHAPES ─── */
.angled-top {
  clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
  margin-top: -3vw;
  padding-top: 140px;
}
.angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%);
  padding-bottom: 140px;
}

/* ─── SPLIT LAYOUT MASSIVE IMAGES (60-40 Visual Ratio) ─── */
.split-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.split-panel.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
.split-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img-box img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: var(--transition);
}
.split-img-box img:hover {
  transform: scale(1.03);
}

/* ─── SERVICES FILTER MECHANICS ─── */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 24px;
  border: 1px solid var(--border-brand);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.svc-detail-card.hide {
  display: none !important;
}

/* ─── BENTO GRID SHOWCASE ─── */
.bento-box-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  margin-top: 40px;
}
.bento-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.bento-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.bento-item.span-2 { grid-column: span 2; }
.bento-item h3 { font-size: 1.4rem; margin-bottom: 12px; }
.bento-item p { font-size: 0.95rem; color: var(--text2); margin-bottom: 20px; }
.bento-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 20px;
}
.bento-collage-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.bento-collage-img:hover { transform: scale(1.03); }

/* ─── ABOUT SNIPPET OVERLAP ─── */
.about-snippet-inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-side { position: relative; }
.about-img-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  bottom: -20px;
  right: -20px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.about-img-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { display: block; width: 100%; height: auto; }
.about-exp-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.about-exp-badge strong { font-size: 2.2rem; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.about-exp-badge span { font-size: 0.8rem; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }

.about-points { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px 0; }
.abt-pt { display: flex; gap: 16px; }
.pt-check {
  width: 32px;
  height: 32px;
  background: var(--brand-light);
  border: 1px solid var(--border-brand);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abt-pt strong { font-size: 1.05rem; display: block; margin-bottom: 4px; }
.abt-pt p { font-size: 0.92rem; color: var(--text2); }

.about-cta-row { display: flex; align-items: center; gap: 40px; margin-top: 40px; }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat strong { font-size: 1.6rem; color: var(--brand); }
.mini-stat span { font-size: 0.85rem; color: var(--text3); font-weight: 600; }

/* ─── STAT COUNTERS ─── */
.counter { padding: 80px 0; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%); color: #fff; position: relative; }
.counter-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.counter-item { text-align: center; }
.counter-num { font-size: 3.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.counter-num span { font-size: 2.2rem; color: var(--cyan); margin-left: 2px; }
.counter-label { font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── TESTIMONIALS (ITALLIC QUOTE DECK) ─── */
.quote-slider-section {
  position: relative;
  overflow: hidden;
}
.quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 240px;
}
.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quote-slide.active {
  opacity: 1;
  transform: translateY(0);
}
.quote-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-author-info strong { font-size: 0.95rem; display: block; }
.quote-author-info span { font-size: 0.78rem; color: var(--text3); }

/* ─── CTA BANNER ─── */
.cta-banner { padding: 80px 0; position: relative; }
.cta-inner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.25), transparent 50%); }
.cta-text { position: relative; z-index: 2; }
.cta-text h2 { font-size: 2.2rem; color: #fff; margin-bottom: 12px; }
.cta-text p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; gap: 16px; position: relative; z-index: 2; flex-shrink: 0; }

/* ─── CLIENTS TICKER ─── */
.clients-marquee-wrap { width: 100%; overflow: hidden; }
.clients-marquee { display: flex; gap: 48px; width: max-content; animation: marquee-scroll 20s linear infinite; }
.client-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text3);
  opacity: 0.35;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* ─── INNER PAGE HERO ─── */
.inner-hero { padding: calc(var(--nav-h) + 60px) 0 40px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.inner-hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text3); font-weight: 600; }
.breadcrumb a { cursor: pointer; }
.breadcrumb a:hover { color: var(--brand); }

/* ─── ABOUT STORY PAGE ─── */
.about-main-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.abt-main-card { position: relative; }
.abt-gfx { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.abt-gfx img { display: block; width: 100%; height: auto; }
/* .abt-exp-pill is fully defined below with premium styles and variables */

.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.val-item i { font-size: 1.35rem; margin-bottom: 12px; display: block; }
.val-item strong { font-size: 1.05rem; display: block; margin-bottom: 6px; }
.val-item p { font-size: 0.88rem; color: var(--text2); }

.mission-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.mission-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.mission-card p { font-size: 0.94rem; color: var(--text2); }

/* What we do grids */
.ab-what-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.ab-what-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; transition: var(--transition); }
.ab-what-card:hover { background: #ffffff; box-shadow: var(--shadow-lg); }
.ab-what-icon { font-size: 2.2rem; color: var(--brand); margin-bottom: 20px; }
.ab-what-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.ab-what-card p { font-size: 0.94rem; color: var(--text2); margin-bottom: 20px; }
.ab-what-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ab-what-list li { font-size: 0.85rem; font-weight: 600; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.ab-what-list li i { color: var(--brand); }

/* Why choose us about page */
.ab-why { position: relative; background: var(--brand); color: #fff; overflow: hidden; }
.ab-why-bg { position: absolute; inset: 0; background: radial-gradient(circle at 10% 30%, rgba(124,58,237,0.15), transparent 40%); }
.ab-why-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.ab-why-right { display: flex; flex-direction: column; gap: 32px; }
.ab-why-item { display: flex; gap: 20px; }
.ab-why-num { font-size: 1.6rem; font-weight: 800; color: var(--cyan); opacity: 0.7; }
.ab-why-body strong { font-size: 1.15rem; display: block; margin-bottom: 4px; color:#fff; }
.ab-why-body p { font-size: 0.94rem; color: rgba(255,255,255,0.7); }

/* Industries grids */
.ab-ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ab-ind-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: var(--transition); }
.ab-ind-card:hover { background: #ffffff; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ab-ind-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.ab-ind-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.ab-ind-card p { font-size: 0.88rem; color: var(--text2); margin-bottom: 16px; }
.ab-ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ab-ind-tags span { font-size: 0.7rem; font-weight: 700; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: 12px; }

/* ─── SERVICES DETAIL PAGE ─── */
.svc-detail-list { display: flex; flex-direction: column; gap: 48px; margin-top: 40px; }
.svc-detail-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 50px;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.svc-detail-card:hover { box-shadow: var(--shadow-lg); }
.svc-d-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.svc-d-text { flex-grow: 1; }
.svc-d-text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-d-text p { font-size: 1rem; color: var(--text2); margin-bottom: 24px; max-width: 800px; }
.svc-d-text ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.svc-d-text ul li { font-size: 0.94rem; font-weight: 600; color: var(--text2); display: flex; align-items: center; gap: 10px; }
.svc-d-text ul li i { color: var(--brand); }

/* ─── CAREERS BENEFITS & CULTURE PANELS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.benefit-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.benefit-card p { font-size: 0.88rem; color: var(--text2); }

/* ─── CONTACT SECTIONS & INPUTS ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.contact-item strong { font-size: 1.05rem; display: block; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.94rem; color: var(--text2); }

.contact-form { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / span 2; margin-bottom: 20px; }
.form-label { font-size: 0.85rem; font-weight: 700; color: var(--text2); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 79, 147, 0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }

.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 24px; }
.radio-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text2);
  transition: var(--transition);
}
.radio-card.selected { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }

.consent-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--text3); margin-bottom: 30px; cursor: pointer; }
.consent-checkbox input { margin-top: 3px; }

.cf-error { display: none; background: rgba(239, 68, 68, 0.05); border: 1px solid #fca5a5; color: #ef4444; padding: 12px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 20px; }

/* ─── TOAST NOTIFICATIONS ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--border-brand);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── FOOTER ─── */
.footer {
  background: #060913;
  color: #f8fafc;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.footer-top { padding: 80px 0 60px; }
.footer-top-inner { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr; gap: 60px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .logo-text { color: #ffffff; }
.footer-brand-col p { font-size: 0.92rem; color: #94a3b8; line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 79, 147, 0.3);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3b82f6; /* Bright brand blue */
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul a { font-size: 0.92rem; color: #94a3b8; font-weight: 500; transition: var(--transition-fast); }
.footer-col ul a:hover { color: #ffffff; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.footer-contact div { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: #94a3b8; }
.footer-contact i { color: #3b82f6; }

.footer-newsletter h5 { font-size: 0.92rem; margin-bottom: 12px; color: #cbd5e1; }
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.newsletter-form:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}
.newsletter-form input {
  padding: 10px 16px;
  font-size: 0.88rem;
  flex-grow: 1;
  color: #ffffff;
  background: transparent;
  border: none;
  outline: none;
}
.newsletter-form input::placeholder {
  color: #64748b;
}
.newsletter-form button {
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.newsletter-form button:hover {
  background: #3b82f6;
  transform: scale(1.05);
}

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 30px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { font-size: 0.85rem; color: #64748b; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: #64748b; transition: var(--transition-fast); }
.footer-links a:hover { color: #ffffff; }

/* ─── ANIMATION TRIGGERS ─── */
@keyframes pulse-badge {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── GSAP REVEAL COMPATIBILITY ─── */
/* NOTE: opacity is set to 1 as fallback — GSAP will animate from 0→1 via JS */
.gsap-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SERVICE DETAIL CARDS ─── */
.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.svc-detail-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-detail-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}
.svc-detail-card:hover::before { opacity: 1; }

.svc-d-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-light), var(--accent-light));
  border: 1px solid var(--border-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.svc-detail-card:hover .svc-d-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.svc-d-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}
.svc-d-text p {
  color: var(--text2);
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.svc-d-text ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
}
.svc-d-text ul li {
  font-size: 0.88rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-d-text ul li i { color: var(--brand); font-size: 0.75rem; }

/* ─── INDUSTRY CARDS ─── */
.ab-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ab-ind-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ab-ind-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ab-ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 79, 147, 0.12);
  border-color: var(--border-brand);
}
.ab-ind-card:hover::after { opacity: 1; }

.ab-ind-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}
.ab-ind-card:hover .ab-ind-icon { transform: scale(1.12) rotate(6deg); }

.ab-ind-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.ab-ind-card p {
  font-size: 0.88rem;
  color: var(--text3);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.ab-ind-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.ab-ind-tags span {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text3);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.ab-ind-card:hover .ab-ind-tags span {
  background: rgba(11, 79, 147, 0.08);
  border-color: var(--border-brand);
  color: var(--brand);
}

/* ─── ENGAGEMENT MODEL CARDS ─── */
.ab-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.ab-engage-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.ab-engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 79, 147, 0.10);
  border-color: var(--border-brand);
}

.ab-engage-featured {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-color: var(--brand) !important;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11, 79, 147, 0.22) !important;
}
.ab-engage-featured:hover { transform: translateY(-14px) !important; }
.ab-engage-featured h3,
.ab-engage-featured p,
.ab-engage-featured li { color: rgba(255,255,255,0.9) !important; }

.ab-engage-badge {
  display: inline-block;
  background: rgba(11, 79, 147, 0.08);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-brand);
}
.ab-engage-badge-featured {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.ab-engage-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid var(--border-brand);
  transition: var(--transition-fast);
}
.ab-engage-card:hover .ab-engage-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}
.ab-engage-featured .ab-engage-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.ab-engage-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.ab-engage-desc {
  font-size: 0.9rem;
  color: var(--text3);
  margin-bottom: 22px;
  line-height: 1.65;
}

.ab-engage-features {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-engage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text2);
}
.ab-engage-features li i {
  color: var(--brand);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ab-engage-featured .ab-engage-features li i { color: #7df9cf; }

.ab-engage-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 2px solid var(--border-brand);
  transition: var(--transition-fast);
}
.ab-engage-cta:hover { gap: 14px; border-color: var(--brand); }

.ab-engage-cta-primary {
  background: #fff;
  color: var(--brand) !important;
  padding: 12px 28px;
  border-radius: 30px;
  border: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.ab-engage-cta-primary:hover {
  background: var(--bg-tertiary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ─── QUOTE SLIDER ─── */
.quote-slider-section {
  position: relative;
}
.quote-wrapper {
  position: relative;
  min-height: 200px;
}
.quote-slide {
  display: none;
  animation: fadeSlideIn 0.5s ease;
}
.quote-slide.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  padding-left: 28px;
}
.quote-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--brand);
  font-style: normal;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}
.quote-author-info span {
  font-size: 0.8rem;
  color: var(--text3);
}

/* ─── COUNTER SECTION ─── */
.counter-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.counter-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-brand);
}
.counter-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-label {
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ─── MOCKUP EXTRA STYLING ─── */
.device-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-12deg) rotateX(8deg);
  transition: var(--transition);
  margin: 0 auto;
}
.device-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-brand);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  transition: transform 0.1s ease-out;
}
.fb-1 {
  top: 30px;
  left: -30px;
  animation: float-slow-anim 4s ease-in-out infinite;
}
.fb-2 {
  bottom: 30px;
  right: -30px;
  animation: float-slow-anim 4s ease-in-out infinite 2s;
}

@keyframes float-slow-anim {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.svc-d-img { transition: var(--transition); }
.svc-d-img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ══════════════════════════════════════════
   ABOUT US PAGE — ALL SECTION STYLES
   ══════════════════════════════════════════ */

/* ─── ABOUT MAIN / STORY ─── */
.about-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-main-img { position: relative; }
.abt-main-card {
  position: relative;
  max-width: 480px;
  overflow: visible;
}
/* No decorative pseudo-element — just clean image */
.abt-main-card::before,
.abt-main-card::after {
  display: none !important;
}
.abt-gfx {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: transparent;
  line-height: 0;
  display: block;
}
/* Remove any ::before/::after on abt-gfx that might create a coloured box */
.abt-gfx::before,
.abt-gfx::after {
  display: none !important;
}
.abt-gfx img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: var(--radius-lg);
}
.abt-gfx:hover img { transform: scale(1.04); }


.abt-exp-pill {
  position: absolute;
  bottom: 24px;
  right: -24px;
  top: auto;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: float-slow-anim 4s ease-in-out infinite;
  white-space: nowrap;
}


.about-main-text { }
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.val-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.val-item:hover {
  border-color: var(--border-brand);
  background: var(--brand-light);
  transform: translateY(-2px);
}
.val-item i { font-size: 1.3rem; margin-bottom: 4px; }
.val-item strong { font-size: 0.95rem; color: var(--text); }
.val-item p { font-size: 0.82rem; color: var(--text3); margin: 0; }

/* ─── VISION / MISSION CARDS ─── */
.mission-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mission-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11,79,147,0.10);
}
.mission-card:hover::before { transform: scaleX(1); }

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 22px;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(11,79,147,0.2);
}
.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(-8deg);
}
.mission-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}
.mission-card p {
  font-size: 0.9rem;
  color: var(--text3);
  line-height: 1.7;
}

/* ─── WHAT WE DO CARDS ─── */
.ab-what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.ab-what-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ab-what-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ab-what-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,79,147,0.10);
  border-color: var(--border-brand);
}
.ab-what-card:hover::after { opacity: 1; }

.ab-what-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--brand-light), var(--accent-light));
  border: 1px solid var(--border-brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 18px;
  transition: var(--transition-fast);
}
.ab-what-card:hover .ab-what-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}
.ab-what-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.ab-what-card > p {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 18px;
  line-height: 1.65;
}
.ab-what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.ab-what-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text2);
}
.ab-what-list li i {
  color: var(--brand);
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* ─── INNOVATION / WHY SECTION ─── */
.ab-why {
  background: linear-gradient(135deg, var(--bg-dark-navy) 0%, #0d1b3e 100%);
}
.ab-why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(11,79,147,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(124,58,237,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.ab-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-why-left { }
.ab-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-fast);
}
.ab-why-item:first-child { padding-top: 0; }
.ab-why-item:last-child { border-bottom: none; padding-bottom: 0; }
.ab-why-item:hover { padding-left: 8px; }

.ab-why-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,0.08);
  flex-shrink: 0;
  line-height: 1;
  transition: var(--transition-fast);
  min-width: 54px;
}
.ab-why-item:hover .ab-why-num { color: var(--accent); }

.ab-why-body strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}
.ab-why-body p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── MILESTONES / TIMELINE ─── */
.ab-proc-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  padding-left: 60px;
}
.ab-proc-line {
  position: absolute;
  left: 22px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--accent), rgba(124,58,237,0.1));
  border-radius: 2px;
}
.ab-proc-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 48px;
}
.ab-proc-step:last-child { padding-bottom: 0; }

.ab-proc-num {
  position: absolute;
  left: -60px;
  top: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--brand);
  font-family: 'Manrope', sans-serif;
}
.ab-proc-dot {
  position: absolute;
  left: -36px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px var(--border-brand);
  z-index: 2;
  transition: var(--transition-fast);
}
.ab-proc-step:hover .ab-proc-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(11,79,147,0.15);
}

.ab-proc-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ab-proc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ab-proc-step:hover .ab-proc-card {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--border-brand);
}
.ab-proc-step:hover .ab-proc-card::before { opacity: 1; }

.ab-proc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-light), var(--accent-light));
  border: 1px solid var(--border-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}
.ab-proc-step:hover .ab-proc-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: rotate(-6deg);
}
.ab-proc-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.ab-proc-card p {
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.65;
  margin: 0;
}



@media (max-width: 1024px) {
  .hero-inner, .about-snippet-inner, .tech-inner, .about-main-inner, .contact-grid, .split-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bento-box-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.span-2 {
    grid-column: span 1;
  }
  .services-grid, .testi-grid, .ab-ind-grid, .ab-engage-grid, .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-image { height: 380px; }
  .svc-d-img { display: none !important; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .navbar { top: 0; }
  .nav-inner { border-radius: 0; border-left: none; border-right: none; border-top: none; max-width: 100% !important; height: 64px; }
  .nav-links, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { padding-top: 100px; }
  .hero-title { font-size: 2.3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions a { text-align: center; }
  .about-points { grid-template-columns: 1fr; }
  .services-grid, .testi-grid, .ab-ind-grid, .ab-engage-grid, .counter-inner, .footer-top-inner, .mission-inner, .ab-what-grid, .benefits-grid { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 15px; }
  .form-group.full { grid-column: auto; }
  .cta-inner { flex-direction: column; padding: 40px; text-align: center; }
  .svc-d-text ul { grid-template-columns: 1fr; }
  .page-banner-title { font-size: 2rem; }
  .about-main-inner, .ab-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-proc-track { padding-left: 40px; }
}

/* ══════════════════════════════════════════════
   NEW PAGE BANNER — Replaces inner-hero + breadcrumb
   ══════════════════════════════════════════════ */

.page-banner {
  position: relative;
  background: linear-gradient(135deg, #060913 0%, #0a1628 50%, #0d1f3c 100%);
  padding: calc(var(--nav-h) + 52px) 0 60px;
  overflow: hidden;
}

/* Animated floating orbs */
.page-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  animation: orb-drift 8s ease-in-out infinite;
}
.orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(11,79,147,0.6) 0%, transparent 70%);
  top: -80px; left: -60px;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 70%);
  top: 20px; right: 10%;
  animation-delay: 2.5s;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 70%);
  bottom: -40px; left: 40%;
  animation-delay: 5s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -14px) scale(1.05); }
  66%       { transform: translate(-12px, 10px) scale(0.97); }
}

/* Subtle grid overlay */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Breadcrumb trail */
.bc-trail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.bc-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.bc-item i { font-size: 0.75rem; }
.bc-item:hover { color: rgba(255,255,255,0.9); }
.bc-item.bc-active {
  color: #fff;
  cursor: default;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
}
.bc-item.bc-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 8px rgba(11,79,147,0.8);
  animation: pulse-badge 2s infinite;
}

.bc-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
}

/* Page title */
.page-banner-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-banner-highlight {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #67e8f9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Sub-text */
.page-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.50);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto;
}

/* ─── STUNNING OVERLAPPING MULTI-IMAGE COLLAGE ─── */
.multi-image-collage {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
}
.collage-layer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.layer-back {
  width: 75%;
  height: 380px;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
}
.layer-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.layer-front {
  width: 55%;
  height: 280px;
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 2;
  border: 8px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.layer-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.multi-image-collage:hover .layer-back {
  transform: scale(0.98) translateY(-5px);
}
.multi-image-collage:hover .layer-front {
  transform: scale(1.03) translateY(-10px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ─── CAREERS DUAL IMAGE STACK ─── */
.careers-image-stack {
  position: relative;
  width: 100%;
  height: 440px;
}
.stack-base {
  width: 80%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.stack-base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stack-overlay {
  width: 50%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 2;
  transition: var(--transition);
}
.stack-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.careers-image-stack:hover .stack-overlay {
  transform: translate(-10px, -10px) scale(1.05);
}

/* ─── BENTO GALLERY SHOWCASE ─── */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 9, 19, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
}
.gallery-info span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.gallery-info h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 4px;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover::after,
.gallery-item:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

/* Bento grid coordinates */
.gallery-item.wide-2 { grid-column: span 2; }
.gallery-item.wide-3 { grid-column: span 3; }
.gallery-item.tall-2 { grid-row: span 2; }
.gallery-item.large-4 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide-3 {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.wide-2,
  .gallery-item.wide-3,
  .gallery-item.tall-2,
  .gallery-item.large-4 {
    grid-column: auto;
    grid-row: auto;
  }
  .multi-image-collage {
    height: 380px;
  }
  .layer-back {
    height: 300px;
  }
  .layer-front {
    height: 200px;
  }
  .careers-image-stack {
    height: 340px;
  }
  .stack-base {
    height: 260px;
  }
  .stack-overlay {
    height: 160px;
  }
  
  /* Service Card Stacking for Mobiles/Tablets */
  .svc-detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px;
  }
  .svc-detail-list .svc-detail-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
  }
}

/* ─── MICRO-MOBILE OPTIMIZATIONS (<= 480px) ─── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
    word-wrap: break-word !important;
  }
  .hero-badge {
    display: inline-block !important;
    white-space: normal !important;
    max-width: 100% !important;
    font-size: 0.68rem !important;
    line-height: 1.4 !important;
    padding: 8px 14px !important;
    box-sizing: border-box !important;
  }
  .badge-dot {
    margin-right: 6px !important;
    vertical-align: middle !important;
    display: inline-block !important;
  }
  .page-banner-title {
    font-size: 1.8rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .hero-image {
    height: 300px;
  }
  .collage-badge {
    padding: 8px 12px;
  }
  .cb-1 {
    left: 0;
    top: 65%;
  }
  .cb-2 {
    right: 0;
    top: 10%;
  }
  .hero-deco-dots {
    width: 130px;
    height: 130px;
    top: -65px;
    left: -35px;
  }
  /* Service Card Padding & Gap overrides */
  .svc-detail-card {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px !important;
    align-items: flex-start !important;
  }
  .svc-detail-list .svc-detail-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 24px !important;
  }
  /* Form & Call-to-Action Padding Adjustments */
  .contact-form {
    padding: 24px 16px !important;
  }
  .cta-inner {
    padding: 32px 16px !important;
  }
  .about-exp-badge {
    padding: 8px 14px !important;
    left: 12px !important;
    bottom: 12px !important;
    gap: 8px !important;
  }
  .about-exp-badge strong {
    font-size: 1.5rem !important;
  }
  .about-exp-badge span {
    font-size: 0.65rem !important;
  }
  /* Breadcrumbs wrapping */
  .bc-trail {
    flex-wrap: wrap !important;
    justify-content: center !important;
    max-width: 95% !important;
    padding: 6px 12px !important;
  }
}




