/* =====================================================
   Font Imports — IBM Plex Sans (Headings) + Lato (Body)
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Lato:wght@400;500;600;700;800&display=swap');

/* =====================================================
   NEXORA — Premium Bootstrap 5 Business Theme
   Palette:
     Background   #FAFAF8
     Primary      #3B4A6B  (soft navy/indigo)
     Secondary    #5B9A8B  (muted teal)
     Highlight    #59AC77  (green)
     Headings     #2D2D2D  (charcoal)
     Body         #5C5F66  (slate gray)
     Borders      #E5E5E0  (light gray)
   ===================================================== */

:root {
  --n-primary: #3B4A6B;
  --n-primary-dark: #2A3650;
  --n-secondary: #5B9A8B;
  --n-secondary-dark: #4A8579;
  --n-accent: #59AC77;
  --n-accent-dark: #4A9463;
  --n-navy: #2D2D2D;
  --n-success: #5B9A8B;
  --n-slate: #5C5F66;
  --n-slate-light: #8A8D93;
  --n-bg: #FAFAF8;
  --n-bg-alt: #EAEFEC;
  --n-border: #E5E5E0;
  --n-white: #FFFFFF;

  --n-section-alt: #F0F4F2;
  --n-navbar-bg: #2A3650;

  --n-section-padding: 4rem;
  --n-section-padding-mobile: 2.5rem;

  --n-gradient-primary: linear-gradient(135deg, #3B4A6B 0%, #5B9A8B 100%);
  --n-gradient-soft:    linear-gradient(135deg, #EAEFEC 0%, #EAF4EE 100%);
  --n-gradient-dark:    linear-gradient(135deg, #2A3650 0%, #3B4A6B 100%);

  --n-font-display: 'IBM Plex Sans', sans-serif;
  --n-font-body: 'Lato', sans-serif;

  --n-space-xs: 0.5rem;
  --n-space-sm: 1rem;
  --n-space-md: 1.5rem;
  --n-space-lg: 2.5rem;
  --n-space-xl: 4rem;
  --n-space-2xl: 6rem;

  --n-radius-sm: 8px;
  --n-radius-md: 14px;
  --n-radius-lg: 20px;
  --n-radius-pill: 100px;

  --n-shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --n-shadow-md: 0 8px 24px rgba(45, 45, 45, 0.08);
  --n-shadow-lg: 0 20px 48px rgba(45, 45, 45, 0.12);
  --n-shadow-primary: 0 12px 28px rgba(59, 74, 107, 0.25);

  --bs-primary: #3B4A6B;
  --bs-primary-rgb: 59, 74, 107;
  --bs-body-font-family: var(--n-font-body);
  --bs-body-color: var(--n-slate);
  --bs-body-bg: var(--n-white);
}

/* BASE */
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  font-family: var(--n-font-body);
  color: var(--n-slate);
  background-color: var(--n-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--n-font-display);
  color: var(--n-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-weight: 800; }
p { line-height: 1.7; }
a { text-decoration: none; }

.text-primary-custom { color: var(--n-primary) !important; }
.bg-soft { background-color: var(--n-section-alt) !important; }

.section { padding-top: var(--n-section-padding); padding-bottom: var(--n-section-padding); }
@media (max-width: 767.98px) {
  .section { padding-top: var(--n-section-padding-mobile); padding-bottom: var(--n-section-padding-mobile); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--n-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-primary);
  background: var(--n-bg-alt);
  padding: 0.4rem 1rem;
  border-radius: var(--n-radius-pill);
  margin-bottom: var(--n-space-sm);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--n-accent);
  display: inline-block;
}

.section-title { margin-bottom: var(--n-space-sm); }
.section-subtitle { font-size: 1.05rem; color: var(--n-slate); max-width: 620px; }
.section-header { margin-bottom: 2.5rem; }

/* BUTTONS */
.btn {
  font-family: var(--n-font-display);
  font-weight: 600;
  border-radius: var(--n-radius-sm);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border-width: 1.5px;
}
.btn-primary {
  background: var(--n-gradient-primary);
  border: none;
  box-shadow: var(--n-shadow-primary);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(59, 74, 107, 0.32);
  color: #fff;
}
.btn-light-custom {
  background: #fff;
  color: var(--n-primary);
  border: 1.5px solid var(--n-border);
}
.btn-light-custom:hover { background: var(--n-bg); transform: translateY(-2px); }
.btn-lg-custom { padding: 0.75rem 1.75rem; font-size: 0.9rem; }

/* =====================================================
   NAVBAR — #B7D5D4 glass effect (translucent + blur)
   RGB = (183, 213, 212)
===================================================== */

/* Base — patla navbar */
.navbar-nexora {
  padding: 0.35rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;

  background: rgba(183, 213, 212, 0.55) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* Scrolled — aur patla */
.navbar-nexora.scrolled {
  padding: 0.25rem 0;
  background: rgba(183, 213, 212, 0.85) !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  box-shadow: 0 4px 20px -8px rgba(59, 74, 107, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* Brand — dark navy text on light glass */
.navbar-brand-custom {
  font-family: var(--n-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--n-primary-dark) !important;
  letter-spacing: -0.02em;
}
.navbar-brand-custom span { color: var(--n-primary); }

/* Nav links — dark navy, hover coral */
.navbar-nexora .nav-link {
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--n-primary-dark) !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: var(--n-radius-sm);
  transition: all 0.2s ease;
}
.navbar-nexora .nav-link:hover,
.navbar-nexora .nav-link.active {
  color: #59AC77 !important;
  background: rgba(89, 172, 119, 0.18);
}

/* Hamburger — dark bars on glass */
.navbar-toggler-custom {
  border: none;
  width: 44px; height: 44px;
  border-radius: var(--n-radius-sm);
  background: rgba(42, 54, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}
.navbar-toggler-custom .bar {
  width: 20px; height: 2px;
  background: var(--n-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggler-custom.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar-toggler-custom.active .bar:nth-child(2) { opacity: 0; }
.navbar-toggler-custom.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Dropdown */
.resources-dropdown { position: relative; }
.resources-dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  min-width: 200px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--n-radius-md);
  box-shadow: 0 12px 28px -12px rgba(59, 74, 107, 0.20);
  transition: all 0.25s ease;
}
.resources-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.resources-dropdown .dropdown-item {
  color: var(--n-primary-dark);
  font-family: var(--n-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--n-radius-sm);
}
.resources-dropdown .dropdown-item:hover {
  background: rgba(183, 213, 212, 0.50);
  color: #59AC77;
}

/* Contact Us CTA — coral pill */
.navbar-nexora .btn-primary {
  background: var(--n-accent) !important;
  color: #FFFFFF !important;
  border-radius: var(--n-radius-pill) !important;
  box-shadow: 0 8px 20px -6px rgba(89, 172, 119, 0.55) !important;
  padding: 0.42rem 1.1rem !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.navbar-nexora .btn-primary:hover {
  background: var(--n-accent-dark) !important;
  transform: translateY(-2px);
}

/* LOGO */
.logo img {
  width: 40px;
  height: auto;
  display: block;
}
.logo { display: flex; align-items: center; }

/* HERO (default) */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #F0F4F2 0%, #EAEFEC 50%, #EAF4EE 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 172, 119, 0.25) 0%, rgba(89, 172, 119, 0.10) 60%, transparent 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 154, 139, 0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
@media (max-width: 991.98px) {
  .hero { padding-top: 7rem; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
}
@media (max-width: 575.98px) { .hero h1 { font-size: 2rem; } }

.hero-description {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--n-slate);
}

/* =====================================================
   PARK HERO — shorter + blurred left panel
===================================================== */
.park-hero {
  position: relative;
  min-height: 68vh;
  padding: 7rem 0 3.5rem;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
  background: var(--n-primary-dark);
}

.park-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  background: linear-gradient(90deg,
    rgba(42, 54, 80, 0.75) 0%,
    rgba(42, 54, 80, 0.50) 45%,
    rgba(42, 54, 80, 0.15) 75%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 65%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 65%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.park-hero > .container { position: relative; z-index: 2; }

.park-hero::after {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 172, 119, 0.20) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.park-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 3rem;
  align-items: center;
}
.park-hero-content { max-width: 640px; }
.park-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}
.park-hero-badge i { color: #59AC77; font-size: 0.9rem; }

.park-hero-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);

  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.park-hero-title .accent {
  color: #59AC77;
  background: none;
  -webkit-text-fill-color: #59AC77;
}

.park-hero-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.75rem;
  max-width: 52ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.park-hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.park-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--n-accent);
  color: #FFFFFF;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.95rem 1.75rem;
  border-radius: 100px;
  border: none;
  box-shadow: 0 12px 26px -8px rgba(89, 172, 119, 0.65);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.park-btn-primary:hover {
  background: var(--n-accent-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(89, 172, 119, 0.75);
}
.park-btn-primary i { font-size: 1rem; transition: transform 0.2s ease; }
.park-btn-primary:hover i { transform: translateX(3px); }

.park-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.75rem 1.15rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  transition: background 0.2s ease, border-color 0.2s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.park-phone:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #FFFFFF;
}
.park-phone i { color: #59AC77; font-size: 1rem; }

.park-review {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 420px;
}
.park-review .brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.park-review .brand svg { width: 26px; height: 26px; }
.park-review .stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.park-review .stars .rating { font-weight: 700; color: #FFFFFF; }
.park-review .stars .star-icons { color: #FACC15; letter-spacing: 0.05em; font-size: 0.82rem; }

.park-hero-visual { min-height: 420px; }

@media (max-width: 991.98px) {
  .park-hero { min-height: auto; padding: 7rem 0 3rem; }
  .park-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .park-hero-content { max-width: 100%; }
  .park-hero-visual { display: none; }
}
@media (max-width: 575.98px) {
  .park-hero { padding: 6.5rem 0 2.5rem; }
  .park-hero-title { font-size: 1.9rem; }
  .park-hero-badge { font-size: 0.72rem; padding: 0.4rem 0.85rem; }
  .park-hero-actions { gap: 0.75rem; }
  .park-btn-primary { padding: 0.8rem 1.35rem; font-size: 0.88rem; }
  .park-phone { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .park-review { gap: 0.75rem; }
}

/* OUR CLIENTS */
.clients-section {
  padding: var(--n-section-padding) 0;
  background: #FFFFFF;
  border-top: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
  overflow: hidden;
}
.clients-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 0 2rem;
}
.clients-heading h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--n-primary);
  margin: 0;
  white-space: nowrap;
}
.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: clientsScroll 28s linear infinite;
}
.clients-slider:hover .clients-track { animation-play-state: paused; }
.client-card {
  flex: 0 0 auto;
  width: 190px; height: 120px;
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  box-shadow: var(--n-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.client-card:hover { box-shadow: var(--n-shadow-md); transform: translateY(-4px); border-color: transparent; }
.client-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
  .clients-section { padding: var(--n-section-padding-mobile) 0; }
  .clients-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; padding: 0 1rem; }
  .clients-heading h2 { font-size: 2rem; white-space: normal; }
}
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none; } }

/* WHAT WE DO */
.what-we-do-section { padding: var(--n-section-padding) 0; background: #FFFFFF; }
.what-we-do-header { text-align: left; margin-bottom: 2.5rem; }
.what-we-do-header h2 { white-space: nowrap; margin-bottom: 1rem; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--n-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--n-primary);
  background: var(--n-bg-alt);
  padding: 0.45rem 1rem;
  border-radius: var(--n-radius-pill);
  margin-bottom: 1rem;
}
.what-we-do-header h2 { font-size: 2.8rem; line-height: 1.15; margin: 0; }
.what-we-do-header h2 span { color: #59AC77; }
.what-we-do-header > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--n-slate);
  max-width: 900px;
  word-spacing: 1.0rem;
}
.capability-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.capability-tab {
  position: relative;
  border: 1px solid var(--n-border);
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  min-height: 150px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--n-primary);
}
.capability-tab:hover {
  transform: translateY(-4px);
  border-color: var(--n-secondary);
  box-shadow: 0 12px 30px rgba(59, 74, 107, 0.08);
}
.capability-tab.active {
  background: var(--n-gradient-primary);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(59, 74, 107, 0.22);
}
.tab-number { font-family: var(--n-font-display); font-size: 0.75rem; font-weight: 800; opacity: 0.7; }
.tab-title { font-family: var(--n-font-display); font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.capability-tab i { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.1rem; opacity: 0.5; }
.capability-tab.active i { opacity: 1; }

.capability-content { position: relative; min-height: 370px; }
.capability-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: var(--n-bg-alt);
  border: 1px solid #DCE6E2;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(59, 74, 107, 0.08);
  animation: capabilityFade 0.35s ease;
}
.capability-panel.active { display: grid; }
@keyframes capabilityFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.capability-panel-left { display: flex; flex-direction: column; justify-content: center; }
.capability-icon {
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--n-bg-alt);
  color: var(--n-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.capability-label {
  font-family: var(--n-font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--n-primary);
  margin-bottom: 0.8rem;
}
.capability-panel-left h3 { font-size: 2rem; line-height: 1.25; margin: 0; }
.capability-panel-left h3 span { color: #59AC77; }
.capability-panel-right { display: flex; flex-direction: column; justify-content: center; }
.capability-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--n-slate);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.capability-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.capability-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--n-primary);
}
.capability-feature i { color: var(--n-secondary); font-size: 0.9rem; }
.capability-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  font-family: var(--n-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--n-primary);
  transition: gap 0.2s ease;
}
.capability-link:hover { color: #59AC77; gap: 0.9rem; }

/* ABOUT MOSAIC */
.about-mosaic-section { padding: var(--n-section-padding) 0; background: #F0F4F2; }
.about-section-heading { max-width: 850px; margin: 0 auto 2.5rem; }
.about-eyebrow {
  display: inline-block;
  font-family: var(--n-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-primary);
  background: var(--n-bg-alt);
  padding: 0.45rem 1rem;
  border-radius: var(--n-radius-pill);
  margin-bottom: 1rem;
}
.about-section-heading h2 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 1rem; }
.about-section-heading h2 span { color: #59AC77; }
.about-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(10, 1fr);
  gap: 16px;
  max-width: 1100px;
  height: 380px;
  margin: 0 auto;
}
.about-mosaic-grid > * { min-width: 0; min-height: 0; }
.mosaic-card {
  border-radius: 18px;
  padding: 1.85rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.mosaic-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n-primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.mosaic-label {
  display: block;
  font-family: var(--n-font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--n-primary);
  margin-bottom: 0.45rem;
}
.mosaic-content h3 { font-family: var(--n-font-display); font-size: 1rem; margin-bottom: 0.5rem; }
.mosaic-content p { font-size: 0.78rem; line-height: 1.45; margin: 0; }
.mosaic-image-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--n-bg-alt);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.mosaic-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mosaic-image-card:hover img { transform: scale(1.06); }
.mosaic-card:hover, .mosaic-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(59, 74, 107, 0.18);
  filter: brightness(1.05);
}
.we-card { grid-column: 1 / 2; grid-row: 1 / 11; background: var(--n-gradient-dark); }
.we-card .mosaic-label { color: #59AC77; }
.mosaic-we-text { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0; }
.mosaic-img-1 { grid-column: 2 / 3; grid-row: 1 / 6; }
.mission-card {
  grid-column: 2 / 3; grid-row: 6 / 11;
  background: linear-gradient(135deg, var(--n-secondary) 0%, var(--n-primary) 100%);
}
.vision-card {
  grid-column: 3 / 4; grid-row: 1 / 6;
  background: linear-gradient(135deg, var(--n-primary) 0%, var(--n-secondary) 100%);
}
.mission-card .mosaic-content h3, .vision-card .mosaic-content h3 { color: #fff; }
.mission-card .mosaic-content p, .vision-card .mosaic-content p { color: rgba(255,255,255,0.85); }
.mission-card .mosaic-icon, .vision-card .mosaic-icon { background: rgba(255,255,255,0.2); color: #fff; }
.mosaic-img-2 { grid-column: 3 / 4; grid-row: 6 / 11; }

@media (max-width: 767.98px) {
  .about-mosaic-section { padding: var(--n-section-padding-mobile) 0; }
  .about-mosaic-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .we-card, .mission-card, .vision-card, .mosaic-img-1, .mosaic-img-2 { grid-column: 1; grid-row: auto; }
  .mosaic-img-1, .mosaic-img-2 { height: 220px; }
}

/* ABOUT CONNECT */
.about-connect-section { background: #ffffff; padding: var(--n-section-padding) 0; overflow: hidden; }
.about-connect-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}
.about-connect-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.about-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.about-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 2px dotted #e0e0e0;
  border-radius: 18px;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.1); }
.card-content {
  padding: 2.5rem 1.25rem 1.75rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-title {
  font-family: var(--n-font-display, 'IBM Plex Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--n-primary);
  margin-bottom: 0.75rem;
}
.card-content p { font-size: 0.78rem; line-height: 1.6; color: var(--n-slate); margin: 0; }
.card-tab {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  position: absolute;
  z-index: 3;
}
.card-left .card-tab {
  top: 0; left: 1.25rem;
  border-radius: 0 0 10px 10px;
  background: var(--n-secondary);
  box-shadow: 0 5px 12px rgba(91, 154, 139, 0.3);
}
.card-right .card-tab {
  top: 0; right: 1.25rem;
  border-radius: 0 0 10px 10px;
  background: var(--n-primary);
  box-shadow: 0 5px 12px rgba(59, 74, 107, 0.3);
}
.card-middle .card-tab {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: var(--n-accent);
  box-shadow: 0 -5px 12px rgba(89, 172, 119, 0.3);
}
.card-middle { background: #FAFAF8; padding-bottom: 1.5rem; }
.card-middle::before {
  border: 2px dashed var(--n-accent);
  opacity: 0.8;
  top: -12px; left: -12px; right: -12px; bottom: -12px;
  border-radius: 20px;
}
.card-middle:hover::before { opacity: 1; }
.card-middle .card-content { padding-bottom: 3rem; }
.card-middle .card-title { color: #59AC77; }
.card-middle .card-content p { font-style: italic; color: var(--n-secondary-dark); }
.card-left .card-title { color: var(--n-secondary-dark); }
.card-right .card-title { color: var(--n-primary); }

@media (max-width: 991.98px) {
  .about-connect-section { padding: var(--n-section-padding-mobile) 0; }
  .about-connect-grid { grid-template-columns: 1fr; gap: 4rem; max-width: 400px; margin: 0 auto; }
  .about-connect-svg { display: none; }
  .about-connect-wrap { padding-bottom: 0; }
  .card-left .card-tab { top: 0; left: 50%; transform: translateX(-50%); border-radius: 0 0 10px 10px; }
  .card-right .card-tab { top: 0; left: 50%; transform: translateX(-50%); border-radius: 0 0 10px 10px; }
  .card-middle .card-tab { bottom: -25px; left: 50%; transform: translateX(-50%); border-radius: 10px 10px 0 0; }
  .card-content { padding: 2.5rem 1.25rem 1.75rem; }
  .card-middle .card-content { padding-bottom: 3rem; }
}

/* RESOURCE AUGMENTATION */
.resource-augmentation-section { padding: var(--n-section-padding) 0; }
.resource-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.resource-stepper-line {
  position: absolute;
  top: 22px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--n-border);
  z-index: 0;
}
.resource-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.resource-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--n-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: var(--n-shadow-sm);
  flex-shrink: 0;
}
.resource-node-1 { background: var(--n-primary); }
.resource-node-2 { background: var(--n-secondary); }
.resource-node-3 { background: var(--n-accent); }
.resource-card {
  margin-top: 1rem;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--n-shadow-md); border-color: transparent; }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.resource-card p { font-size: 0.9rem; color: var(--n-slate); margin-bottom: 1rem; }
.resource-benefit {
  font-size: 0.82rem;
  line-height: 1.5;
  border-radius: var(--n-radius-sm);
  padding: 0.7rem 0.9rem;
  margin-top: auto;
}
.resource-benefit-1, .resource-benefit-3 { background: var(--n-bg-alt); color: var(--n-primary); }
.resource-benefit-2 { background: #EAF4EE; color: #59AC77; }

@media (max-width: 767.98px) {
  .resource-stepper { grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
  .resource-stepper-line { top: 0; bottom: 0; left: 21px; right: auto; width: 2px; height: auto; }
  .resource-step { flex-direction: row; align-items: flex-start; gap: 1rem; height: auto; }
  .resource-card { margin-top: 0; text-align: left; }
}

/* HR & STAFFING */
.hr-staffing-section { padding: var(--n-section-padding) 0; background: #F0F4F2; }
.pillars-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 991.98px) { .pillars-stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) {
  .pillars-stack-grid { grid-template-columns: 1fr; }
  .hr-staffing-section { padding: var(--n-section-padding-mobile) 0; }
}
.pillar-stack {
  border-radius: var(--n-radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--n-border);
  box-shadow: var(--n-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-stack:hover { transform: translateY(-6px); box-shadow: var(--n-shadow-md); }
.stack-back {
  position: relative;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
}
.stack-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}
.stack-icon, .stack-title { position: relative; z-index: 1; }
.stack-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n-secondary-dark);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 10px rgba(59, 74, 107, 0.25);
}
.stack-title {
  font-family: var(--n-font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.stack-front { padding: 1.5rem; box-shadow: inset 0 12px 20px -18px rgba(59, 74, 107, 0.5); }
.stack-front p { margin: 0; font-size: 0.88rem; line-height: 1.65; color: var(--n-slate); }

@media (max-width: 767.98px) {
  .stack-back { height: 120px; }
  .stack-front { padding: 1.25rem; }
  .stack-front p { font-size: 0.82rem; }
}

/* WHY CHOOSE US — circles */
.why5-section { padding: var(--n-section-padding) 0; background: #FFFFFF; }
.why5-accent-bar {
  width: 240px;
  height: 5px;
  margin: 1.25rem auto 0;
  border-radius: var(--n-radius-pill);
  background: linear-gradient(90deg, #2A3650, #3B4A6B, #5B9A8B, #59AC77, #8CC7A1, #D6EBDD);
}
.why5-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why5-item { text-align: center; }
.why5-visual {
  position: relative;
  height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why5-stem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 118px;
  background: var(--c);
  opacity: 0.85;
  z-index: 0;
}
.why5-dot {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--c);
  z-index: 2;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.why5-circle {
  position: relative;
  z-index: 1;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--c);
  border: 9px solid var(--c);
  box-shadow: inset 0 0 0 4px #fff, 0 10px 26px rgba(59, 74, 107, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--icon);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.6s ease, background 0.6s ease, border-color 0.6s ease;
}
.why5-item:hover .why5-circle {
  transform: translateY(-6px) scale(1.04);
  box-shadow: inset 0 0 0 4px #fff, 0 18px 38px rgba(59, 74, 107, 0.28);
}
.why5-item.why5-active .why5-circle {
  transform: translateY(-10px) scale(1.1);
  border-color: var(--n-accent);
  box-shadow:
    inset 0 0 0 4px #fff,
    0 0 0 6px rgba(89, 172, 119, 0.35),
    0 20px 45px rgba(89, 172, 119, 0.45),
    0 0 0 12px rgba(89, 172, 119, 0.18);
  animation: why5Pulse 1.5s ease-in-out infinite;
}
@keyframes why5Pulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 4px #fff,
      0 0 0 6px rgba(89, 172, 119, 0.35),
      0 20px 45px rgba(89, 172, 119, 0.45),
      0 0 0 12px rgba(89, 172, 119, 0.18);
  }
  50% {
    box-shadow:
      inset 0 0 0 4px #fff,
      0 0 0 10px rgba(89, 172, 119, 0.22),
      0 24px 50px rgba(89, 172, 119, 0.55),
      0 0 0 18px rgba(89, 172, 119, 0.08);
  }
}
.why5-item.why5-active .why5-dot {
  background: var(--n-accent);
  border-color: var(--n-accent);
  transform: translate(-50%, 50%) scale(1.3);
  box-shadow: 0 0 14px rgba(89, 172, 119, 0.7);
}
.why5-item.why5-active .why5-stem { background: var(--n-accent); opacity: 1; }
.why5-item.why5-active .why5-title { color: #59AC77; transition: color 0.4s ease; }
@media (prefers-reduced-motion: reduce) { .why5-item.why5-active .why5-circle { animation: none; } }

.why5-title {
  font-family: var(--n-font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c);
  margin: 1.75rem 0 0.5rem;
  line-height: 1.3;
  transition: color 0.4s ease;
}
.why5-text {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--n-slate);
  margin: 0 auto;
  max-width: 200px;
}

@media (max-width: 991.98px) {
  .why5-section { padding: var(--n-section-padding-mobile) 0; }
  .why5-wrap { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .why5-item { --size: 130px !important; --icon: 2.1rem !important; }
  .why5-visual { height: 150px; }
  .why5-stem, .why5-dot { display: none; }
  .why5-item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
  .why5-wrap { grid-template-columns: 1fr; gap: 2.25rem; }
  .why5-item { --size: 120px !important; }
  .why5-visual { height: 140px; }
  .why5-text { max-width: 320px; }
}

/* INDUSTRIES CAROUSEL */
.industries-carousel-section {
  background: #F0F4F2;
  padding: var(--n-section-padding) 0;
  overflow: hidden;
  position: relative;
}
.industries-carousel-title {
  font-family: var(--n-font-display, 'IBM Plex Sans', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--n-primary);
  line-height: 1.1;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.industries-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 3rem;
}
.industries-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.industries-carousel-card {
  position: relative;
  flex: 0 0 auto;
  width: 260px; height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(59, 74, 107, 0.12);
  transform: scale(0.92);
  opacity: 0.75;
  filter: blur(3px);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.7s ease, filter 0.7s ease, box-shadow 0.7s ease;
}
.industries-carousel-card.active {
  transform: scale(1.02) translateY(-12px);
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 30px 70px rgba(59, 74, 107, 0.28);
  z-index: 5;
}
.industries-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 28%,
    rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
  transition: opacity 0.6s ease;
}
.industries-carousel-card.active .industries-carousel-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.82) 30%,
    rgba(0,0,0,0.35) 60%, rgba(0,0,0,0) 100%);
}
.industries-carousel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  color: #ffffff;
  transition: transform 0.5s ease;
}
.industries-carousel-card.active .industries-carousel-content { transform: translateY(-5px); }
.industries-carousel-card-title {
  font-family: var(--n-font-display, 'IBM Plex Sans', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}
.industries-carousel-card-desc {
  font-family: var(--n-font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

@media (max-width: 991.98px) {
  .industries-carousel-section { padding: var(--n-section-padding-mobile) 0; }
  .industries-carousel-title { font-size: 2.2rem; white-space: normal; text-align: center; }
  .industries-carousel-card { width: 230px; height: 300px; }
}
@media (max-width: 575.98px) {
  .industries-carousel-title { font-size: 1.75rem; margin-bottom: 2rem; }
  .industries-carousel-card { width: 200px; height: 260px; }
  .industries-carousel-card-title { font-size: 1rem; }
  .industries-carousel-card-desc { font-size: 0.8rem; }
  .industries-carousel-track { gap: 1.25rem; }
}

/* TIMELINE */
.tl-section { position: relative; overflow: hidden; padding: var(--n-section-padding) 0; background: #FFFFFF; }
.tl-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 74, 107, 0.08) 0%, transparent 70%);
  z-index: 0;
}
.tl-section::after {
  content: '';
  position: absolute;
  bottom: -140px; right: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 172, 119, 0.08) 0%, transparent 70%);
  z-index: 0;
}
.tl-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.tl-arc-svg {
  position: absolute;
  top: 155px; left: 0;
  width: 100%; height: 110px;
  z-index: 0;
  overflow: visible;
}
.tl-arc-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: tlDraw 1.4s ease forwards;
  animation-play-state: paused;
}
.tl-wrap.is-visible .tl-arc-path { animation-play-state: running; }
@keyframes tlDraw { to { stroke-dashoffset: 0; } }

