/* ============================================================
   QUANTUM TECH SOLUTIONZ — MAIN DESIGN SYSTEM
   Dark Futuristic Enterprise Technology
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Core Palette */
  --primary:        #0d1117;
  --secondary:      #161b22;
  --surface:        #1c2128;
  --surface-2:      #21262d;
  --accent:         #d6f345;
  --accent-dark:    #b8d62a;
  --accent-glow:    rgba(214, 243, 69, 0.15);
  --dark:           #080c10;
  --darker:         #050709;

  /* Text */
  --text:           #e6edf3;
  --text-muted:     #7d8590;
  --text-subtle:    #4d5561;
  --text-white:     #ffffff;

  /* Borders */
  --border:         rgba(240, 246, 252, 0.08);
  --border-light:   rgba(240, 246, 252, 0.12);
  --border-accent:  rgba(214, 243, 69, 0.25);

  /* Status */
  --success:        #3fb950;
  --warning:        #d29922;
  --danger:         #f85149;
  --info:           #58a6ff;

  /* Gradients */
  --gradient-dark:  linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  --gradient-hero:  linear-gradient(135deg, #080c10 0%, #0d1117 40%, #1a2744 100%);
  --gradient-accent:linear-gradient(135deg, #d6f345 0%, #b8d62a 100%);
  --gradient-card:  linear-gradient(135deg, #1c2128 0%, #21262d 100%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.6);
  --shadow-accent:  0 0 30px rgba(214, 243, 69, 0.15);
  --shadow-glow:    0 0 60px rgba(214, 243, 69, 0.08);

  /* Spacing */
  --section-py:     100px;
  --section-py-sm:  60px;

  /* Radius */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Typography */
  --font-primary:   'Poppins', sans-serif;

  /* Transitions */
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:all 0.15s ease;
  --transition-slow:all 0.5s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary);
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p { color: var(--text-muted); line-height: 1.8; }
a { text-decoration: none; color: var(--accent); transition: var(--transition-fast); }
a:hover { color: var(--accent-dark); }

.text-accent    { color: var(--accent) !important; }
.text-muted     { color: var(--text-muted) !important; }
.text-white     { color: var(--text-white) !important; }
.font-300       { font-weight: 300; }
.font-500       { font-weight: 500; }
.font-600       { font-weight: 600; }
.font-700       { font-weight: 700; }

/* === SECTION LAYOUT === */
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }
.section-dark   { background-color: var(--dark); }
.section-surface{ background-color: var(--secondary); }

.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow.no-line::before { display: none; }

.section-title {
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-title span, .section-title mark {
  color: var(--accent);
  background: none;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}
.section-desc.wide { max-width: 800px; }

/* === BUTTONS === */
.btn-qt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-qt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition-fast);
}
.btn-qt:hover::before { opacity: 1; }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 243, 69, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 13px 0;
  border: none;
}
.btn-ghost:hover { color: var(--accent-dark); gap: 12px; }
.btn-ghost i { transition: var(--transition-fast); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === CARDS === */
.qt-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.qt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.qt-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.qt-card:hover::before { transform: scaleX(1); }

/* === FORMS === */
.qt-form-group { margin-bottom: 20px; }
.qt-label {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 7px;
}
.qt-input, .qt-select, .qt-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition-fast);
  outline: none;
}
.qt-input::placeholder, .qt-textarea::placeholder { color: var(--text-subtle); }
.qt-input:focus, .qt-select:focus, .qt-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.qt-select option { background: var(--surface); }
.qt-textarea { min-height: 130px; resize: vertical; }

/* === BADGE === */
.qt-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-accent { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--border-accent); }
.badge-muted  { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }

/* ============================================================
   NAVBAR & FLOATING PILL HEADER
   ============================================================ */
.qt-header-wrapper {
  position: relative;
  z-index: 1050;
}

.qt-navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  z-index: 1050;
  padding: 10px 24px;
  background: rgba(11, 15, 21, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              padding 0.35s ease;
}

/* Scrolled state: Deeper contrast and elevation without stretching */
.qt-navbar.scrolled {
  top: 14px;
  background-color: rgba(11, 15, 21, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.qt-navbar .navbar-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.qt-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon-svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(214, 243, 69, 0.25));
  transition: transform 0.3s ease;
}

.qt-navbar .navbar-brand:hover .brand-icon-svg {
  transform: rotate(5deg) scale(1.05);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Navigation Links — Poppins 400 Uppercase */
.qt-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.qt-navbar .nav-link {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 8px 16px !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  transition: color 0.25s ease;
}

/* Remove oval pill completely */
.qt-navbar .nav-link::before {
  display: none !important;
}

.qt-navbar .nav-link:hover {
  color: #ffffff !important;
  background: transparent !important;
}

/* Active & Hover: ONLY Underline */
.qt-navbar .nav-link.active {
  color: #ffffff !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: none !important;
}

.qt-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 22px;
  height: 2.5px;
  background: var(--accent, #d6f345);
  border-radius: 9999px;
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(214, 243, 69, 0.6);
}

.qt-navbar .nav-link:hover::after,
.qt-navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* ============================================================
   CLEARLY VISIBLE ANIMATED CTA BUTTON (GET STARTED)
   ============================================================ */
.nav-cta-wrapper {
  display: flex;
  align-items: center;
}

.nav-cta-btn {
  background: var(--accent, #d6f345);
  color: #0b0f15 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(214, 243, 69, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: ctaBreathPulse 3s infinite ease-in-out;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Subtle Glowing Breath Pulse Animation */
@keyframes ctaBreathPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(214, 243, 69, 0.38), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 26px rgba(214, 243, 69, 0.75), 0 4px 16px rgba(214, 243, 69, 0.35);
    transform: scale(1.025);
  }
}

/* Periodic Light Shimmer Wave */
.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  animation: ctaShimmerWave 4.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes ctaShimmerWave {
  0% { left: -100%; }
  22%, 100% { left: 220%; }
}

/* Hover State */
.nav-cta-btn:hover {
  background: #e3ff58;
  color: #000000 !important;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 0 32px rgba(214, 243, 69, 0.85), 0 8px 22px rgba(0, 0, 0, 0.45);
}

.nav-cta-btn .bi-arrow-right {
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta-btn:hover .bi-arrow-right {
  transform: translateX(4px);
}

/* Mobile Nav Toggle */
.qt-toggler {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  width: 44px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-fast);
}

.qt-toggler:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.qt-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.qt-toggler.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.qt-toggler.active span:nth-child(2) { opacity: 0; }
.qt-toggler.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Collapsed Styles */
@media (max-width: 991px) {
  .qt-navbar.scrolled {
    width: calc(100% - 24px);
    top: 12px;
    border-radius: 28px;
    padding: 10px 20px;
  }

  .qt-navbar .navbar-collapse {
    background: rgba(11, 15, 21, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    padding: 24px;
    margin-top: 14px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  }

  .qt-navbar .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .qt-navbar .nav-link {
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 0 !important;
    justify-content: flex-start;
  }

  .qt-navbar .nav-link::after {
    left: 14px;
    right: auto;
    transform: scaleX(0);
    transform-origin: left center;
    width: 24px;
  }

  .qt-navbar .nav-link:hover::after,
  .qt-navbar .nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .nav-cta-wrapper {
    margin-top: 18px;
    width: 100%;
  }

  .nav-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
/* ============================================================
   HERO SECTION (NIMO CREATIVE DARK-TECH THEME)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #030507;
  padding-top: clamp(90px, 13vh, 135px);
  padding-bottom: clamp(50px, 7vh, 75px);
}

/* Texture Background */
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: url('../images/h1-bg-img-1.webp') no-repeat center center / cover;
  opacity: 0.9;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

/* Subtle Vignette Overlay for Crisp Contrast and Readability */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 45%, rgba(3, 5, 7, 0.45) 0%, rgba(3, 5, 7, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.nm-hero-content {
  position: relative;
  z-index: 5;
  max-width: 960px;
}

/* 1. Top Sub-heading — Clean Unified Left Alignment */
.nm-hero-sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  margin-left: 0;
  animation: fadeInDown 0.7s ease both;
}

/* 2. Award Tag — Clean Unified Left Alignment */
.nm-hero-award-tag {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 600;
  color: #d6f345;
  letter-spacing: 0.02em;
  margin-left: 0;
  margin-bottom: 18px;
  display: inline-block;
  animation: fadeInDown 0.7s ease 0.1s both;
  text-shadow: 0 0 15px rgba(214, 243, 69, 0.35);
}

/* 3. Giant Title Block — Clean Unified Left Alignment */
.nm-hero-giant-block {
  margin-left: 0;
  margin-bottom: clamp(22px, 3.5vh, 32px);
}

.nm-giant-row-1 {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 24px);
  line-height: 0.95;
}

.nm-giant-row-2 {
  line-height: 0.95;
  margin-top: -2px;
}

.nm-giant-word {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.2rem, 6.6vw, 6.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.035em;
  margin: 0;
  display: inline-block;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.nm-hero-star {
  color: #d6f345;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1;
  animation: starRotate 14s linear infinite;
  filter: drop-shadow(0 0 20px rgba(214, 243, 69, 0.9));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes starRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 4. Bottom Row: Video Play Button + Description + About Button */
.nm-hero-bottom-bar {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.35s both;
}

/* Video Play Circle */
.nm-hero-plybtn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nm-hero-plybtn:hover {
  border-color: #d6f345;
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(214, 243, 69, 0.65);
}

.plybtn-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.plybtn-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plybtn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.nm-hero-plybtn:hover .plybtn-overlay {
  background: rgba(214, 243, 69, 0.25);
  color: #d6f345;
  transform: scale(1.1);
}

/* Hero Description */
.nm-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.86rem, 1vw, 1rem);
  color: rgba(230, 237, 243, 0.88);
  max-width: 440px;
  line-height: 1.58;
  margin: 0;
  font-weight: 400;
}

/* About Our Agency Pill Button */
.nm-hero-agency-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  padding: 6px 22px 6px 6px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nm-hero-agency-btn:hover {
  background: #d6f345;
  border-color: #d6f345;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(214, 243, 69, 0.6);
}

.nm-agency-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d6f345;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nm-hero-agency-btn:hover .nm-agency-icon {
  background: #000000;
  color: #d6f345;
  transform: translateX(4px);
}

/* ============================================================
   RIGHT CIRCULAR SOCIAL LINKS WHEEL (MATHEMATICALLY PERFECT)
   ============================================================ */
.nm-hero-1-social-position {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 420px;
  z-index: 15;
  pointer-events: auto;
}

/* 60px solid neon lime crescent arc */
.nm-hero-1-social-position::after {
  content: "";
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid #d6f345;
  position: absolute;
  top: 50%;
  right: -190px;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 0 45px rgba(214, 243, 69, 0.4);
  pointer-events: none;
}

/* Outer Spinning Ring with dual glowing nodes */
.nm-hero-1-social-border {
  width: 450px;
  height: 450px;
  border: 2px solid #5a5f68;
  border-radius: 50%;
  position: absolute;
  right: -225px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  animation: nm-hero-1-social-border 14s linear infinite;
  pointer-events: none;
}

.nm-hero-1-social-border::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #d6f345;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(214, 243, 69, 0.95);
  position: absolute;
  left: -9px;
  top: calc(50% - 9px);
}

.nm-hero-1-social-border::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #d6f345;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(214, 243, 69, 0.95);
  position: absolute;
  right: -9px;
  top: calc(50% - 9px);
}