.tl-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--n-radius-lg);
  background: transparent;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tl-step.tl-active {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(89, 172, 119, 0.3);
}
.tl-label {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-step-tag {
  display: inline-block;
  font-family: var(--n-font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #59AC77;
  margin-bottom: 0.5rem;
}
.tl-label h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--n-primary); }
.tl-label p { font-size: 0.82rem; line-height: 1.6; color: var(--n-slate); margin: 0; }
.tl-circle-wrap { position: relative; margin-top: 1.75rem; }
.tl-circle {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  border: 4px solid #fff;
  box-shadow: var(--n-shadow-md);
  flex-shrink: 0;
  z-index: 1;
  transform: none !important;
  transition: none !important;
}
.tl-chess { font-size: 2rem; line-height: 1; }
.tl-c1 { background: linear-gradient(135deg, #2A3650 0%, #3B4A6B 100%); }
.tl-c2 { background: linear-gradient(135deg, #5B9A8B 0%, #4A8579 100%); }
.tl-c3 { background: linear-gradient(135deg, #59AC77 0%, #4A9463 100%); }
.tl-c4 { background: linear-gradient(135deg, #3B4A6B 0%, #5B9A8B 100%); }
.tl-badge {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--n-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--n-font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--n-primary);
  z-index: 2;
  box-shadow: var(--n-shadow-sm);
}
.tl-travel-dot {
  fill: var(--n-accent);
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 0 6px rgba(89, 172, 119, 0.65));
}
@media (prefers-reduced-motion: reduce) { .tl-travel-dot { display: none; } }
@media (max-width: 991.98px) {
  .tl-section { padding: var(--n-section-padding-mobile) 0; }
  .tl-wrap { grid-template-columns: 1fr; gap: 1.25rem; }
  .tl-arc-svg { display: none; }
  .tl-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.25rem; }
  .tl-step:hover { transform: none; }
  .tl-label { min-height: 0; align-items: flex-start; order: 2; }
  .tl-circle-wrap { margin-top: 0; order: 1; }
  .tl-circle { width: 64px; height: 64px; font-size: 1.3rem; }
}

/* TALENT POOL */
.talent-pool-section { padding: var(--n-section-padding) 0; background: #F0F4F2; }
.tp-header-stats { display: flex; justify-content: center; gap: 3.5rem; margin-top: 1.5rem; margin-bottom: 1rem; }
.tp-header-stats .stat-item .stat-number { font-size: 1.6rem; }
.tp-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 16px;
  align-items: stretch;
}
.tp-line {
  position: absolute;
  top: 84px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #3B4A6B, #5B9A8B, #59AC77, #2A3650);
  opacity: 0.25;
  z-index: 0;
}
.tp-item { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; height: 100%; }
.tp-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--n-shadow-sm);
  transition: all 0.3s ease;
  background: var(--n-gradient-primary);
}
.tp-item:nth-child(1) .tp-icon { background: var(--n-gradient-primary); }
.tp-item:nth-child(2) .tp-icon { background: linear-gradient(135deg, #5B9A8B 0%, #3B4A6B 100%); }
.tp-item:nth-child(3) .tp-icon { background: linear-gradient(135deg, #59AC77 0%, #4A9463 100%); }
.tp-item:nth-child(4) .tp-icon { background: linear-gradient(135deg, #2A3650 0%, #3B4A6B 100%); }
.tp-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin: 12px 0;
  box-shadow: var(--n-shadow-sm);
  transition: transform 0.3s ease;
  background: var(--n-primary);
}
.tp-item:nth-child(1) .tp-dot { background: #3B4A6B; }
.tp-item:nth-child(2) .tp-dot { background: #5B9A8B; }
.tp-item:nth-child(3) .tp-dot { background: #59AC77; }
.tp-item:nth-child(4) .tp-dot { background: #2A3650; }
.tp-card {
  width: 100%;
  min-height: 210px;
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md) var(--n-radius-md) 6px 6px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--n-shadow-sm);
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tp-card h4 { font-size: 0.98rem; text-align: center; margin-bottom: 1rem; color: var(--n-primary); }
.tp-tags { display: flex; flex-wrap: wrap; justify-content: center; align-content: flex-start; gap: 0.4rem; }
.tp-tags .tag-pill {
  margin-bottom: 0;
  background: var(--n-bg-alt);
  color: var(--n-primary);
  font-size: 0.68rem;
  padding: 0.28rem 0.65rem;
}
.tp-item:hover .tp-icon { transform: scale(1.08); box-shadow: var(--n-shadow-primary); }
.tp-item:hover .tp-dot { transform: scale(1.2); }
.tp-item:hover .tp-card {
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(59, 74, 107, 0.18);
  transform: translateY(-4px);
}
.tp-item:hover .tp-tags .tag-pill { background: #fff; border: 1px solid var(--n-bg-alt); }
@media (max-width: 991.98px) {
  .talent-pool-section { padding: var(--n-section-padding-mobile) 0; }
  .tp-header-stats { gap: 2rem; flex-wrap: wrap; }
  .tp-wrap { grid-template-columns: 1fr; gap: 2rem; padding-top: 0; }
  .tp-line { display: none; }
  .tp-dot { display: none; }
  .tp-card { min-height: 0; border-radius: var(--n-radius-md); }
}

/* WHY CHOOSE SECTION (Tech & AI) */
.why-choose-section { position: relative; overflow: hidden; padding: var(--n-section-padding) 0; background: #FFFFFF; }
.why-choose-header { max-width: 700px; margin: 0 auto 2.5rem; }
.why-choose-header .section-title { margin-top: 0.5rem; margin-bottom: 1rem; }
.why-choose-header .section-subtitle { max-width: 650px; }
.why-choose-layout { position: relative; max-width: 1100px; height: 560px; margin: 0 auto; overflow: visible; }
.why-choose-layout::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  left: 50%; top: -40px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(240, 244, 242, 0.6);
  z-index: 0;
  pointer-events: none;
}
.why-choose-image {
  position: absolute;
  left: 50%; top: 15px;
  transform: translateX(-50%);
  width: 380px;
  z-index: 2;
}
.why-image-box {
  position: relative;
  width: 100%; height: 340px;
  border-radius: 8px;
  background: #ffffff;
  z-index: 1;
}
.why-image-box::after {
  content: "";
  position: absolute;
  top: 15px; left: 15px;
  width: 100%; height: 100%;
  background: rgba(59, 74, 107, 0.15);
  border-radius: 8px;
  z-index: -1;
}
.why-image-box img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}
.why-choose-image:hover .why-image-box img { transform: scale(1.04); }
.why-choose-point {
  position: absolute;
  width: 260px;
  text-align: center;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s ease, background-color 0.5s ease;
}
.why-point-left  { left: 6%;  top: 65px; }
.why-point-right { right: 6%; top: 65px; }
.why-point-bottom { left: 50%; bottom: 0; transform: translateX(-50%); width: 400px; }
.why-point-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--n-bg-alt);
  color: var(--n-primary);
  font-size: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-point-left .why-point-icon { color: var(--n-primary); }
.why-point-right .why-point-icon { color: var(--n-secondary-dark); background: #E5F0EC; }
.why-point-bottom .why-point-icon { color: #59AC77; background: rgba(89, 172, 119, 0.12); }
.why-choose-point h4 {
  margin: 0 0 0.55rem;
  font-family: var(--n-font-display);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--n-primary);
}
.why-choose-point p { margin: 0; font-size: 0.82rem; line-height: 1.6; color: var(--n-slate); }
.why-choose-point:hover .why-point-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 74, 107, 0.12);
}
.why-bubble-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
#bubbleGroup {
  filter:
    drop-shadow(0 20px 40px rgba(89, 172, 119, 0.35))
    drop-shadow(0 0 25px rgba(89, 172, 119, 0.25));
  transform-origin: center;
  animation: bubbleScalePulse 6s ease-in-out infinite;
}
@keyframes bubbleScalePulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.why-choose-point.bubble-active {
  transform: translateY(-15px) scale(1.05);
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(89, 172, 119, 0.25);
  padding: 1rem;
}
.why-point-bottom.bubble-active { transform: translateX(-50%) translateY(-15px) scale(1.05); }
.why-choose-point.bubble-active h4 { color: #59AC77; }
.why-choose-point.bubble-active .why-point-icon {
  transform: scale(1.2) translateY(-8px);
  box-shadow: 0 12px 28px rgba(89, 172, 119, 0.5);
  background: var(--n-accent);
  color: #fff;
}
@media (max-width: 991.98px) {
  .why-choose-section { padding: var(--n-section-padding-mobile) 0; }
  .why-choose-layout { height: 590px; }
  .why-choose-image { width: 330px; }
  .why-image-box { height: 310px; }
  .why-choose-point { width: 220px; }
}
@media (max-width: 767.98px) {
  .why-choose-header { margin-bottom: 2rem; }
  .why-choose-layout {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  .why-choose-layout > * {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none !important;
  }
  .why-choose-image { order: 1; width: 100%; max-width: 380px; }
  .why-image-box { height: 300px; }
  .why-point-left { order: 2; width: 100%; max-width: 400px; }
  .why-point-right { order: 3; width: 100%; max-width: 400px; }
  .why-point-bottom { order: 4; width: 100%; max-width: 400px; }
  .why-choose-layout::before { display: none; }
  .why-bubble-svg { display: none; }
}

/* IMPACT STATS */
.impact-section,
section.why-choose-section:has(.impact-stats-grid) {
  padding: var(--n-section-padding) 0;
  background: #F0F4F2;
}
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.impact-stat-card {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.impact-stat-card:hover { transform: translateY(-6px); box-shadow: var(--n-shadow-md); }
.impact-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--n-bg-alt);
  color: var(--n-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.impact-category {
  font-family: var(--n-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #59AC77;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.impact-number {
  font-family: var(--n-font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--n-primary);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.impact-desc { font-size: 1.02rem; font-weight: 600; color: var(--n-primary); margin-bottom: 0.6rem; }
.impact-baseline { font-size: 0.78rem; font-style: italic; color: var(--n-slate-light); line-height: 1.5; margin: 0; }
@media (max-width: 767.98px) {
  .impact-section,
  section.why-choose-section:has(.impact-stats-grid) { padding: var(--n-section-padding-mobile) 0; }
  .impact-stats-grid { grid-template-columns: 1fr; }
  .impact-number { font-size: 2.8rem; }
}

/* RIPPLE CTA */
.contact-ripple-box {
  position: relative;
  background: var(--n-gradient-dark);
  border-radius: var(--n-radius-lg);
  padding: 3rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.ripple-content { position: relative; z-index: 1; max-width: 560px; }
.ripple-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  max-width: 480px;
}
.ripple-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.6; }
.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--n-accent);
  box-shadow: 0 12px 28px rgba(89, 172, 119, 0.35);
  color: #fff;
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 0.75rem 0.9rem 1.5rem;
  border-radius: var(--n-radius-pill);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-pill-dark:hover {
  background: var(--n-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(89, 172, 119, 0.45);
  color: #fff;
}
.ripple-bg {
  position: absolute;
  top: 50%; right: -180px;
  transform: translateY(-50%);
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 48%, transparent 0%, transparent 22%, rgba(255,255,255,0.16) 22%, rgba(255,255,255,0.16) 38%, transparent 38%, transparent 52%, rgba(255,255,255,0.16) 52%, rgba(255,255,255,0.16) 68%, transparent 68%);
  pointer-events: none;
  transform-origin: center;
  animation: rippleRotatePulse 10s ease-in-out infinite;
}
@keyframes rippleRotatePulse {
  0%   { transform: translateY(-50%) rotate(0deg) scale(1); }
  50%  { transform: translateY(-50%) rotate(180deg) scale(1.1); }
  100% { transform: translateY(-50%) rotate(360deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) { .ripple-bg { animation: none; } }
@media (max-width: 767.98px) {
  .contact-ripple-box { padding: 2.5rem 1.5rem; }
  .ripple-title { font-size: 1.8rem; }
  .ripple-bg { width: 350px; height: 350px; right: -160px; }
}

/* CONTACT PAGE */
.contact-hero-section { padding: var(--n-section-padding) 0; background: #F0F4F2; }
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-hero-title { font-size: 2rem; line-height: 1.2; margin: 0.5rem 0 0.75rem; }
.contact-hero-subtitle { font-size: 0.95rem; color: var(--n-slate); margin-bottom: 1.25rem; max-width: 420px; }
.contact-info-list { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--n-bg-alt);
  color: var(--n-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-info-label { font-family: var(--n-font-display); font-size: 0.75rem; font-weight: 700; color: var(--n-primary); margin-bottom: 1px; }
.contact-info-value { font-size: 0.82rem; color: var(--n-slate); line-height: 1.4; }
.contact-info-value a { color: #59AC77; font-weight: 600; }

.contact-form-floating {
  background: #fff;
  border-radius: var(--n-radius-lg);
  box-shadow: var(--n-shadow-lg);
  padding: 1.75rem;
  border: 1px solid var(--n-border);
}
.contact-form-floating-title { font-size: 1.05rem; margin-bottom: 1rem; }
.input-icon-group { position: relative; display: flex; align-items: center; }
.input-icon-group.textarea-group { align-items: flex-start; }
.input-icon-group i {
  position: absolute;
  left: 12px; top: 12px;
  color: var(--n-slate-light);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}
.form-control-icon {
  width: 100%;
  border: 1.5px solid var(--n-border);
  border-radius: var(--n-radius-sm);
  padding: 0.65rem 0.9rem 0.65rem 2.5rem;
  font-size: 0.88rem;
  background-color: var(--n-bg);
  transition: all 0.2s ease;
  font-family: var(--n-font-body);
}
.form-control-icon:focus {
  outline: none;
  border-color: var(--n-primary);
  box-shadow: 0 0 0 4px rgba(59, 74, 107, 0.1);
  background-color: #fff;
}
textarea.form-control-icon { resize: none; }
.btn-send-message {
  background: var(--n-gradient-primary);
  box-shadow: var(--n-shadow-primary);
  color: #fff;
  border: none;
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--n-radius-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(59, 74, 107, 0.32);
  color: #fff;
}
@media (max-width: 991.98px) {
  .contact-hero-section { padding: var(--n-section-padding-mobile) 0; }
  .contact-split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-hero-title { font-size: 2rem; }
}
@media (max-width: 767.98px) { .contact-form-floating { padding: 1.75rem; } }

.stats-strip { border-top: 1px solid var(--n-border); border-bottom: 1px solid var(--n-border); }
.stat-item .stat-number { font-family: var(--n-font-display); font-size: 2.25rem; font-weight: 800; color: var(--n-primary); }
.stat-item .stat-label { font-size: 0.9rem; color: var(--n-slate); font-weight: 500; }

/* TESTIMONIALS */
.testimonials-section { padding: var(--n-section-padding) 0; background: #FFFFFF; }
.testimonial-card-new {
  position: relative;
  background: #E5F0EC;
  border-radius: 18px;
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 40px;
}
.testimonial-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(89, 172, 119, 0.15);
}
.testimonial-quote-icon {
  position: absolute;
  top: 12px; left: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #59AC77;
  opacity: 0.6;
  user-select: none;
}
.testimonial-avatar {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonial-avatar-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: #A9CFC3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(91, 154, 139, 0.25);
  transition: transform 0.3s ease;
}
.testimonial-card-new:hover .testimonial-avatar-circle { transform: scale(1.05); }
.testimonial-author-new { margin-bottom: 1.25rem; }
.testimonial-name {
  font-family: var(--n-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--n-primary);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}
.testimonial-role { font-family: var(--n-font-body); font-size: 0.82rem; color: #5C5F66; font-weight: 500; }
.testimonial-text {
  font-family: var(--n-font-body);
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--n-primary);
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-dots { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 3rem; }
.testimonial-dots .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #8FBFB0;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.testimonial-dots .dot.active { opacity: 1; background: var(--n-accent); transform: scale(1.15); }
.testimonial-dots .dot:hover { opacity: 1; }
@media (max-width: 767.98px) {
  .testimonials-section { padding: var(--n-section-padding-mobile) 0; }
  .testimonial-card-new { padding: 4.5rem 1.5rem 2rem; margin-top: 45px; }
  .testimonial-quote-icon { font-size: 4rem; left: 16px; top: 8px; }
  .testimonial-avatar-circle { width: 80px; height: 80px; font-size: 2.2rem; }
  .testimonial-name { font-size: 0.98rem; }
  .testimonial-text { font-size: 0.84rem; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* FOOTER */
.footer-nexora { background: var(--n-primary-dark); color: rgba(255,255,255,0.65); padding-top: var(--n-space-2xl); }
.footer-nexora h6 { color: #fff; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--n-space-md); }
.footer-nexora a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; display: block; margin-bottom: 0.65rem; font-size: 0.95rem; }
.footer-nexora a:hover { color: #59AC77; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: var(--n-space-xl); padding: var(--n-space-md) 0; font-size: 0.85rem; }

/* =====================================================
   FOOTER SOCIAL ICONS — visible + aligned
===================================================== */
.footer-nexora .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #FFFFFF !important;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0 !important;

  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-nexora .social-icon i {
  color: #FFFFFF !important;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
}

.footer-nexora .social-icon:hover {
  background: var(--n-accent);
  border-color: var(--n-accent);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(89, 172, 119, 0.55);
}

.footer-nexora .social-icon:hover i {
  color: #FFFFFF !important;
}

.footer-nexora .social-icon:focus-visible {
  outline: 2px solid var(--n-accent);
  outline-offset: 3px;
}

/* PAGE HEADER */
.page-header {
  background: var(--n-gradient-dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 172, 119, 0.25) 0%, transparent 70%);
}
.page-header h1 { color: #fff; }
.breadcrumb-custom { display: inline-flex; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.breadcrumb-custom a { color: rgba(255,255,255,0.6); }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom .active { color: #59AC77; }

/* MISC UTILITIES */
.divider-line { height: 1px; background: var(--n-border); border: none; }
.rounded-img { border-radius: var(--n-radius-lg); }
.badge-soft {
  background: var(--n-bg-alt);
  color: var(--n-primary);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--n-radius-pill);
  font-size: 0.8rem;
}
.list-check { list-style: none; padding: 0; }
.list-check li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.list-check li i {
  color: #59AC77;
  background: var(--n-bg-alt);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.widget {
  background: #fff;
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-md);
  padding: var(--n-space-md);
  margin-bottom: var(--n-space-md);
}
.widget h5 { font-size: 1rem; margin-bottom: var(--n-space-sm); }
.widget-link-list { list-style: none; padding: 0; margin: 0; }
.widget-link-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--n-border);
  font-size: 0.9rem;
  color: var(--n-primary);
  font-weight: 500;
}
.widget-link-list li:last-child { border-bottom: none; }
.widget-link-list li span { color: var(--n-slate-light); font-weight: 400; }

.accordion-custom .accordion-item {
  border: 1px solid var(--n-border);
  border-radius: var(--n-radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-custom .accordion-button {
  font-family: var(--n-font-display);
  font-weight: 700;
  color: var(--n-primary);
  background: #fff;
  padding: 1.25rem 1.5rem;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: #59AC77;
  background: var(--n-bg-alt);
  box-shadow: none;
}
.accordion-custom .accordion-button:focus { box-shadow: none; border-color: var(--n-border); }
.accordion-custom .accordion-body { padding: 1.25rem 1.5rem; color: var(--n-slate); }

.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--n-gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--n-shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.map-frame {
  border-radius: var(--n-radius-md);
  overflow: hidden;
  border: 1px solid var(--n-border);
  height: 50%;
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.feature-grid-item {
  display: flex;
  gap: 1rem;
  padding: var(--n-space-md);
  background: var(--n-bg);
  border-radius: var(--n-radius-md);
  height: 100%;
}

html { background-color: #FFFFFF !important; min-height: 100%; }
body { background-color: #FFFFFF !important; min-height: 100vh; }

.footer-nexora .bi { font-size: 0.9rem; flex-shrink: 0; }
.footer-nexora a[href^="mailto"] { display: inline; margin-bottom: 0; }

/* =====================================================
   VIEW MORE BUTTON — pill, navy → teal gradient
===================================================== */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  background: var(--n-primary);
  color: #FFFFFF;
  font-family: var(--n-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(59, 74, 107, 0.25);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-view-more:hover {
  background: var(--n-secondary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 154, 139, 0.35);
}

.btn-view-more i {
  transition: transform 0.2s ease;
}

.btn-view-more:hover i {
  transform: translateX(4px);
}

.btn-view-more:focus-visible {
  outline: 2px solid var(--n-accent);
  outline-offset: 3px;
}

/* =====================================================
   BUTTON COLORS — one green (#0E9F6E) for ALL buttons
   Added at the END so it overrides the earlier button styles.
   To change the color later, edit only the 2 variables below.
===================================================== */
:root {
  --btn-color: #0E9F6E;
  --btn-color-hover: #0B8A5E;
  --btn-shadow: rgba(14, 159, 110, 0.30);
  --btn-shadow-hover: rgba(14, 159, 110, 0.40);
}

.btn-primary,
.park-btn-primary,
.btn-pill-dark,
.btn-send-message,
.btn-view-more {
  background: var(--btn-color);
  color: #fff;
  box-shadow: 0 12px 28px var(--btn-shadow);
}
.btn-primary:hover,
.park-btn-primary:hover,
.btn-pill-dark:hover,
.btn-send-message:hover,
.btn-view-more:hover {
  background: var(--btn-color-hover);
  color: #fff;
  box-shadow: 0 16px 32px var(--btn-shadow-hover);
}

/* Navbar "Contact" pill (original uses !important, so this must too) */
.navbar-nexora .btn-primary {
  background: var(--btn-color) !important;
  box-shadow: 0 8px 20px -6px var(--btn-shadow) !important;
}
.navbar-nexora .btn-primary:hover {
  background: var(--btn-color-hover) !important;
}

/* Back-to-top button */
.back-to-top {
  background: var(--btn-color);
  box-shadow: 0 12px 28px var(--btn-shadow);
}
.back-to-top:hover {
  background: var(--btn-color-hover);
}

/* Light/outline button — text and hover in the same green */
.btn-light-custom {
  color: var(--btn-color);
}
.btn-light-custom:hover {
  color: var(--btn-color-hover);
}

/* Footer social icons — green on hover instead of coral */
.footer-nexora .social-icon:hover {
  background: var(--btn-color);
  border-color: var(--btn-color);
  box-shadow: 0 8px 18px -6px var(--btn-shadow);
}

/* Hero "Schedule a Consultation" button — no shadow */
.park-btn-primary,
.park-btn-primary:hover {
  box-shadow: none;
}


/* =====================================================
   WHY CHOOSE US — circles 4 & 5 (colors set inline in HTML)
   Overrides the inline --c variable so they turn green too.
===================================================== */
.why5-wrap .why5-item:nth-child(4) { --c: #59AC77 !important; }
.why5-wrap .why5-item:nth-child(5) { --c: #3F8F5F !important; }