@keyframes nm-hero-1-social-border {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Social link items container */
.nm-hero-1-social-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
}

/* Exact polar-centered anchor styling */
.nm-hero-1-social-link .link-elm {
  position: absolute;
  width: 40px;
  height: 40px;
  margin-right: -20px;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 26px;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  cursor: pointer;
  z-index: 3;
}

.nm-hero-1-social-link .link-elm:hover {
  transform: scale(1.28);
  color: #1a1a1a;
}

/* 1. WhatsApp: theta = +65 deg */
.nm-hero-1-social-link .link-elm.soc-wa {
  right: 68px;
  top: calc(50% - 145px);
}

/* 2. X: theta = +35 deg */
.nm-hero-1-social-link .link-elm.soc-tw {
  right: 131px;
  top: calc(50% - 92px);
}

/* 3. LinkedIn: theta = 0 deg (apex center) */
.nm-hero-1-social-link .link-elm.soc-li {
  right: 160px;
  top: 50%;
}

/* 4. Instagram: theta = -35 deg */
.nm-hero-1-social-link .link-elm.soc-ig {
  right: 131px;
  top: calc(50% + 92px);
}

/* 5. Facebook: theta = -65 deg */
.nm-hero-1-social-link .link-elm.soc-fb {
  right: 68px;
  top: calc(50% + 145px);
}

/* Mobile Social Links */
.nm-hero-mobile-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-soc-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #161b22;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.mobile-soc-link:hover {
  background: #d6f345;
  color: #000000;
  border-color: #d6f345;
  transform: translateY(-2px);
}

/* Responsive Handling */
@media (max-width: 1200px) {
  .nm-hero-1-social-position {
    transform: translateY(-50%) scale(0.82);
    transform-origin: right center;
  }
}

@media (max-width: 991px) {
  .nm-hero-1-social-position {
    display: none;
  }
}
.hero-tech-orb {
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(214,243,69,0.12), transparent 60%);
  border: 1px solid var(--border-accent);
  position: relative;
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-tech-orb::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: orbFloat 8s ease-in-out infinite reverse;
}
.hero-tech-orb::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px dashed var(--border-accent);
  animation: orbRotate 20s linear infinite;
}
@keyframes orbRotate { to { transform: rotate(360deg); } }

.hero-floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-floating-card .val {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.hero-floating-card.card-1 {
  top: 10%; left: -10%;
  animation: float1 5s ease-in-out infinite;
}
.hero-floating-card.card-2 {
  bottom: 15%; right: -5%;
  animation: float2 6s ease-in-out infinite 1s;
}
.hero-floating-card.card-3 {
  top: 60%; left: -15%;
  animation: float1 7s ease-in-out infinite 2s;
}
@keyframes float1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@keyframes float2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(12px);} }

/* ============================================================
   HERO ANIMATED MOUSE POINTER & SCROLL INDICATOR
   ============================================================ */
.hero-interactive-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: fadeInUp 1s ease 1s both;
}

.hero-mouse-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mouse-scroll:hover {
  transform: translateY(4px);
}

/* Mouse Chassis */
.mouse-chassis {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(214, 243, 69, 0.7);
  border-radius: 9999px;
  position: relative;
  background: rgba(11, 15, 21, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(214, 243, 69, 0.25);
  display: flex;
  justify-content: center;
  animation: mouseChassisFloat 2.8s ease-in-out infinite;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-mouse-scroll:hover .mouse-chassis {
  border-color: #D6F345;
  box-shadow: 0 0 20px rgba(214, 243, 69, 0.6);
}

/* Mouse Wheel */
.mouse-wheel {
  width: 4px;
  height: 8px;
  background: #D6F345;
  border-radius: 4px;
  position: absolute;
  top: 7px;
  box-shadow: 0 0 10px #D6F345;
  animation: mouseWheelSlide 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes mouseWheelSlide {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
    transform: translateY(14px);
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes mouseChassisFloat {
  0%, 100% {
    transform: translateY(0);
    border-color: rgba(214, 243, 69, 0.7);
    box-shadow: 0 0 14px rgba(214, 243, 69, 0.25);
  }
  50% {
    transform: translateY(6px);
    border-color: rgba(214, 243, 69, 1);
    box-shadow: 0 0 24px rgba(214, 243, 69, 0.55);
  }
}

/* Mouse Scroll Label */
.mouse-scroll-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.hero-mouse-scroll:hover .mouse-scroll-text {
  color: #D6F345;
}

/* Chevrons */
.mouse-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: -2px;
}

.mouse-chevrons .chv-arrow {
  display: block;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #D6F345;
  border-right: 2px solid #D6F345;
  transform: rotate(45deg);
  opacity: 0.35;
  animation: chevronBounce 1.8s infinite;
}

.mouse-chevrons .chv-arrow:nth-child(2) {
  animation-delay: 0.22s;
  margin-top: -3px;
}

@keyframes chevronBounce {
  0%, 100% {
    opacity: 0.2;
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(2px, 2px);
  }
}

/* Floating Mouse Cursor Badge in Hero Visual */
.hero-floating-cursor {
  position: absolute;
  top: 22%;
  right: 6%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: cursorFloatBadge 4.8s ease-in-out infinite;
}

.hero-floating-cursor .cursor-svg {
  filter: drop-shadow(0 0 10px rgba(214, 243, 69, 0.85));
  transform: rotate(-8deg);
  flex-shrink: 0;
}

.hero-floating-cursor .cursor-badge {
  background: rgba(11, 15, 21, 0.85);
  border: 1px solid rgba(214, 243, 69, 0.65);
  color: #D6F345;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 14px rgba(214, 243, 69, 0.3);
  white-space: nowrap;
}

@keyframes cursorFloatBadge {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -14px);
  }
}

/* Hero Section Interactive Custom Cursor Pointer Follower */
.hero-cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: #D6F345;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #D6F345, 0 0 16px #D6F345;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.04s ease;
}

.hero-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(214, 243, 69, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(214, 243, 69, 0.25);
  opacity: 0;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background-color 0.25s ease,
              opacity 0.25s ease;
}

.hero-cursor-ring.active-hover {
  width: 60px;
  height: 60px;
  border-color: #D6F345;
  background: rgba(214, 243, 69, 0.12);
  box-shadow: 0 0 28px rgba(214, 243, 69, 0.6);
}

@media (hover: none) {
  .hero-cursor-dot,
  .hero-cursor-ring {
    display: none !important;
  }
}

/* ============================================================
   PARTNERS / TRUST STRIP
   ============================================================ */
.trust-section {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
  text-align: center;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
  min-width: 120px;
  height: 40px;
}
.partner-logo-item:hover { opacity: 0.9; filter: grayscale(0); }
.partner-logo-item img { max-height: 36px; max-width: 120px; object-fit: contain; }
.partner-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview .about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-preview .about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.about-preview .about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-preview .about-badge .num {
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.about-preview .about-badge .label { font-size: 0.75rem; font-weight: 500; }

.about-features { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
}
.about-feature-item i { color: var(--accent); font-size: 1rem; }

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section { background: var(--dark); }
.founder-image-wrap {
  position: relative;
  display: inline-block;
}
.founder-image-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  z-index: 0;
}
.founder-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 380px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.founder-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
}
.founder-social { display: flex; gap: 12px; margin-top: 24px; }
.founder-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.founder-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-accent);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon { background: var(--accent); color: var(--dark); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--surface-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-white);
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: var(--transition-fast);
}
.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* Service image card variant */
.service-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-img:hover img { transform: scale(1.08); }
.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,16,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

/* ============================================================
   WHY QUANTUM TECH
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--border-accent);
  background: var(--surface-2);
}
.why-item .icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.why-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}
.why-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   INDUSTRIES / SECTORS (MODERN ENTERPRISE)
   ============================================================ */
.industry-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px; 
}
.industry-card {
  background: linear-gradient(145deg, rgba(20, 26, 44, 0.8), rgba(11, 15, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(10, 163, 224, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.industry-card:hover {
  border-color: rgba(10, 163, 224, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.65), 0 0 24px -6px rgba(10, 163, 224, 0.3);
}
.industry-card:hover::before,
.industry-card:hover::after {
  opacity: 1;
}
.industry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.industry-icon {
  width: 50px; 
  height: 50px;
  background: linear-gradient(135deg, rgba(10, 163, 224, 0.12), rgba(214, 243, 69, 0.06));
  border: 1px solid rgba(10, 163, 224, 0.25);
  border-radius: var(--radius-md);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.industry-card:hover .industry-icon { 
  color: #fff; 
  background: linear-gradient(135deg, #0aa3e0, #0077b6);
  border-color: #0aa3e0;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 20px rgba(10, 163, 224, 0.55);
}
.industry-badge-num {
  font-family: var(--font-mono, 'Space Grotesk', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.industry-card:hover .industry-badge-num {
  color: var(--accent);
  border-color: rgba(10, 163, 224, 0.35);
}
.industry-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}
.industry-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}
.industry-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.industry-card-footer i {
  font-size: 0.82rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-card-footer i {
  transform: translateX(4px);
}

/* ============================================================
   PROJECTS / PORTFOLIO
   ============================================================ */
.project-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-primary);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  font-weight: 600;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-light); }
.project-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-img .project-category {
  position: absolute;
  top: 16px; left: 16px;
}
.project-body { padding: 24px; }
.project-body h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text-white); }
.project-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.project-meta { display: flex; align-items: center; justify-content: space-between; }
.project-tech { display: flex; gap: 6px; flex-wrap: wrap; }
.tech-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================================
   STATISTICS / COUNTERS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(214,243,69,0.05), transparent 60%);
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 16px; left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2);
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-white); display: block; }
.testimonial-author-role { font-size: 0.78rem; color: var(--text-muted); display: block; }

/* Swiper custom */
.swiper-pagination-bullet { background: var(--border-light); }
.swiper-pagination-bullet-active { background: var(--accent); }
.swiper-button-next, .swiper-button-prev {
  color: var(--accent) !important;
  width: 44px !important; height: 44px !important;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.85rem !important; }

/* ============================================================
   TEAM & ORGANIZATIONAL LEADERSHIP TREE
   ============================================================ */
.team-card {
  background: linear-gradient(145deg, rgba(20, 26, 44, 0.8), rgba(11, 15, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.team-card:hover { 
  border-color: rgba(10, 163, 224, 0.5); 
  transform: translateY(-6px); 
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.6), 0 0 24px -6px rgba(10, 163, 224, 0.3);
}
.team-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--accent);
  background: var(--surface-2);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 19, 0.9) 0%, rgba(7, 10, 19, 0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 10px; }
.team-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.team-social a:hover { 
  background: var(--accent); 
  color: var(--dark); 
  border-color: var(--accent);
  transform: scale(1.1);
}
.team-body { padding: 22px 18px; }
.team-name { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 500; }

/* ------------------------------------------------------------
   ORGANIZATIONAL TEAM TREE HIERARCHY
   ------------------------------------------------------------ */
.org-team-tree-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
.tree-level {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.tree-level-root {
  margin-bottom: 0;
}
.tree-level-directors {
  gap: 60px;
}
.tree-level-leads {
  gap: 30px;
}

.tree-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Tree Cards */
.tree-card {
  background: linear-gradient(145deg, rgba(20, 26, 46, 0.85), rgba(11, 15, 27, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 28px 24px 22px;
  text-align: center;
  width: 300px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.tree-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0aa3e0, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tree-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 163, 224, 0.6);
  box-shadow: 0 22px 48px -12px rgba(0, 0, 0, 0.75), 0 0 30px -6px rgba(10, 163, 224, 0.35);
}
.tree-card:hover::before {
  opacity: 1;
}

/* Apex (CEO) Card special styling */
.tree-card-apex {
  width: 350px;
  border-color: rgba(214, 243, 69, 0.3);
  background: linear-gradient(145deg, rgba(23, 30, 54, 0.92), rgba(13, 18, 33, 0.97));
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7), 0 0 30px -10px rgba(214, 243, 69, 0.18);
}
.tree-card-apex::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}
.tree-card-apex:hover {
  border-color: var(--accent);
  box-shadow: 0 26px 55px -10px rgba(0, 0, 0, 0.8), 0 0 40px -6px rgba(214, 243, 69, 0.35);
}

/* Tree Badges & Tags */
.tree-role-tag {
  display: inline-block;
  font-family: var(--font-mono, 'Space Grotesk', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(214, 243, 69, 0.08);
  border: 1px solid rgba(214, 243, 69, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.tree-role-tag.tech {
  color: #0aa3e0;
  background: rgba(10, 163, 224, 0.08);
  border-color: rgba(10, 163, 224, 0.25);
}
.tree-role-tag.security {
  color: #ff5757;
  background: rgba(255, 87, 87, 0.08);
  border-color: rgba(255, 87, 87, 0.25);
}

/* Tree Avatar Wrap */
.tree-avatar-wrap {
  width: 104px;
  height: 104px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 3.5px;
  background: linear-gradient(135deg, var(--accent), #0aa3e0);
  position: relative;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease;
}
.tree-card-apex .tree-avatar-wrap {
  width: 114px;
  height: 114px;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent), #00d2ff);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(214, 243, 69, 0.25);
}
.tree-card:hover .tree-avatar-wrap {
  transform: scale(1.06);
}
.tree-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--surface-2);
  display: block;
}
.tree-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
}

/* Active status pulse dot */
.tree-status-pulse {
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00e5a3;
  border: 2.5px solid #0d1222;
  box-shadow: 0 0 10px #00e5a3;
  animation: pulseGlow 2.2s infinite ease-in-out;
}

/* Typography inside card */
.tree-member-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.3;
}
.tree-card-apex .tree-member-name {
  font-size: 1.25rem;
}
.tree-member-desig {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.4;
}
.tree-member-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  min-height: 38px;
}

/* Tree Social & Connect Actions */
.tree-social-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tree-btn-connect {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tree-btn-connect:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 243, 69, 0.3);
}

/* ------------------------------------------------------------
   TREE BRANCHES & CONNECTORS (DESKTOP)
   ------------------------------------------------------------ */
.tree-stem-down {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(10, 163, 224, 0.9), rgba(10, 163, 224, 0.4));
  margin: 0 auto;
  position: relative;
}
.tree-stem-down::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0aa3e0;
  box-shadow: 0 0 8px #0aa3e0;
}

.tree-stem-up {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(10, 163, 224, 0.4), rgba(10, 163, 224, 0.9));
  margin: 0 auto;
  position: relative;
}
.tree-stem-up::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0aa3e0;
  box-shadow: 0 0 8px #0aa3e0;
}

.tree-connector-row {
  position: relative;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tree-crossbar {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 163, 224, 0.05), rgba(10, 163, 224, 0.8) 15%, rgba(10, 163, 224, 0.8) 85%, rgba(10, 163, 224, 0.05));
}
.tree-connector-2col .tree-crossbar {
  width: 360px;
}
.tree-connector-3col .tree-crossbar {
  width: 660px;
}
.tree-crossbar::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0aa3e0;
  box-shadow: 0 0 10px #0aa3e0;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category-badge {
  position: absolute;
  top: 14px; left: 14px;
}
.blog-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-subtle);
}
.blog-meta i { color: var(--accent); }
.blog-body h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-white);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-body h4 a { color: inherit; }
.blog-body h4 a:hover { color: var(--accent); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1117, #1a2744);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214,243,69,0.06), transparent 70%);
}
.cta-section .cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

/* ============================================================
   CORPORATE EXCELLENCE
   ============================================================ */
.excellence-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}
.excellence-item:hover { border-color: var(--border-accent); }
.excellence-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.excellence-item h5 { font-size: 0.95rem; margin-bottom: 6px; }
.excellence-item p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   TECH CAPABILITIES (MODERN ENTERPRISE STACK)
   ============================================================ */
.tech-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-capability-card {
  background: linear-gradient(145deg, rgba(20, 26, 44, 0.82), rgba(11, 15, 27, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.tech-capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), #0aa3e0);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tech-capability-card:hover {
  border-color: rgba(10, 163, 224, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 42px -15px rgba(0, 0, 0, 0.7), 0 0 26px -8px rgba(10, 163, 224, 0.3);
}
.tech-capability-card:hover::before {
  opacity: 1;
}
.tech-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.tech-halo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 163, 224, 0.14), rgba(214, 243, 69, 0.08));
  border: 1px solid rgba(10, 163, 224, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.tech-capability-card:hover .tech-halo-icon {
  background: linear-gradient(135deg, #0aa3e0, #005f99);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 0 22px rgba(10, 163, 224, 0.5);
}
.tech-card-header-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}
.tech-category-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.tech-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.tech-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.25s ease;
}
.tech-chip i {
  font-size: 0.75rem;
  color: var(--accent);
}
.tech-capability-card:hover .tech-chip {
  background: rgba(10, 163, 224, 0.08);
  border-color: rgba(10, 163, 224, 0.22);
  color: #fff;
}
.tech-chip:hover {
  background: rgba(10, 163, 224, 0.2) !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px);
}
.tech-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--text-subtle);
}
.tech-readiness {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00e5a3;
  font-weight: 500;
}
.tech-readiness .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5a3;
  box-shadow: 0 0 8px #00e5a3;
  animation: pulseGlow 2s infinite ease-in-out;
}

/* Backward compatibility for generic tech-grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tech-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tech-item:hover { border-color: var(--border-accent); }
.tech-item:hover::before { opacity: 1; }
.tech-item i {
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.tech-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.9rem; color: var(--text); margin: 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.qt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.qt-breadcrumb a { color: var(--text-muted); }
.qt-breadcrumb a:hover { color: var(--accent); }
.qt-breadcrumb .separator { color: var(--text-subtle); }
.qt-breadcrumb .current { color: var(--accent); font-weight: 500; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,243,69,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,243,69,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.qt-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo span { color: var(--accent); }
.footer-about {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: 8px;
}
.footer-links li a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.footer-links li a:hover { color: var(--accent); }
.footer-links li a:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.9rem; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item span { color: var(--text-muted); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-subtle); margin: 0; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* Newsletter */
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  padding: 10px 14px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-subtle); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  padding: 10px 16px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  font-family: var(--font-primary);
}
.newsletter-btn:hover { background: var(--accent-dark); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(214,243,69,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}
.cookie-notice.show { transform: translateY(0); opacity: 1; }
.cookie-notice p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================================
   ANIMATIONS (Reveal)
   ============================================================ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* Key animations */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

/* ============================================================
   UTILITIES
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-auto { margin-top: auto; }
img { max-width: 100%; height: auto; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* Highlight line under section title */
.title-underline {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.title-underline.center { margin: 16px auto 24px; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .tree-card { width: 270px; padding: 24px 18px; }
  .tree-card-apex { width: 320px; }
  .tree-connector-2col .tree-crossbar { width: 330px; }
  .tree-connector-3col .tree-crossbar { width: 590px; }
}

@media (max-width: 991px) {
  :root { --section-py: 70px; }
  .hero-visual { display: none; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-card:last-child { border-bottom: none; }
  .about-preview .about-badge { bottom: -10px; right: -10px; }

  /* Tree mobile/tablet connected vertical timeline */
  .tree-connector-row { display: none; }
  .tree-stem-up, .tree-stem-down { display: none; }
  .tree-level { 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 20px; 
  }
  .tree-level-root, .tree-level-directors, .tree-level-leads { gap: 20px; }
  .tree-node { width: 100%; max-width: 380px; }
  .tree-card, .tree-card-apex { width: 100%; max-width: 380px; }
  .tree-node:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #0aa3e0, rgba(10, 163, 224, 0.2));
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 767px) {
  :root { --section-py: 56px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .tech-caps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-brand .footer-about { max-width: 100%; }
  .cookie-notice { left: 10px; right: 10px; max-width: none; }
  .newsletter-form { flex-direction: column; }
  .project-filters { justify-content: center; }
  .back-to-top { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .qt-card { padding: 24px 20px; }
  .tree-card, .tree-card-apex { padding: 20px 16px; border-radius: 18px; }
  .tree-avatar-wrap { width: 90px; height: 90px; }
  .tree-card-apex .tree-avatar-wrap { width: 98px; height: 98px; }
}

@media (min-width: 1400px) {
  .hero-tech-orb { width: 500px; height: 500px; }
}
