@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   DAS AND PARTNERS - Vectura-Inspired Design
   Color: Dark theme with green accent (#148255)
   Typography: Inter, system fonts
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --dm-bg: #ffffff;
  --dm-surface: #f5f7fa;
  --dm-text: #1a1a2e;
  --dm-muted: #718096;
  --dm-border: rgba(0,0,0,0.08);
  --primary: #148255;
  --primary-light: #0d6b45;
  --primary-dark: #0d5e3d;
  --accent: #148255;
  --bg-dark: #ffffff;
  --bg-dark-2: #f5f7fa;
  --bg-dark-3: #eef1f5;
  --bg-dark-4: #e8ecf1;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --text-white: #1a1a2e;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #4a5568;
  --text-muted: #718096;
  --text-dark: #18181b;
  --border-dark: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   NAVIGATION
   ============================================= */

/* Vertical Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 200px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  z-index: 10000;
  overflow: hidden;
}
#scroll-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #148255, #25d366);
  border-radius: 2px;
  transform-origin: top center;
  transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

/* On pages with a hero background image, keep the navbar readable */
body:has(.page-hero[style*="background-image"]) .navbar:not(.scrolled),
body:has(.ws-hero) .navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(4,12,8,0.72) 0%, rgba(4,12,8,0.3) 70%, transparent 100%);
}
body:has(.page-hero[style*="background-image"]) .navbar:not(.scrolled) .nav-links a,
body:has(.page-hero[style*="background-image"]) .navbar:not(.scrolled) .nav-dropdown-trigger,
body:has(.ws-hero) .navbar:not(.scrolled) .nav-links a,
body:has(.ws-hero) .navbar:not(.scrolled) .nav-dropdown-trigger {
  color: rgba(255,255,255,0.92);
}
body:has(.page-hero[style*="background-image"]) .navbar:not(.scrolled) .nav-links a:hover,
body:has(.page-hero[style*="background-image"]) .navbar:not(.scrolled) .nav-dropdown-trigger:hover,
body:has(.ws-hero) .navbar:not(.scrolled) .nav-links a:hover,
body:has(.ws-hero) .navbar:not(.scrolled) .nav-dropdown-trigger:hover {
  color: #1db876;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.nav-logo span {
  color: var(--primary-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 170px;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333 !important;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(20,130,85,0.06);
  color: #148255 !important;
  padding-left: 24px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(20, 130, 85, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-icon {
  font-size: 1.1em;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero-glow-1 {
  top: -200px;
  right: -100px;
  background: var(--primary);
}

.hero-glow-2 {
  bottom: -200px;
  left: -100px;
  background: var(--primary-light);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(20, 130, 85, 0.1);
  border: 1px solid rgba(20, 130, 85, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
}

.section-dark-2 {
  background: var(--bg-dark-2);
}

.section-dark-3 {
  background: var(--bg-dark-3);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label-line {
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-dark .section-title,
.section-dark-2 .section-title,
.section-dark-3 .section-title {
  color: var(--text-white);
}

.section-light .section-title {
  color: var(--text-dark);
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-light .section-description {
  color: var(--text-muted);
}

/* =============================================
   ABOUT / OVERVIEW SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-dark-3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-image-badge-number {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-light);
}

.about-image-badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(20, 130, 85, 0.05);
  border: 1px solid rgba(20, 130, 85, 0.1);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.about-feature:hover {
  background: rgba(20,130,85,0.09);
  border-color: rgba(20,130,85,0.22);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(20, 130, 85, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-feature-text {
  flex: 1;
  min-width: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

/* =============================================
   SERVICES / FEATURES CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(20, 130, 85, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(20, 130, 85, 0.1);
  border: 1px solid rgba(20, 130, 85, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
}

.service-card .learn-more svg {
  transition: var(--transition);
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* =============================================
   FEATURE SWITCHER
   ============================================= */
.feature-switcher {
  margin-top: 48px;
}

.fs-tabs {
  display: flex;
  gap: 4px;
  background: rgba(20, 130, 85, 0.06);
  border-radius: 16px;
  padding: 6px;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}

.fs-tabs::-webkit-scrollbar {
  display: none;
}

.fs-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
}

.fs-tab i {
  font-size: 1rem;
  transition: all 0.35s ease;
}

.fs-tab:hover {
  color: var(--primary);
}

.fs-tab.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(20, 130, 85, 0.3);
}

.fs-tab.active i {
  color: #fff;
}

/* Content panels */
.fs-content {
  margin-top: 32px;
  position: relative;
  min-height: 400px;
}

.fs-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fsPanelIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fs-panel.active {
  display: grid;
}

@keyframes fsPanelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-panel-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fs-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fs-panel-image:hover img {
  transform: scale(1.05);
}

.fs-panel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(20, 130, 85, 0.15);
  pointer-events: none;
}

.fs-panel-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.fs-panel-text > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.fs-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 12px;
}

.fs-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.fs-features li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.fs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(20, 130, 85, 0.25);
}

.fs-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 130, 85, 0.35);
}

.fs-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.fs-link:hover i {
  transform: translateX(4px);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .fs-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .fs-tab {
    flex: 0 0 auto;
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .fs-tab span {
    display: none;
  }

  .fs-tab i {
    font-size: 1.2rem;
  }

  .fs-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =============================================
   STATS / METRICS
   ============================================= */
.stats-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--border-dark);
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   SECTORS SECTION
   ============================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover img {
  transform: scale(1.05);
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.sector-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 130, 85, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sector-overlay h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.sector-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   CLIENTS / LOGOS
   ============================================= */
.clients-section {
  padding: 80px 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.clients-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 1;
}

.clients-logos span {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* =============================================
   3D WIREFRAME SPHERE (About Section)
   ============================================= */
.about-section-enhanced {
  position: relative;
  overflow: hidden;
}

.wireframe-sphere-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.wireframe-sphere-container canvas {
  width: 100%;
  height: 100%;
}

.about-section-enhanced .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .wireframe-sphere-container {
    width: 400px;
    height: 400px;
    opacity: 0.1;
  }
}

/* =============================================
   PROJECTS / PORTFOLIO
   ============================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(20, 130, 85, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.project-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-dark-3);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-info {
  padding: 28px 32px;
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(20, 130, 85, 0.1);
  border: 1px solid rgba(20, 130, 85, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.project-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(20, 130, 85, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.cta-content .btn-primary {
  background: white;
  color: var(--primary-dark);
}

.cta-content .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-content .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.cta-content .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #111820;
  border-top: none;
  padding: 0 0 0;
  color: #fff;
  position: relative;
}

/* Green gradient top accent line */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #148255 0%, #1db876 50%, #148255 100%);
}

/* Awards / Rankings strip */
.footer-stats {
  background: #0a1009;
  border-bottom: 1px solid rgba(29,184,118,0.1);
  padding: 20px 0;
  overflow: hidden;
}
.footer-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.footer-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,184,118,0.08);
  border: 1px solid rgba(29,184,118,0.18);
  border-radius: 100px;
  padding: 7px 16px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.footer-award:hover {
  background: rgba(29,184,118,0.15);
  border-color: rgba(29,184,118,0.35);
}
.footer-award-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(29,184,118,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #1db876;
  flex-shrink: 0;
}
.footer-award-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-award-rank {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1db876;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-award-name {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}

/* Main footer body */
.footer-body {
  padding: 64px 0 40px;
  background: #111820;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.8fr 1.4fr;
  gap: 40px;
  margin-bottom: 64px;
}

/* Offices column */
.footer-column--offices { min-width: 0; }
.footer-offices-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-offices-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0 !important;
}
.footer-offices-list li:last-child { border-bottom: none; padding-bottom: 0; }
.footer-office-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1ec28b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-office-label i { margin-right: 5px; }
.footer-office-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.footer-office-phone { font-size: 0; }
.footer-office-phone a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-office-phone a:hover { color: #1ec28b; }
.footer-office-phone i { margin-right: 4px; font-size: 0.75rem; }

/* Contact column icons */
.footer-column--contact .footer-column ul li a i {
  margin-right: 6px;
  font-size: 0.75rem;
  color: #1ec28b;
}

.footer-brand p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-column h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: #1db876;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(29,184,118,0.2);
  position: relative;
}
.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1db876;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-column ul li a:hover {
  color: #1ec28b;
  padding-left: 4px;
}

/* =============================================
   NEWSLETTER SUBSCRIBE STRIP (footer)
   ============================================= */
.footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-subscribe-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.footer-subscribe-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.footer-subscribe-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 440px;
  min-width: 260px;
}
.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-subscribe-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.footer-subscribe-form input[type="email"]:focus { border-color: #148255; }
.footer-subscribe-form button {
  padding: 11px 22px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.footer-subscribe-form button:hover { background: #0d5e3d; transform: translateY(-1px); }
.footer-subscribe-msg {
  font-size: 0.82rem;
  margin-top: 8px;
  display: none;
}
.footer-subscribe-msg.success { color: #4ade80; display: block; }
.footer-subscribe-msg.error   { color: #f87171; display: block; }
@media (max-width: 768px) {
  .footer-subscribe { flex-direction: column; gap: 16px; }
  .footer-subscribe-form { max-width: 100%; width: 100%; }
}

/* =============================================
   FOOTER QUICK QUOTE STRIP
   ============================================= */
.footer-quote-strip {
  background: linear-gradient(135deg, #071a0f 0%, #0b2517 50%, #071a0f 100%);
  border-bottom: 1px solid rgba(29,184,118,0.12);
  padding: 28px 0;
}
.footer-quote-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-quote-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 180px;
}
.footer-quote-label i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #148255, #1db876);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-quote-label span {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}
.footer-quote-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  font-weight: 400;
}
.footer-quote-form {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.footer-quote-form input,
.footer-quote-form select {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-quote-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-quote-form select { color: rgba(255,255,255,0.7); }
.footer-quote-form select option { background: #0d1117; color: #fff; }
.footer-quote-form input:focus,
.footer-quote-form select:focus { border-color: #1db876; }
.footer-quote-form .btn-quote {
  padding: 10px 22px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.footer-quote-form .btn-quote:hover { background: #1db876; transform: translateY(-1px); }
.footer-quote-msg {
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
  width: 100%;
}
.footer-quote-msg.success { color: #4ade80; display: block; }
.footer-quote-msg.error   { color: #f87171; display: block; }
@media (max-width: 900px) {
  .footer-quote-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-quote-form { width: 100%; }
}

/* =============================================
   FOOTER CERTIFICATIONS (brand column)
   ============================================= */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.footer-cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 4px 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.footer-cert i { color: #1db876; font-size: 0.6rem; }
.footer-cert:hover { color: rgba(255,255,255,0.8); border-color: rgba(29,184,118,0.3); }

/* =============================================
   FOOTER BOTTOM — improved
   ============================================= */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin: 0; }
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: #1db876; }
.footer-careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(29,184,118,0.1);
  border: 1px solid rgba(29,184,118,0.25);
  border-radius: 100px;
  padding: 5px 12px 5px 9px;
  color: #1db876;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-careers-badge:hover { background: rgba(29,184,118,0.18); border-color: rgba(29,184,118,0.45); color: #1db876; }
.footer-careers-dot {
  width: 7px;
  height: 7px;
  background: #1db876;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,184,118,0.7); }
  50%       { box-shadow: 0 0 0 5px rgba(29,184,118,0); }
}
.footer-back-top {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-back-top:hover { background: rgba(29,184,118,0.15); color: #1db876; border-color: rgba(29,184,118,0.3); }

/* =============================================
   NEWSLETTER FULL SECTION (newsletters.html)
   ============================================= */
.nl-subscribe-section {
  background: linear-gradient(135deg, #0a1f14 0%, #0d3d22 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.nl-subscribe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/b.jpg') center/cover no-repeat;
  opacity: 0.07;
}
.nl-subscribe-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.nl-subscribe-inner .section-label { justify-content: center; margin-bottom: 16px; }
.nl-subscribe-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.nl-subscribe-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.nl-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.nl-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.nl-benefit i { color: #4ade80; font-size: 0.8rem; }
.nl-subscribe-form-full {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.nl-subscribe-form-full input[type="text"],
.nl-subscribe-form-full input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.nl-subscribe-form-full input::placeholder { color: rgba(255,255,255,0.35); }
.nl-subscribe-form-full input:focus { border-color: #148255; }
.nl-subscribe-form-full button {
  padding: 14px 28px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-subscribe-form-full button:hover { background: #0d5e3d; transform: translateY(-2px); }
.nl-subscribe-note {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  margin-top: 14px;
}
.nl-full-msg {
  font-size: 0.9rem;
  margin-top: 16px;
  min-height: 24px;
}
.nl-full-msg.success { color: #4ade80; }
.nl-full-msg.error   { color: #f87171; }
@media (max-width: 540px) {
  .nl-subscribe-form-full { flex-direction: column; }
  .nl-subscribe-form-full button { width: 100%; justify-content: center; }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: #148255;
  border-color: #148255;
  color: white;
  transform: translateY(-2px);
}

/* Footer brand social row */
.footer-brand-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-brand-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-brand-socials a:hover {
  background: #148255;
  border-color: #148255;
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (Inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Service page hero with background image — dark overlay keeps text readable */
.page-hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,20,0.82) 0%, rgba(10,31,20,0.65) 100%);
  z-index: 1;
}
.page-hero[style*="background-image"] .container {
  position: relative;
  z-index: 2;
}
.page-hero[style*="background-image"] h1,
.page-hero[style*="background-image"] p,
.page-hero[style*="background-image"] .page-hero-breadcrumb a,
.page-hero[style*="background-image"] .page-hero-breadcrumb span,
.page-hero[style*="background-image"] .section-label,
.page-hero[style*="background-image"] .svc-back-btn,
.page-hero[style*="background-image"] .svc-back-btn i {
  color: #ffffff !important;
}
.page-hero[style*="background-image"] .section-label-line {
  background: #ffffff !important;
}

.page-hero .hero-bg-grid {
  opacity: 0.5;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-hero-breadcrumb a {
  color: var(--primary-light);
}

.page-hero-breadcrumb span {
  color: var(--text-muted);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

/* Two-office map section */
.offices-map-section { padding: 80px 0; background: var(--bg-dark-2); }
.offices-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.office-map-card {
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.office-map-card:hover { box-shadow: var(--shadow-lg); }
.office-map-card__map { width: 100%; height: 280px; display: block; border: 0; }
.office-map-card__body { padding: 28px; }
.office-map-card__city {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}
.office-map-card__city i { font-size: 0.9rem; }
.office-map-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.office-map-card__addr {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.office-map-card__contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.office-map-card__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.office-map-card__phone i { color: var(--primary); width: 14px; }
.office-map-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.office-map-card__btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.office-map-card__btn-wa:hover { background: #1fba59; }
.office-map-card__btn-dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.office-map-card__btn-dir:hover { background: var(--primary); color: #fff; }
@media (max-width: 768px) {
  .offices-map-grid { grid-template-columns: 1fr; }
  .office-map-card__map { height: 220px; }
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(20, 130, 85, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 130, 85, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes fadeInFallback {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInFallback 0.6s ease 1.4s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Framer-style slide-up animation (for headings) */
.anim-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1), transform 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}
.anim-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Framer-style slide-from-right animation (for FAQ items) */
.anim-slide-right {
  opacity: 0;
  transform: translateX(150px);
  transition: opacity 1s cubic-bezier(0.12, 0.23, 0, 1), transform 1s cubic-bezier(0.12, 0.23, 0, 1);
}
.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for FAQ items */
.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.16s; }
.anim-delay-3 { transition-delay: 0.24s; }
.anim-delay-4 { transition-delay: 0.32s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(20,130,85,0.04);
    border-radius: 8px;
    padding: 4px 0;
    min-width: auto;
    margin-top: 8px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    font-size: 1rem !important;
    text-align: center;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card::after {
    display: none !important;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .clients-logos {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.75rem;
  }
}

/* =============================================
   NAV LOGO IMAGE
   ============================================= */
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: blur(3px) brightness(0.5);
  transform: scale(1.04); /* compensate for blur edge bleed */
}

.hero-slide.active {
  opacity: 0.22;
}

.hero .hero-bg-grid {
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* =============================================
   CLIENTS LOGO SCROLL
   ============================================= */
.clients-logos-scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.clients-track img {
  height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.clients-track img:hover {
  opacity: 1;
  transform: scale(1.15);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTORS SPLIT LAYOUT
   ============================================= */
.sectors-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.sectors-sphere-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sectors-sphere-wrap {
  width: 360px;
  height: 360px;
  position: relative;
  margin-left: -40px;
}

.sectors-sphere-wrap canvas {
  width: 100%;
  height: 100%;
}

.sectors-sphere-label {
  text-align: center;
  margin-top: 24px;
}

.sectors-sphere-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.sectors-sphere-text {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sectors-carousel-col {
  min-width: 0;
}

@media (max-width: 900px) {
  .sectors-layout {
    grid-template-columns: 1fr;
  }

  .sectors-sphere-col {
    order: 2;
  }

  .sectors-sphere-wrap {
    width: 280px;
    height: 280px;
  }

  .sectors-carousel-col {
    order: 1;
  }
}

/* =============================================
   SECTORS GRID (replaces 3D carousel layout)
   ============================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.sector-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  background: var(--bg-dark-3);
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.sector-card:hover img { transform: scale(1.07); }
.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,12,6,0.94) 0%, rgba(3,12,6,0.45) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.35s;
}
.sector-card:hover .sector-card-overlay {
  background: linear-gradient(to top, rgba(3,12,6,0.97) 0%, rgba(3,12,6,0.65) 55%, rgba(20,130,85,0.18) 100%);
}
.sector-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(20,130,85,0.85);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.sector-card:hover .sector-card-tag { opacity: 1; transform: translateY(0); }
.sector-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.25;
}
.sector-card-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  margin: 0;
}
.sectors-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sectors-footer-stat {
  display: flex;
  flex-direction: column;
}
.sectors-footer-stat strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.sectors-footer-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 900px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sectors-footer { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 520px) {
  .sectors-grid { gap: 10px; }
  .sector-card-title { font-size: 0.88rem; }
}

/* =============================================
   ABOUT STATS STRIP
   ============================================= */
.about-stats {
  display: flex;
  gap: 0;
  margin: 20px 0 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20,130,85,0.04);
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.about-stat:last-child { border-right: none; }
.about-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.about-feature-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 2px;
}
.about-feature-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   ROTOR 3D GALLERY
   ============================================= */
.carousel-3d {
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 30px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  clip-path: inset(0);
  cursor: grab;
}

.carousel-3d:active {
  cursor: grabbing;
}

.carousel-3d-scene {
  width: 300px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}

.carousel-3d-card {
  position: absolute;
  width: 300px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.1);
  backface-visibility: hidden;
  top: 5px;
  left: -10px;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.carousel-3d-card:hover {
  box-shadow: 0 40px 100px rgba(20,130,85,0.3), 0 8px 32px rgba(0,0,0,0.18);
  border-color: rgba(29,184,118,0.35);
}

.carousel-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-3d-card:hover img {
  transform: scale(1.06);
}

.carousel-3d-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(to top, rgba(5,20,12,0.95) 0%, rgba(5,20,12,0.7) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-3d-info::before {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 22px;
  width: 36px;
  height: 3px;
  background: #1db876;
  border-radius: 2px;
  top: auto;
  right: auto;
}

.carousel-3d-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.carousel-3d-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

.carousel-3d-controls {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}

.carousel-3d-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 130, 85, 0.15);
  border: 1px solid rgba(20, 130, 85, 0.3);
  color: var(--primary-light);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

.carousel-3d-dots {
  display: flex;
  gap: 8px;
  padding: 0 20px;
}

.carousel-3d-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-3d-dot.active {
  background: var(--primary-light);
  width: 24px;
  border-radius: 100px;
}

/* Rotor reflection glow */
.carousel-3d-scene::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -50%;
  right: -50%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(20, 130, 85, 0.08), transparent 70%);
  filter: blur(8px);
}

@media (max-width: 768px) {
  .carousel-3d-card {
    width: 260px;
    height: 360px;
    left: -10px;
  }

  .carousel-3d {
    min-height: 460px;
  }

  .carousel-3d-scene {
    width: 240px;
    height: 360px;
  }
}

/* =============================================
   PROGRESS BARS
   ============================================= */
.progress-bars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.progress-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(30, 194, 139, 0.5);
}

/* =============================================
   PARALLAX SCROLL TEXT — Marquee + Depth
   ============================================= */
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.parallax-text-section {
  padding: 72px 0;
  overflow: hidden;
  position: relative;
  background: #060d09;
  isolation: isolate;
}

/* Ambient radial glow */
.parallax-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(29,184,118,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 50%, rgba(20,130,85,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 50%, rgba(20,130,85,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle scanline texture */
.parallax-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Top & bottom accent lines */
.parallax-text-section::before,
.parallax-text-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 5;
  pointer-events: none;
}
.parallax-text-section::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(29,184,118,0.5) 30%, rgba(29,184,118,0.5) 70%, transparent 100%);
}
.parallax-text-section::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(29,184,118,0.3) 30%, rgba(29,184,118,0.3) 70%, transparent 100%);
}

/* Hidden legacy helpers */
.parallax-unfocused-bg,
.parallax-chroma,
.parallax-grain,
.parallax-overlay,
.parallax-grid-overlay { display: none; }

/* ---- OUTER ROW (JS parallax target) ---- */
.parallax-text-row {
  position: relative;
  z-index: 2;
  will-change: transform;
  overflow: hidden;
}

/* Left/right edge fade per-row */
.parallax-text-row::before,
.parallax-text-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}
.parallax-text-row::before {
  left: 0;
  background: linear-gradient(to right, #060d09 0%, transparent 100%);
}
.parallax-text-row::after {
  right: 0;
  background: linear-gradient(to left, #060d09 0%, transparent 100%);
}

/* Row spacing */
.parallax-text-row + .parallax-text-row { margin-top: 0; }

/* Middle row (Row 2) */
.parallax-text-row--mid {
  margin: 18px 0;
}

/* Back row (Row 3) — smaller, more muted */
.parallax-text-row--back {
  opacity: 0.45;
}

/* ---- INNER TRACK (CSS marquee) ---- */
.parallax-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.parallax-track--ltr {
  animation: marquee-ltr 40s linear infinite;
}

.parallax-track--rtl {
  animation: marquee-rtl 35s linear infinite;
}

.parallax-track--slow {
  animation-duration: 55s;
}

/* Pause on hover */
.parallax-text-section:hover .parallax-track {
  animation-play-state: paused;
}

/* ---- SPAN STYLES ---- */
.parallax-track span {
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  padding: 0 16px;
  flex-shrink: 0;
  text-transform: uppercase;
  transition: opacity 0.3s;
  cursor: default;
  line-height: 1.15;
}

.parallax-text-row--back .parallax-track span {
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
}

/* Stroke = green outline, transparent fill */
.parallax-track .text-stroke {
  -webkit-text-stroke: 1.5px #1db876;
  color: transparent;
}

/* Fill = bright white */
.parallax-track .text-fill {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

/* Hover: stroke word lights up, fill word glows */
.parallax-track .text-stroke:hover {
  color: #1db876;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 50px rgba(29,184,118,0.7);
}
.parallax-track .text-fill:hover {
  text-shadow: 0 0 50px rgba(255,255,255,0.6);
}

/* Dot separator */
.parallax-track .text-dot {
  color: rgba(29,184,118,0.35);
  font-size: clamp(0.3rem, 0.6vw, 0.45rem);
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
}

/* ── Parallax Mobile Responsive ── */
@media (max-width: 768px) {
  .parallax-text-section { padding: 48px 0; }
  .parallax-text-row::before,
  .parallax-text-row::after { width: 60px; }
  .parallax-text-row--mid { margin: 12px 0; }
  .parallax-track span { font-size: clamp(1.4rem, 3.5vw, 2.2rem); padding: 0 10px; }
  .parallax-text-row--back .parallax-track span { font-size: clamp(1rem, 2.5vw, 1.6rem); }
  .parallax-track .text-dot { padding: 0 6px; }
}

@media (max-width: 480px) {
  .parallax-text-section { padding: 32px 0; }
  .parallax-text-row::before,
  .parallax-text-row::after { width: 30px; }
  .parallax-track span { font-size: clamp(1.1rem, 4vw, 1.6rem); padding: 0 8px; }
  .parallax-text-row--back .parallax-track span { font-size: clamp(0.85rem, 3vw, 1.2rem); }
  .parallax-text-row--back { opacity: 0.35; }
}

/* =============================================
   DEPTHDECK CAROUSEL (Coverflow-style)
   ============================================= */
.depthdeck-carousel {
  position: relative;
  padding: 40px 0;
}

.depthdeck-viewport {
  overflow: hidden;
  position: relative;
  height: 420px;
  perspective: 1200px;
}

.depthdeck-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.depthdeck-slide {
  position: absolute;
  width: 380px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.6s ease,
              filter 0.6s ease;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border-dark);
}

.depthdeck-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depthdeck-slide.active {
  z-index: 5;
  transform: translateX(-50%) scale(1.1);
  left: 50%;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 30px 80px rgba(20, 130, 85, 0.15), 0 15px 40px rgba(0,0,0,0.12);
}

.depthdeck-slide.prev-1 {
  z-index: 4;
  transform: translateX(-50%) translateX(-320px) scale(0.85) rotateY(25deg);
  left: 50%;
  opacity: 0.7;
  filter: brightness(0.6);
}

.depthdeck-slide.prev-2 {
  z-index: 3;
  transform: translateX(-50%) translateX(-520px) scale(0.7) rotateY(35deg);
  left: 50%;
  opacity: 0.4;
  filter: brightness(0.4);
}

.depthdeck-slide.next-1 {
  z-index: 4;
  transform: translateX(-50%) translateX(320px) scale(0.85) rotateY(-25deg);
  left: 50%;
  opacity: 0.7;
  filter: brightness(0.6);
}

.depthdeck-slide.next-2 {
  z-index: 3;
  transform: translateX(-50%) translateX(520px) scale(0.7) rotateY(-35deg);
  left: 50%;
  opacity: 0.4;
  filter: brightness(0.4);
}

.depthdeck-slide.hidden {
  opacity: 0;
  z-index: 0;
  transform: translateX(-50%) scale(0.5);
  left: 50%;
  pointer-events: none;
}

.depthdeck-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.depthdeck-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.depthdeck-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .depthdeck-viewport { height: 320px; }
  .depthdeck-slide { width: 280px; height: 200px; }
  .depthdeck-slide.prev-1 { transform: translateX(-50%) translateX(-200px) scale(0.8) rotateY(20deg); }
  .depthdeck-slide.next-1 { transform: translateX(-50%) translateX(200px) scale(0.8) rotateY(-20deg); }
  .depthdeck-slide.prev-2,
  .depthdeck-slide.next-2 { opacity: 0; }
}

/* =============================================
   TEAM DEPTHDECK CAROUSEL
   ============================================= */
#depthdeck-team .depthdeck-viewport {
  height: 480px;
}

#depthdeck-team .depthdeck-slide {
  width: 300px;
  height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f0faf5 0%, #e8f5ee 100%);
  border: 1px solid rgba(20, 130, 85, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

#depthdeck-team .depthdeck-slide img {
  width: 100%;
  height: 75%;
  object-fit: contain;
  object-position: bottom center;
}

.team-slide-info {
  width: 100%;
  padding: 16px 12px;
  background: var(--primary);
  text-align: center;
}

.team-slide-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.team-slide-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 400;
}

#depthdeck-team .depthdeck-slide.active {
  cursor: pointer;
}

@media (max-width: 768px) {
  #depthdeck-team .depthdeck-viewport { height: 400px; }
  #depthdeck-team .depthdeck-slide { width: 240px; height: 330px; }
}

/* Team Modal */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.team-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.team-modal-overlay.active .team-modal {
  transform: translateY(0) scale(1);
}

.team-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  pointer-events: all;
}

.team-modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.team-modal-img {
  width: 100%;
  height: 320px;
  background: linear-gradient(180deg, #f0faf5 0%, #e8f5ee 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.team-modal-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.team-modal-body {
  padding: 24px;
  text-align: center;
}

.team-modal-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.team-modal-role {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-modal-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 480px) {
  .team-modal-img { height: 240px; }
  .team-modal-body { padding: 20px 16px; }
}

/* =============================================
   3D SPHERE GALLERY
   ============================================= */
.sphere-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0 60px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(20,130,85,0.1) 0%, rgba(20,130,85,0.03) 35%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(20,130,85,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20,130,85,0.04) 0%, transparent 40%);
}

/* Animated ring orbits behind the sphere */
.sphere-wrapper::before,
.sphere-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(20,130,85,0.15);
  pointer-events: none;
  will-change: transform;
}

.sphere-wrapper::before {
  width: 720px;
  height: 720px;
  margin: -360px 0 0 -360px;
  animation: sphereOrbit 18s linear infinite;
  box-shadow: 0 0 40px rgba(20,130,85,0.05) inset;
}

.sphere-wrapper::after {
  width: 560px;
  height: 560px;
  margin: -280px 0 0 -280px;
  border-style: dashed;
  border-color: rgba(20,130,85,0.1);
  animation: sphereOrbit 28s linear infinite reverse;
}

@keyframes sphereOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Glowing dots on orbit rings */
.sphere-orbit-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  margin: -350px 0 0 -350px;
  pointer-events: none;
  will-change: transform;
  animation: sphereOrbit 20s linear infinite;
}

.sphere-orbit-dot {
  position: absolute;
  will-change: transform, opacity;
  width: 8px;
  height: 8px;
  background: #1ec28b;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(30,194,139,0.8), 0 0 30px rgba(20,130,85,0.5), 0 0 60px rgba(20,130,85,0.2);
  animation: dotPulse 2s ease-in-out infinite;
}

.sphere-orbit-dot:nth-child(2) { animation-delay: 0.5s; }
.sphere-orbit-dot:nth-child(3) { animation-delay: 1s; }
.sphere-orbit-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes dotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.6); opacity: 1; }
}

.sphere-orbit-dot:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.sphere-orbit-dot:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.sphere-orbit-dot:nth-child(3) { top: 50%; right: 0; transform: translate(50%, -50%); }
.sphere-orbit-dot:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); }

/* Floating particles */
.sphere-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sphere-particle {
  position: absolute;
  will-change: transform, opacity;
  width: 3px;
  height: 3px;
  background: rgba(30,194,139,0.5);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(20,130,85,0.3);
  animation: sphereFloat linear infinite;
}

.sphere-particle:nth-child(1) { left: 15%; top: 20%; animation-duration: 8s; animation-delay: 0s; }
.sphere-particle:nth-child(2) { left: 80%; top: 30%; animation-duration: 10s; animation-delay: 1s; width: 5px; height: 5px; box-shadow: 0 0 10px rgba(20,130,85,0.4); }
.sphere-particle:nth-child(3) { left: 25%; top: 70%; animation-duration: 12s; animation-delay: 2s; }
.sphere-particle:nth-child(4) { left: 70%; top: 75%; animation-duration: 9s; animation-delay: 0.5s; width: 2px; height: 2px; }
.sphere-particle:nth-child(5) { left: 50%; top: 10%; animation-duration: 11s; animation-delay: 3s; width: 4px; height: 4px; }
.sphere-particle:nth-child(6) { left: 10%; top: 50%; animation-duration: 7s; animation-delay: 1.5s; width: 5px; height: 5px; box-shadow: 0 0 10px rgba(20,130,85,0.4); }
.sphere-particle:nth-child(7) { left: 90%; top: 55%; animation-duration: 13s; animation-delay: 4s; }
.sphere-particle:nth-child(8) { left: 40%; top: 85%; animation-duration: 9s; animation-delay: 2.5s; width: 2px; height: 2px; }

@keyframes sphereFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(-100px) scale(1.8); opacity: 0.3; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}

/* Pulsing glow behind sphere */
.sphere-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  background:
    radial-gradient(circle, rgba(20,130,85,0.2) 0%, rgba(20,130,85,0.08) 30%, transparent 60%),
    radial-gradient(circle, rgba(30,194,139,0.1) 0%, transparent 50%);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  animation: spherePulse 4s ease-in-out infinite;
}

@keyframes spherePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 1; }
}

/* Third outer orbit - large and faint */
.sphere-orbit-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 850px;
  margin: -425px 0 0 -425px;
  border: 1px solid rgba(20,130,85,0.06);
  border-radius: 50%;
  pointer-events: none;
  animation: sphereOrbit 40s linear infinite;
  will-change: transform;
}

/* Animated scan line across sphere */
.sphere-scanline {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 2px;
  margin: -1px 0 0 -350px;
  background: linear-gradient(90deg, transparent 0%, rgba(20,130,85,0.15) 30%, rgba(30,194,139,0.3) 50%, rgba(20,130,85,0.15) 70%, transparent 100%);
  pointer-events: none;
  animation: sphereScan 6s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, opacity;
}

@keyframes sphereScan {
  0% { transform: rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { transform: rotate(180deg); opacity: 0.3; }
}

/* Corner accent lines */
.sphere-accent {
  position: absolute;
  pointer-events: none;
}

.sphere-accent::before,
.sphere-accent::after {
  content: '';
  position: absolute;
  background: linear-gradient(to right, rgba(20,130,85,0.2), transparent);
}

.sphere-accent-tl {
  top: 8%;
  left: 8%;
}
.sphere-accent-tl::before {
  width: 60px;
  height: 1px;
}
.sphere-accent-tl::after {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(20,130,85,0.2), transparent);
}

.sphere-accent-br {
  bottom: 8%;
  right: 8%;
}
.sphere-accent-br::before {
  width: 60px;
  height: 1px;
  right: 0;
  background: linear-gradient(to left, rgba(20,130,85,0.2), transparent);
}
.sphere-accent-br::after {
  width: 1px;
  height: 60px;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(20,130,85,0.2), transparent);
}

.sphere-scene {
  width: 650px;
  height: 650px;
  perspective: 1400px;
  cursor: grab;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-scene:active {
  cursor: grabbing;
}

.sphere-container {
  width: 0;
  height: 0;
  position: relative;
  transform-style: preserve-3d;
}

.sphere-item {
  position: absolute;
  width: 100px;
  height: 70px;
  top: 0;
  left: 0;
  margin: -35px 0 0 -50px;
  background: var(--img) center/cover no-repeat;
  background-color: #1a1a1a;
  border-radius: 6px;
  backface-visibility: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 8px 40px rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.sphere-item:hover {
  box-shadow: 0 6px 30px rgba(20,130,85,0.6), 0 12px 50px rgba(0,0,0,0.3);
  border-color: #1ec28b;
  transform: scale(1.15);
}

/* Floor shadow */
.sphere-scene::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sphere-scene {
    width: 400px;
    height: 400px;
    perspective: 900px;
  }
  .sphere-item {
    width: 70px;
    height: 50px;
    margin: -25px 0 0 -35px;
  }
}

@media (max-width: 480px) {
  .sphere-scene {
    width: 320px;
    height: 320px;
    perspective: 700px;
  }
  .sphere-item {
    width: 55px;
    height: 40px;
    margin: -20px 0 0 -27px;
  }
}

/* =============================================
   IMAGE MASKED TEXT / PARALLAX BANNER
   ============================================= */
.image-mask-section {
  padding: 0;
  overflow: hidden;
  background: #0a1f14;
  position: relative;
}

/* Full-bleed background image with parallax */
.image-mask-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/b.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
}

/* Mobile fix: background-attachment:fixed breaks on iOS/mobile */
@media (max-width: 1024px), (hover: none) {
  .image-mask-section::before {
    background-attachment: scroll;
    background-size: cover;
    background-position: center 30%;
  }
}

.image-mask-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  gap: 12px;
}

/* Optional label above the word */
.image-mask-text .mask-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #148255;
  display: block;
}

/* Thin rule */
.image-mask-text .mask-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: #148255;
  margin: 0 auto;
}

.image-mask-text span:not(.mask-label):not(.mask-rule) {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  text-align: center;
  line-height: 1;
  /* Subtle gradient overlay on the text */
  background: linear-gradient(135deg, #ffffff 40%, rgba(20,130,85,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================================
   LATEST NEWS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.news-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.news-content {
  padding: 24px;
}

.news-tag {
  display: inline-block;
  background: rgba(20, 130, 85, 0.15);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.news-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* =============================================
   INSIGHTS & UPDATES (TABS)
   ============================================= */
.insights-tabs {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(0,0,0,0.02);
}

.tab-btn {
  flex: 1;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.02);
}

.tab-btn.active {
  color: var(--primary-light);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

.tabs-content {
  padding: 32px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}

.insight-card:hover {
  background: rgba(0,0,0,0.04);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20, 130, 85, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: 16px;
}

.insight-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.insight-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.insight-meta i {
  margin-right: 6px;
}

@media (max-width: 992px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
  .tabs-nav { flex-direction: column; }
  .tab-btn { border-bottom: 1px solid var(--border-dark); }
}

/* =============================================
   CONTACT FORM (HOMEPAGE)
   ============================================= */
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(20, 130, 85, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary-light);
}

.contact-form-side form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f8f9fb;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-home-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   SEO CONTENT SECTION
   ============================================= */
.seo-section {
  padding: 60px 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
}

.seo-content {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(20,130,85,0.15);
}

.seo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #148255, #1aad6e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.seo-content h2 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.5;
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
  border-color: rgba(20,130,85,0.25);
  box-shadow: 0 4px 20px rgba(20,130,85,0.06);
}

.seo-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(20,130,85,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.seo-card-icon i {
  color: #148255;
  font-size: 0.9rem;
}

.seo-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .seo-header {
    flex-direction: column;
    text-align: center;
  }
  .seo-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }
}

/* =============================================
   FLOATING SOCIAL ICONS BAR
   ============================================= */
.social-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.social-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: pointer;
}

.social-float a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.social-float a:active {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.social-float a .fa-facebook-f { color: #1877F2; }
.social-float a .fa-instagram { color: #E4405F; }
.social-float a .fa-x-twitter { color: #000000; }
.social-float a .fa-linkedin-in { color: #0A66C2; }
.social-float a .fa-youtube { color: #FF0000; }

@media (max-width: 768px) {
  .social-float {
    right: 10px;
    gap: 8px;
  }
  .social-float a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: var(--bg-dark-2);
  padding: 100px 0;
  overflow: hidden;
}

.faq-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--bg-white), var(--bg-dark-2));
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  padding: 60px;
}

.faq-left {
  flex: 0 0 340px;
  position: sticky;
  top: 120px;
}

.faq-big-heading {
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 800;
  line-height: 0.85;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -4px;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.faq-contact-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(20, 130, 85, 0.25);
}

.faq-contact-btn i {
  font-size: 14px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-contact-btn:hover i {
  color: #fff;
}

.faq-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(20, 130, 85, 0.3);
  box-shadow: 0 4px 20px rgba(20, 130, 85, 0.08);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(20, 130, 85, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-dark-2);
  transition: var(--transition);
  margin-top: 0;
}

.faq-icon i {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  background: var(--primary);
}

.faq-item.active .faq-icon i {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 25px;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq-wrapper {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }
  .faq-left {
    flex: none;
    position: static;
    width: 100%;
  }
  .faq-big-heading {
    font-size: 100px;
  }
  .faq-contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-wrapper {
    padding: 28px;
    border-radius: 20px;
  }
  .faq-right {
    grid-template-columns: 1fr;
  }
  .faq-big-heading {
    font-size: 72px;
    letter-spacing: -2px;
  }
  .faq-subtitle {
    font-size: 20px;
  }
  .faq-contact-buttons {
    flex-direction: column;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(20,130,85,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .back-to-top { bottom: 90px; right: 20px; width: 42px; height: 42px; }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  max-width: 52px;
}
.whatsapp-float a:hover {
  max-width: 220px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float a i {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.whatsapp-float .wa-label {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s 0.05s, transform 0.25s 0.05s;
  white-space: nowrap;
}
.whatsapp-float a:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 24px; left: 20px; }
  .whatsapp-float a { padding: 11px 14px; max-width: 48px; }
  .whatsapp-float a:hover { max-width: 48px; }
  .whatsapp-float .wa-label { display: none; }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #e8eaf0;
  padding: 18px 24px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-consent.visible { transform: translateY(0); }
.cookie-consent p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}
.cookie-consent a { color: #4ade80; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: #148255; color: #fff; }
.cookie-btn-decline { background: rgba(255,255,255,0.12); color: #e8eaf0; }
@media (max-width: 600px) {
  .cookie-consent { padding: 16px; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* =============================================
   NEWSLETTER POPUP
   ============================================= */
.newsletter-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.newsletter-popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.newsletter-popup {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.newsletter-popup-overlay.visible .newsletter-popup {
  transform: translateY(0);
}
.popup-banner {
  background: linear-gradient(135deg, #148255 0%, #0d5e3d 100%);
  padding: 36px 36px 28px;
  color: #fff;
  text-align: center;
  position: relative;
}
.popup-banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.popup-banner h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 8px; }
.popup-banner p { font-size: 0.9rem; opacity: 0.88; margin: 0; }
.popup-body { padding: 28px 36px 32px; }
.popup-body p { font-size: 0.88rem; color: #666; margin: 0 0 18px; text-align: center; }
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.popup-form input:focus { border-color: #148255; }
.popup-form button {
  padding: 13px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-form button:hover { background: #0d5e3d; }
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-no-thanks {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
}
.popup-no-thanks:hover { color: #555; }
.popup-success {
  text-align: center;
  padding: 20px 0 8px;
}
.popup-success i { font-size: 2.5rem; color: #148255; display: block; margin-bottom: 12px; }
.popup-success p { color: #333; font-weight: 600; }

/* =============================================
   PROJECT SEARCH & FILTER
   ============================================= */
.proj-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eef0f4;
}
.proj-search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.proj-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}
.proj-search-wrap input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.proj-search-wrap input:focus { border-color: #148255; }
.proj-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.proj-filter-tab {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.proj-filter-tab:hover { border-color: #148255; color: #148255; background: #f0faf6; }
.proj-filter-tab.active { background: #148255; color: #fff; border-color: #148255; }
.proj-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #888;
  display: none;
}
.proj-no-results i { font-size: 2.5rem; color: #ddd; display: block; margin-bottom: 12px; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-dark-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,130,85,0.1);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: #148255;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: #f59e0b; font-size: 0.85rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #148255, #0d5e3d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: #1a1a2e; }
.testimonial-role { font-size: 0.78rem; color: #888; margin-top: 1px; }
@media (max-width: 991px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =============================================
   CAREERS APPLY MODAL
   ============================================= */
.apply-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.apply-modal-overlay.visible { opacity: 1; pointer-events: all; }
.apply-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s;
}
.apply-modal-overlay.visible .apply-modal { transform: scale(1) translateY(0); }
.apply-modal-header {
  background: linear-gradient(135deg, #148255 0%, #0d5e3d 100%);
  padding: 28px 32px;
  color: #fff;
  border-radius: 20px 20px 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.apply-modal-header h3 { margin: 0 0 4px; font-size: 1.2rem; font-weight: 800; padding-right: 36px; }
.apply-modal-header p { margin: 0; font-size: 0.85rem; opacity: 0.85; }
.apply-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply-modal-close:hover { background: rgba(255,255,255,0.35); }
.apply-modal-body { padding: 28px 32px 32px; }
.apply-form { display: flex; flex-direction: column; gap: 16px; }
.apply-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form label { display: block; font-size: 0.82rem; font-weight: 600; color: #444; margin-bottom: 5px; }
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus { border-color: #148255; }
.apply-form textarea { resize: vertical; min-height: 80px; }
.apply-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px dashed #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.88rem;
  color: #666;
}
.apply-file-label:hover { border-color: #148255; color: #148255; }
.apply-file-label i { font-size: 1.1rem; color: #148255; }
.apply-file-label input[type="file"] { display: none; }
.apply-submit-btn {
  padding: 13px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.apply-submit-btn:hover { background: #0d5e3d; }
.apply-success {
  text-align: center;
  padding: 40px 24px;
}
.apply-success i { font-size: 3rem; color: #148255; display: block; margin-bottom: 16px; }
.apply-success h4 { font-size: 1.2rem; color: #1a1a2e; margin: 0 0 8px; }
.apply-success p { font-size: 0.88rem; color: #666; margin: 0; }
@media (max-width: 500px) {
  .apply-form-row { grid-template-columns: 1fr; }
  .apply-modal-body { padding: 22px 20px 24px; }
}

/* =============================================
   BLOG READING TIME & SHARE BUTTONS
   ============================================= */
.blog-meta-extra {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888;
}
.blog-share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.blog-share-btns span { font-size: 0.82rem; font-weight: 600; color: #666; }
.blog-share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-share-btn:hover { opacity: 0.85; }
.blog-share-btn.linkedin { background: #0077b5; color: #fff; }
.blog-share-btn.whatsapp { background: #25d366; color: #fff; }
.blog-share-btn.copy-link { background: #f3f4f6; color: #444; border: 1px solid #e2e8f0; }

/* =============================================
   404 PAGE
   ============================================= */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.not-found-inner {
  max-width: 500px;
}
.not-found-code {
  font-size: 8rem;
  font-weight: 900;
  color: #148255;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -4px;
}
.not-found-inner h2 { font-size: 1.8rem; margin: 0 0 16px; color: #1a1a2e; }
.not-found-inner p { color: #666; margin: 0 0 32px; line-height: 1.7; }
.not-found-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE LOAD PROGRESS BAR
   ============================================= */
#page-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #148255, #4ade80);
  z-index: 99999;
  width: 0%;
  transition: width 0.2s ease;
  box-shadow: 0 0 8px rgba(20,130,85,0.6);
}

/* =============================================
   SCROLL PROGRESS INDICATOR (BLOG)
   ============================================= */
#scroll-progress-blog {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #148255, #4ade80);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s linear;
}

/* =============================================
   STICKY QUOTE BUTTON (SERVICE PAGES)
   ============================================= */
.sticky-quote-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: #148255;
  color: #fff;
  padding: 18px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 10px 0 0 10px;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -3px 0 16px rgba(20,130,85,0.3);
  transition: background 0.2s, padding 0.2s;
  border: none;
}
.sticky-quote-btn:hover { background: #0d5e3d; padding: 20px 12px; }
@media (max-width: 768px) { .sticky-quote-btn { display: none; } }

/* =============================================
   GLOBAL SEARCH MODAL
   ============================================= */
.search-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.search-modal-overlay.open { opacity: 1; pointer-events: all; }
.search-modal-box {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: translateY(-16px);
  transition: transform 0.2s;
}
.search-modal-overlay.open .search-modal-box { transform: translateY(0); }
.search-modal-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1.5px solid #f0f0f0;
}
.search-modal-input-wrap i { color: #aaa; font-size: 1.1rem; flex-shrink: 0; }
.search-modal-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  color: #1a1a2e;
  background: transparent;
}
.search-modal-close {
  background: #f3f4f6;
  border: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666;
  flex-shrink: 0;
}
.search-results { max-height: 420px; overflow-y: auto; }
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.search-result-item:hover { background: #f8fffe; }
.search-result-icon {
  width: 36px; height: 36px;
  background: #e8f5ee;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #148255;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.search-result-title { font-size: 0.9rem; font-weight: 600; color: #1a1a2e; line-height: 1.4; }
.search-result-type { font-size: 0.75rem; color: #148255; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.search-empty { text-align: center; padding: 40px 20px; color: #aaa; font-size: 0.9rem; }
.search-empty i { font-size: 2rem; display: block; margin-bottom: 10px; }
.search-shortcut { font-size: 0.75rem; color: #aaa; background: #f3f4f6; padding: 3px 8px; border-radius: 5px; font-family: monospace; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 0.82rem;
  color: #888;
  flex-wrap: wrap;
}
.breadcrumb a { color: #148255; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #ccc; font-size: 0.7rem; }
.breadcrumb-current { color: #444; font-weight: 500; }

/* =============================================
   PROJECT ENQUIRY BUTTON
   ============================================= */
.proj-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f0faf6;
  color: #148255;
  border: 1.5px solid #148255;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 8px;
  text-decoration: none;
}
.proj-enquire-btn:hover { background: #148255; color: #fff; }

/* =============================================
   MAP SECTION (CONTACT)
   ============================================= */
.map-section { margin-top: 48px; }
.map-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.map-tab {
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  border: 1.5px solid #e2e8f0;
  border-bottom: none;
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.map-tab.active { background: #148255; color: #fff; border-color: #148255; }
.map-frame-wrap {
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  height: 380px;
}
.map-frame-wrap iframe { width: 100%; height: 100%; border: none; display: none; }
.map-frame-wrap iframe.active { display: block; }
@media (max-width: 600px) {
  .map-frame-wrap { height: 260px; border-radius: 0 0 12px 12px; }
}

/* =============================================
   SPECULATIVE CV SECTION (CAREERS)
   ============================================= */
.spec-cv-section { background: linear-gradient(135deg, #f0faf6 0%, #e8f5ee 100%); }
.spec-cv-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #fff;
  border: 2px dashed #148255;
  border-radius: 20px;
  padding: 48px;
}
.spec-cv-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #148255, #0d5c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}
.spec-cv-content h2 { font-size: 1.7rem; font-weight: 800; color: #1a1a2e; margin: 0 0 12px; }
.spec-cv-content p { color: #555; margin: 0 0 20px; line-height: 1.7; }
.spec-cv-perks { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }
.spec-cv-perks li { color: #333; display: flex; align-items: center; gap: 10px; }
.spec-cv-perks li i { color: #148255; flex-shrink: 0; }
@media (max-width: 600px) {
  .spec-cv-inner { flex-direction: column; padding: 28px 20px; }
  .spec-cv-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* =============================================
   TEAM LINKEDIN BADGE
   ============================================= */
.team-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #0077b5;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 600;
}
.team-linkedin-link:hover { text-decoration: underline; }
.team-linkedin-link i { font-size: 0.85rem; }

/* =============================================
   TAWK LIVE CHAT CUSTOM STYLE OVERRIDE
   ============================================= */
/* Push tawk widget above WhatsApp button on mobile */
@media (max-width: 768px) {
  #tawkchat-status-icon-container { bottom: 80px !important; }
}

/* Map offices section */
.map-offices-section { padding-top: 48px; padding-bottom: 64px; }
.section-header-map { margin-bottom: 32px; }

/* =============================================
   CONSULTATION BOOKING SECTION
   ============================================= */
.booking-section { background: linear-gradient(135deg, #f0faf6 0%, #e8f5ee 100%); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-content h2 { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin: 12px 0 16px; }
.booking-content p { color: #555; line-height: 1.7; margin-bottom: 20px; }
.booking-benefits { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.booking-benefits li { display: flex; align-items: center; gap: 10px; color: #333; font-size: 0.95rem; }
.booking-benefits li i { color: #148255; flex-shrink: 0; }
.booking-form-wrap { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 8px 40px rgba(20,130,85,0.1); }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.booking-submit { width: 100%; justify-content: center; margin-top: 4px; }
.booking-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.booking-success i { font-size: 3rem; color: #148255; }
.booking-success h3 { font-size: 1.4rem; font-weight: 800; color: #1a1a2e; }
.booking-success p { color: #555; }
.booking-success.hidden { display: none; }
@media (max-width: 768px) {
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
}
body.dark-mode .booking-section { background: var(--dm-surface); }
body.dark-mode .booking-content h2 { color: var(--dm-text); }
body.dark-mode .booking-content p, body.dark-mode .booking-benefits li { color: var(--dm-muted); }
body.dark-mode .booking-form-wrap { background: var(--dm-bg); box-shadow: none; border: 1px solid var(--dm-border); }

/* =============================================
   SKIP TO CONTENT (accessibility)
   ============================================= */
.skip-to-content {
  position: fixed;
  top: -60px;
  left: 16px;
  background: #148255;
  color: #fff;
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

/* =============================================
   COPY EMAIL BUTTON
   ============================================= */
.copy-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(20,130,85,0.1);
  color: #148255;
  border: 1px solid rgba(20,130,85,0.2);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  margin-left: 6px;
  transition: all 0.2s;
  vertical-align: middle;
}
.copy-email-btn:hover { background: #148255; color: #fff; }

/* =============================================
   WHATSAPP HOURS INDICATOR
   ============================================= */
.wa-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
}
.wa-online  { background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,0.3); animation: pulse-dot 2s infinite; }
.wa-offline { background: #e74c3c; }

/* =============================================
   BLOG TABLE OF CONTENTS
   ============================================= */
.blog-toc {
  background: #f8faf9;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #148255;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.blog-toc-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: #148255;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-toc-list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-toc-list li { font-size: 0.88rem; }
.toc-sub { padding-left: 12px; }
.toc-link { color: #555; text-decoration: none; transition: color 0.2s; }
.toc-link:hover, .toc-link.toc-active { color: #148255; font-weight: 600; }
body.dark-mode .blog-toc { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .toc-link { color: var(--dm-muted); }
body.dark-mode .toc-link.toc-active { color: #148255; }

/* =============================================
   DARK MODE
   ============================================= */
body.dark-mode {
  --dm-bg: #0f1117;
  --dm-surface: #1a1d27;
  --dm-text: #e8eaf0;
  --dm-muted: #9aa0b2;
  --dm-border: rgba(255,255,255,0.08);
  background: var(--dm-bg);
  color: var(--dm-text);
}
body.dark-mode .nav,
body.dark-mode header { background: #12151f; border-color: var(--dm-border); }
body.dark-mode .nav-link, body.dark-mode .nav-logo { color: var(--dm-text); }
body.dark-mode .footer { background: #0a0c12; }
body.dark-mode .footer-bottom { border-color: var(--dm-border); color: var(--dm-muted); }
body.dark-mode section:not([class*="section-dark"]) { background: var(--dm-bg) !important; }
body.dark-mode .proj-card,
body.dark-mode .blog-card,
body.dark-mode .service-card,
body.dark-mode .signing-card,
body.dark-mode .stat-card-item,
body.dark-mode .testimonial-card,
body.dark-mode .benefit-card { background: var(--dm-surface); color: var(--dm-text); border-color: var(--dm-border); }
body.dark-mode .proj-card h4,
body.dark-mode .blog-card-body h3 a,
body.dark-mode .proj-body h4 { color: var(--dm-text); }
body.dark-mode .proj-info-list .pil-val,
body.dark-mode .proj-info-list .pil-label,
body.dark-mode .blog-card-meta,
body.dark-mode .blog-card-date { color: var(--dm-muted); }
body.dark-mode .proj-filter-bar,
body.dark-mode .proj-filter-tabs { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .proj-filter-tab { color: var(--dm-muted); background: transparent; }
body.dark-mode .proj-filter-tab.active { background: #148255; color: #fff; }
body.dark-mode .map-tab { color: var(--dm-muted); background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .map-tab.active { background: #148255; color: #fff; }
body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
  background: var(--dm-surface); color: var(--dm-text); border-color: var(--dm-border);
}
body.dark-mode .cookie-consent { background: #1a1d27; border-color: var(--dm-border); }
body.dark-mode .spec-cv-inner { background: var(--dm-surface); border-color: #148255; }
body.dark-mode .spec-cv-content h2 { color: var(--dm-text); }
body.dark-mode .spec-cv-perks li { color: var(--dm-muted); }

/* Dark mode toggle button */
.dm-toggle {
  position: fixed;
  bottom: 160px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--dm-surface, #fff);
  border: 2px solid var(--dm-border, rgba(0,0,0,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dm-text, #1a1a2e);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 9000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dm-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* =============================================
   PRINT STYLES (project sheet)
   ============================================= */
@media print {
  .nav, .footer, .whatsapp-float, .back-to-top, .sticky-quote-btn,
  .dm-toggle, .cookie-consent, .newsletter-popup-overlay,
  .proj-filter-bar, .proj-enquire-btn, .btn-proj-toggle { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .proj-card { break-inside: avoid; border: 1px solid #ddd; margin-bottom: 20px; }
  .proj-extra-details { display: block !important; }
  .proj-body h4 { font-size: 1rem; font-weight: 700; }
  .pil-label, .pil-val { font-size: 0.85rem; }
  .proj-print-btn { display: none !important; }
}

/* Print button (project cards) */
.proj-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #718096;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}
.proj-print-btn:hover { color: #148255; border-color: #148255; }

/* =============================================
   BLOG TAG FILTER
   ============================================= */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.blog-filter-bar input {
  flex: 1;
  min-width: 180px;
  padding: 8px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
}
.blog-filter-bar input:focus { border-color: #148255; }
.blog-tag-filter {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: transparent;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #555;
  white-space: nowrap;
}
.blog-tag-filter.active { background: #148255; color: #fff; border-color: #148255; }
.blog-tag-filter:hover:not(.active) { border-color: #148255; color: #148255; }
body.dark-mode .blog-filter-bar { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .blog-filter-bar input { background: var(--dm-bg); color: var(--dm-text); border-color: var(--dm-border); }
body.dark-mode .blog-tag-filter { color: var(--dm-muted); border-color: var(--dm-border); }

/* =============================================
   TEAM MEMBER MODAL
   ============================================= */
.team-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.team-modal-overlay.open { opacity: 1; pointer-events: all; }
.team-modal {
  background: #fff; border-radius: 20px; padding: 40px;
  max-width: 500px; width: 100%;
  transform: translateY(20px); transition: transform 0.3s;
}
.team-modal-overlay.open .team-modal { transform: translateY(0); }
.team-modal-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.team-modal-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #148255; }
.team-modal-name { font-size: 1.2rem; font-weight: 800; color: #1a1a2e; }
.team-modal-role { font-size: 0.9rem; color: #148255; font-weight: 600; margin-top: 2px; }
.team-modal-desc { color: #555; line-height: 1.7; font-size: 0.95rem; }
.team-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.team-modal-close:hover { background: #e2e8f0; }
body.dark-mode .team-modal { background: var(--dm-surface); color: var(--dm-text); }
body.dark-mode .team-modal-name { color: var(--dm-text); }
body.dark-mode .team-modal-desc { color: var(--dm-muted); }
body.dark-mode .team-modal-close { background: var(--dm-bg); color: var(--dm-text); }

/* Make depthdeck slides clickable */
.depthdeck-slide { cursor: pointer; }
.depthdeck-slide:hover .team-slide-info h4 { color: #148255; }

/* =============================================
   READING TIME + RELATED POSTS (blog)
   ============================================= */
.blog-reading-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: #718096; margin-bottom: 12px;
}
.blog-reading-time i { color: #148255; }
.related-posts-section {
  border-top: 2px solid #e2e8f0; margin-top: 48px; padding-top: 36px;
}
.related-posts-section h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: #1a1a2e; }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-post-card { background: #f8faf9; border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; display: block; }
.related-post-card:hover { transform: translateY(-3px); }
.related-post-card img { width: 100%; height: 120px; object-fit: cover; }
.related-post-card-body { padding: 12px; }
.related-post-card-body h4 { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; line-height: 1.4; margin-bottom: 4px; }
.related-post-card-body span { font-size: 0.78rem; color: #718096; }
@media (max-width: 600px) { .related-posts-grid { grid-template-columns: 1fr; } }
body.dark-mode .related-posts-section { border-color: var(--dm-border); }
body.dark-mode .related-posts-section h3 { color: var(--dm-text); }
body.dark-mode .related-post-card { background: var(--dm-surface); }
body.dark-mode .related-post-card-body h4 { color: var(--dm-text); }

/* =============================================
   LIVE JOB COUNT BADGE
   ============================================= */
.live-jobs-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,130,85,0.1); color: #148255;
  font-size: 0.82rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(20,130,85,0.25);
}
.live-jobs-badge::before { content: ''; width: 7px; height: 7px; background: #148255; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }
.nav-jobs-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: #148255; color: #fff; font-size: 0.65rem; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 8px; padding: 0 4px;
  margin-left: 4px; vertical-align: middle;
}

/* ── Announcement Bar ─────────────────────────────────────────────────────── */
.ann-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 48px 10px 24px;
  font-size: 0.88rem; font-weight: 500; line-height: 1.4;
  transform: translateY(0); transition: transform 0.3s ease, opacity 0.3s ease;
}
.ann-bar--hiding { transform: translateY(-100%); opacity: 0; }
.ann-bar--info    { background: #0f766e; color: #fff; }
.ann-bar--warning { background: #b45309; color: #fff; }
.ann-bar--success { background: #15803d; color: #fff; }
.ann-bar--error   { background: #b91c1c; color: #fff; }
.ann-bar__text  { flex: 1; text-align: center; }
.ann-bar__link  { color: #fff; font-weight: 700; text-decoration: underline; margin-left: 6px; }
.ann-bar__link:hover { opacity: 0.85; }
.ann-bar__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: inherit; font-size: 1.4rem;
  cursor: pointer; line-height: 1; opacity: 0.75; padding: 0 4px;
}
.ann-bar__close:hover { opacity: 1; }
@media (max-width: 600px) {
  .ann-bar { font-size: 0.8rem; padding: 8px 40px 8px 12px; }
}

/* =============================================
   PEOPLE / LEADERS / MANAGEMENT / TEAM
   ============================================= */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.leaders-grid { grid-template-columns: repeat(3, 1fr); margin: 48px auto 0; }
.management-grid { grid-template-columns: repeat(3, 1fr); }

/* ─── Leader Card Click / Modal ─── */
.leader-clickable { cursor: pointer; }
.leader-clickable .people-card__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-clickable .people-card__overlay i {
  color: #fff;
  font-size: 1.4rem;
}
.leader-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.leader-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.leader-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 460px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.leader-modal-overlay.active .leader-modal {
  transform: translateY(0) scale(1);
}
.leader-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  pointer-events: all;
}
.leader-modal-close:hover { background: rgba(0,0,0,0.75); }
.leader-modal-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e8f5ee, #f0f4f0);
  overflow: hidden;
}
.leader-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader-modal-body {
  padding: 24px 28px 28px;
  text-align: center;
}
.leader-modal-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.leader-modal-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #148255;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.leader-modal-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

/* ─── Circular Leader Cards (3-up) ─── */
.leaders-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.leader-v2-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.leader-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.12);
}
.leader-v2-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0;
  border: 3px solid #1db876;
  box-shadow: 0 0 0 6px rgba(29,184,118,0.12);
}
.leader-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader-v2-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #148255, #1db876);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -16px auto 18px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(20,130,85,0.35);
  position: relative;
  z-index: 1;
}
.leader-v2-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #148255;
  margin: 0 0 4px;
}
.leader-v2-role {
  font-size: 0.82rem;
  color: #888;
  margin: 0 0 16px;
  font-weight: 500;
}
.leader-v2-hint {
  font-size: 0.75rem;
  color: #148255;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: opacity 0.2s;
}
.leader-v2-card.open .leader-v2-hint { opacity: 0; height: 0; overflow: hidden; margin: 0; }
.leader-v2-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
  margin-top: 12px;
  /* hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding-top 0.3s ease, margin-top 0.3s ease;
  padding-top: 0;
  margin-top: 0;
}
.leader-v2-card.open .leader-v2-desc {
  max-height: 300px;
  opacity: 1;
  padding-top: 14px;
  margin-top: 12px;
}
.leader-v2-card { cursor: pointer; }
@media (max-width: 900px) {
  .leaders-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .leaders-grid-v2 { grid-template-columns: 1fr; }
}

.people-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.section-light .people-card {
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.people-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }

.people-card__img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.people-card--leader .people-card__img-wrap { height: 340px; }
.people-card__img-placeholder {
  background: linear-gradient(135deg, #0d2e1a 0%, #1a5c36 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.people-card__initials {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: 4px;
  -webkit-user-select: none;
  user-select: none;
}
.people-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.people-card:hover .people-card__img-wrap img { transform: scale(1.04); }

.people-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,130,85,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.people-card:hover .people-card__overlay { opacity: 1; }
.people-card__cta {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #148255;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.people-card__cta:hover { background: #148255; color: #fff; }

.people-card__body {
  padding: 20px 24px 24px;
}
.people-card__body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: inherit;
}
.section-light .people-card__body h3 { color: #1a1a2e; }
.people-card__role {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #148255;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.people-card__body p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.section-light .people-card__body p { color: #666; }

/* About page explore grid */
.about-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid rgba(20, 130, 85, 0.15);
  background: var(--bg-dark);
  color: var(--text-white);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.about-explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 130, 85, 0.15);
  border-color: #148255;
}
.about-explore-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #148255, #1db876);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.about-explore-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.about-explore-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.6; flex: 1; }
.about-explore-link { font-size: 0.9rem; font-weight: 600; color: #148255; display: flex; align-items: center; gap: 6px; }
.about-explore-link i { transition: transform 0.2s; }
.about-explore-card:hover .about-explore-link i { transform: translateX(4px); }
@media (max-width: 768px) {
  .about-explore-grid { grid-template-columns: 1fr; }
}

/* ── Life at DAS grid ── */
.life-das-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}
.life-das-photo { aspect-ratio: 4/3; overflow: hidden; }
.life-das-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.life-das-photo:hover img { transform: scale(1.06); }

.life-das-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid #e8edf2;
}
.life-stat { text-align: center; }
.life-stat-num { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #148255; line-height: 1; }
.life-stat-label { display: block; font-size: 0.9rem; color: #888; margin-top: 6px; }

@media (max-width: 900px) {
  .leaders-grid { grid-template-columns: 1fr 1fr 1fr; }
  .management-grid { grid-template-columns: 1fr 1fr; }
  .life-das-grid { grid-template-columns: 1fr 1fr; }
  .life-das-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .leaders-grid, .management-grid, .people-grid { grid-template-columns: 1fr; }
  .life-das-grid { grid-template-columns: 1fr 1fr; }
  .life-das-stats { gap: 20px; flex-wrap: wrap; }
}

/* =============================================
   EXPERTISE FULL GRID (Services Page)
   ============================================= */
.expertise-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.expertise-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(20,130,85,0.18);
  border-color: rgba(20,130,85,0.45);
}

/* Card banner image */
.expertise-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.expertise-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.expertise-card:hover .expertise-card__img img {
  transform: scale(1.07);
}
.expertise-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Card body padding area */
.expertise-card__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.expertise-card__icon {
  width: 48px; height: 48px;
  background: rgba(20,130,85,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #1db876;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-white);
}
.expertise-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.expertise-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.expertise-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.expertise-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #1db876;
  border-radius: 50%;
  flex-shrink: 0;
}
.expertise-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1db876;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}
.expertise-card__link:hover { gap: 10px; }

a.expertise-card {
  text-decoration: none;
  color: inherit;
}
a.expertise-card:hover { color: inherit; }

@media (max-width: 1024px) {
  .expertise-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .expertise-full-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICES — Category header + v2 cards
   ============================================= */
.svc-cat-header {
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: center;
}
.svc-cat-header:first-of-type { margin-top: 0; }
.svc-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #148255;
  background: rgba(20,130,85,0.08);
  border: 1px solid rgba(20,130,85,0.2);
  padding: 6px 16px;
  border-radius: 30px;
}
.svc-full-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}
@media (max-width: 1200px) { .svc-full-grid { grid-template-columns: repeat(4, 1fr) !important; } }
@media (max-width: 900px)  { .svc-full-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 640px)  { .svc-full-grid { grid-template-columns: repeat(2, 1fr) !important; } }

.service-card-v2 {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /* Make anchor version behave like a block */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,130,85,0.12);
  border-color: rgba(20,130,85,0.3);
}
.service-card-v2:hover .svc2-icon {
  background: #148255;
  color: #fff;
}
.service-card-v2:hover .svc2-link {
  color: #148255;
}
.svc2-icon {
  width: 40px;
  height: 40px;
  background: rgba(20,130,85,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #148255;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.svc2-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc2-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 5px;
}
.svc2-body p {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.6;
  margin: 0 0 10px;
  flex: 1;
}
.svc2-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #148255;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card-v2:hover .svc2-link { gap: 8px; }
body.dark-mode .service-card-v2 { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .svc2-body h3 { color: var(--dm-text); }
body.dark-mode .svc2-body p { color: var(--dm-muted); }
body.dark-mode .svc-cat-label { color: #1db876; background: rgba(29,184,118,0.1); border-color: rgba(29,184,118,0.2); }

/* People / Team card — avatar placeholder */
.people-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #0f1a14;
}
.people-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #148255, #1db876);
  font-family: var(--font-display);
}
.people-avatar--1 { background: linear-gradient(135deg, #148255, #1db876); }
.people-avatar--2 { background: linear-gradient(135deg, #0d5e3d, #148255); }
.people-avatar--3 { background: linear-gradient(135deg, #1a3a2e, #1db876); }
.people-avatar--4 { background: linear-gradient(135deg, #112d22, #148255); }
.people-avatar--5 { background: linear-gradient(135deg, #0d5e3d, #1db876); }
.people-avatar--6 { background: linear-gradient(135deg, #148255, #0d9c5b); }
/* Leader avatars — deeper/darker tone to distinguish from management */
.people-avatar--leader1 { background: linear-gradient(135deg, #0a1f14, #148255); font-size: 3rem; }
.people-avatar--leader2 { background: linear-gradient(135deg, #08301e, #0d5e3d); font-size: 3rem; }

.footer-subheading-spaced { margin-top: 24px; }
.footer-legal-link { color: #148255; }

/* =============================================
   BACK BUTTON — Service / Blog detail pages
   ============================================= */
.svc-back-btn,
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-top: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.svc-back-btn:hover,
.blog-back:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.svc-back-btn i, .blog-back i { font-size: 0.8rem; }

/* Inline back button (light sections) */
.back-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #148255;
  text-decoration: none;
  padding: 8px 16px 8px 12px;
  border-radius: 30px;
  border: 1.5px solid #148255;
  margin-bottom: 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.back-btn-inline:hover { background: #148255; color: #fff; }

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.load-more-wrap {
  text-align: center;
  padding: 2.5rem 0 1rem;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: #148255;
  border: 2px solid #148255;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-load-more:hover { background: #148255; color: #fff; transform: translateY(-2px); }
.btn-load-more:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-load-more i { transition: transform 0.3s; }
.btn-load-more:hover i { transform: translateY(2px); }
.load-more-count {
  display: block;
  font-size: 0.8rem;
  color: #718096;
  margin-top: 0.75rem;
}
body.dark-mode .btn-load-more { color: #1db876; border-color: #1db876; }
body.dark-mode .btn-load-more:hover { background: #1db876; color: #0f1117; }
body.dark-mode .load-more-count { color: var(--dm-muted); }

/* =============================================
   TYPOGRAPHY HIERARCHY — Playfair Display
   ============================================= */
.section-title,
.page-hero h1,
.hero-title,
h1.display,
.display-heading {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2; }
.page-hero h1  { font-size: clamp(2rem, 5vw, 3.5rem);  font-weight: 800; line-height: 1.15; }

/* Gradient accent on key display headings */
.hero-title .gradient-word,
.section-title .gradient-word {
  background: linear-gradient(135deg, #148255 0%, #1db876 60%, #0d9c5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   MICRO-ANIMATIONS — Staggered grid reveals
   ============================================= */
/* Base: elements start invisible */
.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.revealed > *:nth-child(1)  { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2)  { transition-delay: 0.10s; }
.stagger-children.revealed > *:nth-child(3)  { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4)  { transition-delay: 0.20s; }
.stagger-children.revealed > *:nth-child(5)  { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6)  { transition-delay: 0.30s; }
.stagger-children.revealed > *:nth-child(7)  { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8)  { transition-delay: 0.40s; }
.stagger-children.revealed > *:nth-child(n+9) { transition-delay: 0.45s; }
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }

/* Pulse on primary CTAs */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: inherit;
}
.btn-primary:hover::after { transform: scaleX(1); }

/* Card lift + glow on hover */
.proj-card, .blog-card, .service-card, .signing-card, .expertise-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}

/* Image zoom */
.proj-main-img img,
.signing-img-wrap img,
.blog-card-img img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* =============================================
   MASONRY GALLERY — CSS columns approach
   ============================================= */
.masonry-grid {
  columns: 3;
  column-gap: 1.25rem;
}
.masonry-grid .masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.masonry-grid .masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,18,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-body);
}
@media (max-width: 900px)  { .masonry-grid { columns: 2; } }
@media (max-width: 560px)  { .masonry-grid { columns: 1; } }

/* =============================================
   DARK MODE — Extra polish
   ============================================= */
body.dark-mode .navbar { background: rgba(15,17,23,0.97) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
body.dark-mode .nav-links a { color: var(--dm-text); }
body.dark-mode .nav-links a:hover { color: #1db876; }
body.dark-mode .nav-dropdown-menu { background: #1a1d27; border-color: var(--dm-border); }
body.dark-mode .nav-dropdown-menu a:hover { background: rgba(20,130,85,0.12); }
body.dark-mode .page-hero { background: #0f1117 !important; }
body.dark-mode .page-hero h1 { color: var(--dm-text); }
body.dark-mode .page-hero p  { color: var(--dm-muted); }
body.dark-mode .section-title { color: var(--dm-text); }
body.dark-mode .section-description { color: var(--dm-muted); }
body.dark-mode .section-label { color: #1db876; }
body.dark-mode .signing-info h4 { color: var(--dm-text); }
body.dark-mode .signing-desc { color: var(--dm-muted); }
body.dark-mode .signing-meta { color: #1db876; }
body.dark-mode .expertise-card { background: var(--dm-surface) !important; }
body.dark-mode .people-card { background: var(--dm-surface); }
body.dark-mode .people-card h3, body.dark-mode .people-card p { color: var(--dm-text); }
body.dark-mode .contact-info-card { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .contact-form-wrap { background: var(--dm-surface); border-color: var(--dm-border); }
body.dark-mode .contact-info-card h3,
body.dark-mode .contact-info-card p { color: var(--dm-text); }
body.dark-mode .section-projects-light { background: #13161f !important; }
body.dark-mode .proj-info-list li { border-color: var(--dm-border); }
body.dark-mode #das-search-box { background: #1a1d27; }
body.dark-mode #das-search-header { border-color: var(--dm-border); }
body.dark-mode #das-search-input { color: var(--dm-text); }
body.dark-mode .das-search-item:hover,
body.dark-mode .das-search-item--active { background: rgba(20,130,85,0.12); }
body.dark-mode .das-search-item-title { color: var(--dm-text); }
body.dark-mode #das-search-footer { border-color: var(--dm-border); }
body.dark-mode #das-search-footer kbd { background: #252833; border-color: var(--dm-border); color: var(--dm-muted); }

/* =============================================
   BLOG ENHANCEMENTS — Social share + reading time
   ============================================= */
.blog-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #f5faf8;
  border-radius: 12px;
  border-left: 4px solid #148255;
}
.blog-share-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-right: 4px;
}
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  color: #fff;
}
.blog-share-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }
.blog-share-btn.share-twitter  { background: #000; }
.blog-share-btn.share-linkedin { background: #0077b5; }
.blog-share-btn.share-whatsapp { background: #25d366; }
.blog-share-btn.share-copy     { background: #718096; cursor: pointer; border: none; font-family: inherit; }
.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #718096;
}
.blog-read-time i { color: #148255; }
.blog-related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f4f0;
}
.blog-related-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .blog-related-grid { grid-template-columns: 1fr; } }
.blog-related-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,130,85,0.13); }
.blog-related-card img { width: 100%; height: 160px; object-fit: cover; }
.blog-related-card-body { padding: 1rem; flex: 1; }
.blog-related-card-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.blog-related-card-body span {
  font-size: 0.78rem;
  color: #148255;
  font-weight: 600;
}
body.dark-mode .blog-share-bar { background: var(--dm-surface); border-color: #148255; }
body.dark-mode .blog-share-label { color: var(--dm-text); }
body.dark-mode .blog-related-card { background: var(--dm-surface); }
body.dark-mode .blog-related-card-body h4 { color: var(--dm-text); }
body.dark-mode .blog-related-section { border-color: var(--dm-border); }

/* =============================================
   LOGO REVEAL LOADER
   ============================================= */
#das-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  pointer-events: auto;
}
#dld-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#dld-bg {
  position: absolute;
  inset: 0;
  background: #060d09;
}
#dld-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.45em;
  background: linear-gradient(90deg, #148255, #25d366);
  transform: scaleX(0);
  transform-origin: 0% 50%;
}
#dld-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  padding: 0 1.5em;
}
#dld-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 64rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dld-logo-base {
  position: relative;
  opacity: 0.15;
  pointer-events: none;
}
#dld-logo-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#dld-img-base,
#dld-img-top {
  width: 300px;
  max-width: 72vw;
}
#dld-img-top {
  clip-path: inset(0% 100% 0% 0%);
}
#dld-img-base img,
#dld-img-top img {
  width: 100%;
  height: auto;
  display: block;
}
#dld-text-wrap {
  position: absolute;
  bottom: 4em;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.4em;
  pointer-events: none;
}
#dld-t1,
#dld-t2 {
  position: absolute;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #dld-img-base, #dld-img-top { width: 200px; }
  #dld-t1, #dld-t2 { font-size: 0.6rem; letter-spacing: 0.2em; }
  #dld-text-wrap { bottom: 3.5em; }
  #dld-container { padding: 0 1em; }
}

/* =============================================
   AWARDS & CERTIFICATIONS STRIP
   ============================================= */
.awards-section {
  background: #0d1f17;
  padding: 64px 0;
  overflow: hidden;
}
.awards-section .section-header { text-align: center; margin-bottom: 48px; }
.awards-section .section-header h2 { color: #fff; }
.awards-section .section-label { justify-content: center; color: rgba(255,255,255,0.7); }
.awards-section .section-label-line { background: #148255; }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.award-card:hover {
  background: rgba(20,130,85,0.12);
  border-color: rgba(20,130,85,0.4);
  transform: translateY(-4px);
}
.award-icon {
  width: 52px;
  height: 52px;
  background: rgba(20,130,85,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: #25d366;
}
.award-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.award-body {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
@media (max-width: 900px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .awards-grid { grid-template-columns: 1fr; } }

/* =============================================
   COMPANY TIMELINE
   ============================================= */
/* =============================================
   TIMELINE — Redesigned
   ============================================= */
.timeline-section {
  padding: 100px 0;
  background: #07100c;
  position: relative;
  overflow: hidden;
}
.timeline-section .section-title,
.timeline-section .section-description { color: #fff; }
.timeline-section .section-label { color: #1db876; }
.timeline-section .section-header { text-align: center; margin-bottom: 72px; }

/* Background grid texture */
.tl-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,130,85,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,130,85,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Ambient glows */
.tl-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}
.tl-glow-1 {
  width: 500px; height: 500px;
  background: #148255;
  top: -100px; left: -150px;
}
.tl-glow-2 {
  width: 400px; height: 400px;
  background: #25d366;
  bottom: -100px; right: -100px;
}

/* Track */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Track background (dim) */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(20,130,85,0.18);
  transform: translateX(-50%);
}

/* Animated fill line */
.timeline-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, #148255, #25d366);
  transform: translateX(-50%);
  transition: height 0.25s ease-out;
  z-index: 1;
  box-shadow: 0 0 14px rgba(37,211,102,0.5);
}

/* Items */
.timeline-item {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
  align-items: flex-start;
}
.timeline-item:nth-child(odd)  { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

/* Cards */
.timeline-content {
  width: calc(50% - 44px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(20,130,85,0.22);
  border-radius: 16px;
  padding: 28px 30px 26px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, #148255, #25d366);
  border-radius: 0 3px 3px 0;
}
.timeline-item:nth-child(even) .timeline-content::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}
.timeline-content:hover {
  border-color: rgba(20,130,85,0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(20,130,85,0.2);
}

/* Highlight card (last milestone) */
.tl-content--highlight {
  background: rgba(20,130,85,0.08);
  border-color: rgba(37,211,102,0.35);
}

/* Icon */
.tl-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(20,130,85,0.15);
  border: 1px solid rgba(20,130,85,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #1db876;
  font-size: 0.9rem;
}

/* Year pill */
.timeline-year {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #1db876;
  background: rgba(29,184,118,0.12);
  border: 1px solid rgba(29,184,118,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.timeline-content p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* "Coming Soon" badge */
.tl-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #148255, #25d366);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

/* Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 18px;
  height: 18px;
  background: #148255;
  border-radius: 50%;
  border: 3px solid #07100c;
  box-shadow: 0 0 0 2px #148255, 0 0 12px rgba(20,130,85,0.6);
  transform: translateX(-50%);
  z-index: 2;
}
.tl-dot--active {
  background: #25d366;
  box-shadow: 0 0 0 2px #25d366, 0 0 20px rgba(37,211,102,0.7);
}

/* Dot pulse ring */
.tl-dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(20,130,85,0.4);
}
.tl-dot-ring--pulse {
  animation: tl-pulse 2s ease-out infinite;
  border-color: rgba(37,211,102,0.6);
  will-change: transform, opacity;
}
@keyframes tl-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Connector line from card to dot */
.timeline-item:nth-child(odd)  .timeline-content::after,
.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  top: 26px;
  height: 1px;
  width: 44px;
  background: linear-gradient(to right, rgba(20,130,85,0.5), rgba(20,130,85,0));
}
.timeline-item:nth-child(odd)  .timeline-content::after { right: -44px; }
.timeline-item:nth-child(even) .timeline-content::after {
  left: -44px;
  background: linear-gradient(to left, rgba(20,130,85,0.5), rgba(20,130,85,0));
}

/* Responsive */
@media (max-width: 680px) {
  .timeline::before  { left: 20px; }
  .timeline-fill     { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: column; padding-left: 52px; }
  .timeline-content  { width: 100%; }
  .timeline-content::before { left: 0; right: auto; border-radius: 0 3px 3px 0; }
  .timeline-item:nth-child(even) .timeline-content::before { left: 0; right: auto; border-radius: 0 3px 3px 0; }
  .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after { display: none; }
  .timeline-dot { left: 20px; top: 20px; }
}

/* =============================================
   FAQ ON CONTACT PAGE
   ============================================= */
.contact-faq { padding: 80px 0; background: var(--bg-dark-2); }
.contact-faq .section-label--center { justify-content: center; }
.contact-faq .section-header { text-align: center; margin-bottom: 48px; }
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.cfaq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.cfaq-item:hover { box-shadow: var(--shadow); }
.cfaq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.cfaq-q:hover { color: var(--primary); }
.cfaq-q i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; transition: transform 0.3s; }
.cfaq-item.open .cfaq-q i { transform: rotate(45deg); }
.cfaq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.cfaq-a-inner { padding: 0 20px 18px; }
.cfaq-item.open .cfaq-a { max-height: 300px; }
@media (max-width: 680px) { .contact-faq-grid { grid-template-columns: 1fr; } }

/* =============================================
   PROJECT FILTER
   ============================================= */
.proj-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.proj-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border-dark);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.proj-filter-btn:hover,
.proj-filter-btn.active {
  background: #148255;
  border-color: #148255;
  color: #fff;
}
.proj-card-wrap {
  transition: opacity 0.3s, transform 0.3s;
}
.proj-card-wrap.hidden {
  display: none;
}

/* =============================================
   ENHANCED WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  max-width: 56px;
  position: relative;
}
.whatsapp-float a::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  background: rgba(37,211,102,0.35);
  opacity: 0;
  transform: scale(0.9);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { opacity: 0.6; transform: scale(0.9); }
  70%  { opacity: 0;   transform: scale(1.35); }
  100% { opacity: 0;   transform: scale(1.35); }
}
.whatsapp-float a:hover {
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.whatsapp-float a i {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.whatsapp-float .wa-label {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s 0.05s, transform 0.25s 0.05s;
  white-space: nowrap;
}
.whatsapp-float a:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 24px; left: 20px; }
  .whatsapp-float a { padding: 12px 15px; max-width: 52px; }
  .whatsapp-float a:hover { max-width: 52px; transform: none; }
  .whatsapp-float .wa-label { display: none; }
}

/* =============================================
   GALLERY LIGHTBOX SWIPE
   ============================================= */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover { background: rgba(20,130,85,0.7); }
.lightbox-nav-prev { left: 20px; }
.lightbox-nav-next { right: 20px; }
body.dark-mode .blog-related-section h3 { color: var(--dm-text); }

/* =============================================
   UTILITY — btn-cta-group, btn-download, about helpers
   ============================================= */
.btn-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn-cta-group--top { margin-top: 28px; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #148255;
  color: #148255;
  background: transparent;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-download:hover { background: #148255; color: #fff; }
body.dark-mode .btn-download { border-color: #1db876; color: #1db876; }
body.dark-mode .btn-download:hover { background: #1db876; color: #0f1117; }

.services-grid--4col { grid-template-columns: repeat(4, 1fr); }
.service-card--center { text-align: center; }
.service-icon--center { margin: 0 auto 24px; }
.stats-section { padding: 80px 0; }

@media (max-width: 991px) {
  .services-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .services-grid--4col { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICE DETAIL BODY (svc-detail-body)
   ============================================= */
.svc-detail-body {
  max-width: 1060px;
  margin: 0 auto;
  counter-reset: svc-card;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.svc-detail-body > p:first-child {
  grid-column: 1 / -1;
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text-secondary);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(20,130,85,0.15);
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .svc-detail-body { grid-template-columns: 1fr; gap: 14px; }
}

/* Legacy: flat h3+p (no .svc-item wrapper) — keep working */
.svc-detail-body > h3 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 40px 0 12px;
  line-height: 1.4;
}
.svc-detail-body > h3::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 22px;
  background: linear-gradient(to bottom, #148255, #25d366);
  border-radius: 2px;
  margin-top: 3px;
}
.svc-detail-body > p:not(:first-child) {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text-muted);
  padding-left: 17px;
  margin-bottom: 0;
}

/* === .svc-item cards (only inside svc-detail-body) === */
.svc-detail-body .svc-item {
  counter-increment: svc-card;
  position: relative;
  background: rgba(20,130,85,0.04);
  border: 1px solid rgba(20,130,85,0.13);
  border-top: 3px solid #148255;
  border-radius: 14px;
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.svc-detail-body .svc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,130,85,0.13);
  border-color: rgba(20,130,85,0.3);
}
/* Large ghost number in top-right */
.svc-detail-body .svc-item::before {
  content: counter(svc-card, decimal-leading-zero);
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(20,130,85,0.08);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
/* Green accent top-left corner */
.svc-detail-body .svc-item::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 22px;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #25d366, transparent);
  border-radius: 0 0 4px 4px;
}
.svc-detail-body .svc-item h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 12px;
  padding-right: 36px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* Green left dash on h3 */
.svc-detail-body .svc-item h3::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #148255, #25d366);
  border-radius: 2px;
  margin-top: 2px;
}
.svc-detail-body .svc-item p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
}

/* Dark mode */
body.dark-mode .svc-detail-body > p:first-child { border-color: rgba(29,184,118,0.15); color: var(--dm-muted); }
body.dark-mode .svc-detail-body > h3 { color: var(--dm-text); }
body.dark-mode .svc-detail-body > p:not(:first-child) { color: var(--dm-muted); }
body.dark-mode .svc-detail-body .svc-item {
  background: rgba(20,130,85,0.07);
  border-color: rgba(29,184,118,0.16);
}
body.dark-mode .svc-detail-body .svc-item:hover { box-shadow: 0 12px 40px rgba(20,130,85,0.18); }
body.dark-mode .svc-detail-body .svc-item h3 { color: var(--dm-text); }
body.dark-mode .svc-detail-body .svc-item p { color: var(--dm-muted); }

/* =============================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   ============================================= */

/* Magnetic button hover effect — enhanced transition */
.btn-primary {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 130, 85, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Card hover lift with glow */
.blog-card:hover,
.news-card-sm:hover {
  box-shadow: 0 12px 40px rgba(20, 130, 85, 0.12);
}

/* Social float hover — handled in main social-float section */

/* Fade-in on scroll enhancement — staggered children */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #148255;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Smooth image zoom on card hover */
.blog-card .blog-image img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/* Button icon arrow slide on hover */
.btn-icon {
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* =============================================
   SKELETON LOADING & IMAGE BLUR-UP
   ============================================= */
@keyframes skeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  width: 80%;
}

.skeleton-text-sm {
  height: 10px;
  margin-bottom: 6px;
  width: 60%;
}

.skeleton-img {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
}

/* Blur-up image loading */
.blur-up {
  filter: blur(10px);
  transition: filter 0.5s ease;
}
.blur-up.lazyloaded {
  filter: blur(0);
}

/* Image reveal animation — subtle fade only */
img[loading="lazy"] {
  opacity: 0.01;
  transition: opacity 0.2s ease;
}
img[loading="lazy"].loaded,
img.loaded,
.team-member-card-img img,
.flip-card-front img {
  opacity: 1;
}

/* Dark mode skeleton */
body.dark-mode .skeleton {
  background: linear-gradient(90deg, #1e2a3a 25%, #2a3a4a 50%, #1e2a3a 75%);
  background-size: 200% 100%;
}

/* =============================================
   SECTION WAVE DIVIDERS
   ============================================= */
.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.section-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}
.section-divider-flip {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .section-divider svg { height: 35px; }
}

/* =============================================
   BEFORE/AFTER IMAGE COMPARISON SLIDER
   ============================================= */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 32px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.ba-before img {
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transform: translateX(-50%);
}
.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.ba-handle::before { left: -14px; }
.ba-handle::after { right: -14px; }
.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #148255;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  z-index: 4;
}
.ba-handle-circle i {
  color: #fff;
  font-size: 0.9rem;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* =============================================
   ENHANCED COMPANY TIMELINE
   ============================================= */
.timeline-enhanced {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline-enhanced::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(20,130,85,0.2);
  transform: translateX(-50%);
}
.timeline-enhanced .tl-line-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  background: linear-gradient(180deg, #148255, #1db876);
  transform: translateX(-50%);
  height: 0%;
  transition: height 0.1s linear;
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 0 40px 50px;
  box-sizing: border-box;
}
.tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.tl-dot {
  position: absolute;
  top: 4px;
  width: 44px;
  height: 44px;
  background: #0d2618;
  border: 3px solid rgba(20,130,85,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.tl-dot i {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.4s;
}
.tl-item:nth-child(odd) .tl-dot {
  right: -22px;
}
.tl-item:nth-child(even) .tl-dot {
  left: -22px;
}
.tl-item.active .tl-dot {
  border-color: #148255;
  background: #148255;
  transform: scale(1.15);
}
.tl-item.active .tl-dot i {
  color: #fff;
}
.tl-year {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1db876;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 6px;
}
.tl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.tl-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}
.tl-badge {
  display: inline-block;
  background: rgba(20,130,85,0.2);
  color: #1db876;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
}

/* Responsive — stack on mobile */
@media (max-width: 768px) {
  .timeline-enhanced::before,
  .timeline-enhanced .tl-line-fill {
    left: 20px;
  }
  .tl-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 40px 60px;
  }
  .tl-item .tl-dot {
    left: -2px !important;
    right: auto !important;
  }
}

/* Dark mode */
body.dark-mode .tl-title { color: var(--dm-text, #e2e8f0); }
body.dark-mode .tl-desc { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .tl-dot { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .tl-item.active .tl-dot { background: #148255; border-color: #148255; }
body.dark-mode .timeline-enhanced::before { background: #2d3748; }

/* =============================================
   WINNING STORY PAGES — ENHANCED
   ============================================= */
.ws-hero { position: relative; height: 520px; overflow: hidden; background: #071510; }
.ws-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.ws-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,13,9,0.15) 0%, rgba(6,13,9,0.65) 100%); }
.ws-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 0; }
.ws-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.ws-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 16px; border-radius: 40px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; background: #148255; color: #fff; margin-bottom: 16px; }
.ws-hero-title { font-size: clamp(1.45rem, 3.2vw, 2.2rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 14px; font-family: "Manrope", sans-serif; letter-spacing: -0.02em; }
.ws-hero-meta { display: flex; align-items: center; gap: 20px; color: rgba(255,255,255,0.65); font-size: 0.85rem; flex-wrap: wrap; }
.ws-hero-meta i { margin-right: 5px; color: #1db876; }
.ws-breadcrumb { background: #f8fdfb; border-bottom: 1px solid #e2e8f0; padding: 12px 0; font-size: 0.82rem; color: #718096; }
.ws-breadcrumb a { color: #148255; text-decoration: none; }

/* Body — with subtle left accent and background pattern */
.ws-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px;
  position: relative;
}
.ws-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #148255 0%, rgba(20,130,85,0.1) 100%);
  border-radius: 3px;
}

/* Lead paragraph — larger, more prominent */
.ws-lead {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 2px solid rgba(20,130,85,0.15);
  position: relative;
}
.ws-lead::first-letter {
  font-size: 3.2rem;
  font-weight: 900;
  color: #148255;
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
}

/* Stats — animated gradient cards */
.ws-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin-bottom: 52px; }
.ws-stat {
  background: #fff;
  border: 1px solid rgba(20,130,85,0.12);
  border-top: 3px solid #148255;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ws-stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #148255, #1db876, #148255);
  background-size: 200% 100%;
  animation: statShimmer 3s linear infinite;
}
@keyframes statShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ws-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(20,130,85,0.12);
}
.ws-stat-val { font-size: 1.5rem; font-weight: 900; color: #148255; line-height: 1; margin-bottom: 8px; font-family: "Manrope", sans-serif; }
.ws-stat-label { font-size: 0.72rem; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }

/* Section headers — colored left border accent */
.ws-section { margin-bottom: 48px; }
.ws-h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(20,130,85,0.06) 0%, transparent 100%);
  border-left: 4px solid #148255;
  border-radius: 0 8px 8px 0;
  border-bottom: none;
}
.ws-h2 i { color: #148255; font-size: 0.92rem; width: 28px; height: 28px; background: rgba(20,130,85,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-section p { line-height: 1.85; color: #4a5568; font-size: 0.97rem; }

/* List items — enhanced with hover */
.ws-ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ws-ul li {
  padding: 14px 16px 14px 46px;
  position: relative;
  background: #f8fdfb;
  border-left: 3px solid #148255;
  border-radius: 0 10px 10px 0;
  font-size: 0.93rem;
  color: #2d3748;
  line-height: 1.65;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ws-ul li:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(20,130,85,0.08);
}
.ws-ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 16px; top: 16px; color: #148255; font-size: 0.78rem; }

/* Stakeholders table — refined */
.ws-stakeholders {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.ws-stakeholders tr { border-bottom: 1px solid #e2e8f0; transition: background 0.2s; }
.ws-stakeholders tr:hover { background: #f8fdfb; }
.ws-stakeholders tr:last-child { border-bottom: none; }
.ws-stakeholders td { padding: 15px 20px; font-size: 0.9rem; color: #2d3748; }
.ws-st-role { background: linear-gradient(90deg, #f0faf5, #f8fdfb); font-weight: 700; color: #148255; width: 36%; border-right: 1px solid #e2e8f0; }

/* Quote — keep as-is, already looks good */
.ws-quote { margin: 48px 0; background: linear-gradient(135deg, #0d5c3a, #148255); border-radius: 18px; padding: 40px 44px; position: relative; overflow: hidden; }
.ws-quote::before { content: "\201C"; font-size: 8rem; color: rgba(255,255,255,0.08); position: absolute; top: -20px; left: 20px; line-height: 1; font-family: Georgia, serif; }
.ws-quote-text { font-size: 1.08rem; line-height: 1.85; color: rgba(255,255,255,0.92); font-style: italic; position: relative; z-index: 1; margin-bottom: 22px; }
.ws-quote-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.ws-quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-quote-avatar i { color: #fff; font-size: 1.2rem; }
.ws-quote-name { font-size: 0.92rem; font-weight: 700; color: #fff; }
.ws-quote-role { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* Gallery — enhanced grid with better hover */
.ws-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin: 36px 0; }
.ws-gal-item { border-radius: 12px; overflow: hidden; position: relative; }
.ws-gal-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.3s;
  cursor: zoom-in;
  display: block;
}
.ws-gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.ws-gal-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ws-gal-item:hover::after { opacity: 1; }

/* Share section */
.ws-share { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; margin: 44px 0; }
.ws-share-label { font-size: 0.8rem; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.08em; margin-right: 4px; }
.ws-share a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 0.9rem; color: #fff; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.ws-share a:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.ws-share .sh-li { background: #0077b5; }
.ws-share .sh-tw { background: #000; }
.ws-share .sh-wa { background: #25d366; }

/* Related wins section */
.ws-related { margin-top: 60px; padding-top: 44px; border-top: 2px solid rgba(20,130,85,0.12); }
.ws-related-title { font-size: 1.25rem; font-weight: 800; color: #1a2332; margin-bottom: 24px; font-family: "Manrope", sans-serif; }
.ws-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.ws-related-card { text-decoration: none; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; background: #fff; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s; display: block; }
.ws-related-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.ws-related-img img { width: 100%; height: 160px; object-fit: cover; }
.ws-related-body { padding: 18px; }
.ws-related-badge { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #148255; background: #e8f5ef; padding: 4px 12px; border-radius: 20px; }
.ws-related-body h4 { font-size: 0.9rem; font-weight: 700; color: #1a2332; margin: 10px 0 6px; line-height: 1.4; }
.ws-related-date { font-size: 0.75rem; color: #718096; }

/* Back button inside hero */
.ws-back-btn { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; text-decoration: none; margin-bottom: 16px; transition: color 0.2s, gap 0.2s; }
.ws-back-btn:hover { color: #fff; gap: 10px; }
.ws-back-btn i { font-size: 0.7rem; }

/* Responsive */
@media (max-width: 768px) {
  .ws-hero { height: 420px; }
  .ws-hero-inner { padding: 0 20px; }
  .ws-body { padding: 36px 20px; }
  .ws-body::before { display: none; }
  .ws-quote { padding: 28px 24px; }
  .ws-stats { grid-template-columns: repeat(2, 1fr); }
  .ws-h2 { font-size: 1.05rem; padding: 10px 14px; }
  .ws-lead::first-letter { font-size: 2.4rem; }
}

/* Scroll progress bar */
#ws-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, #148255, #1db876); z-index: 99999; transition: width 0.1s linear; }

/* =============================================
   TEAM FLIP CARDS
   ============================================= */
.flip-card {
  perspective: 1000px;
  height: 360px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}
.flip-card-front {
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.flip-card-front img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e8f5ee;
  margin-bottom: 16px;
}
.flip-card-front h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.flip-card-front p {
  font-size: 0.78rem;
  font-weight: 700;
  color: #148255;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.flip-card-back {
  background: linear-gradient(135deg, #148255, #0d5c3b);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.flip-card-back p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.flip-card-back .flip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.flip-card-back .flip-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.flip-card-back .flip-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  transition: background 0.3s;
}
.flip-card-back .flip-linkedin:hover {
  background: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .flip-card { height: 320px; }
  .flip-card-back p { font-size: 0.82rem; }
}
/* Touch device support */
@media (hover: none) {
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
}
/* Dark mode */
body.dark-mode .flip-card-front {
  background: var(--dm-card, #1a2332);
  border-color: var(--dm-border, #2d3748);
}
body.dark-mode .flip-card-front h4 { color: var(--dm-text, #e2e8f0); }

/* =============================================
   STICKY BLOG TABLE OF CONTENTS
   ============================================= */
.blog-toc {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid #e8efe8;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.blog-toc-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #148255;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-toc-title i {
  font-size: 0.75rem;
}
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-toc-list li {
  margin-bottom: 2px;
}
.blog-toc-list a {
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #718096;
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.blog-toc-list a:hover {
  color: #148255;
  background: #f0faf5;
}
.blog-toc-list a.active {
  color: #148255;
  background: #e8f5ee;
  border-left-color: #148255;
  font-weight: 600;
}
.blog-toc-list .toc-h3 a {
  padding-left: 24px;
  font-size: 0.78rem;
}
.blog-toc-progress {
  height: 3px;
  background: #e8efe8;
  border-radius: 3px;
  margin-top: 16px;
  overflow: hidden;
}
.blog-toc-progress-fill {
  height: 100%;
  background: #148255;
  width: 0%;
  transition: width 0.2s ease;
}
/* Dark mode */
body.dark-mode .blog-toc { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .blog-toc-list a { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .blog-toc-list a:hover { background: rgba(20,130,85,0.1); color: #1db876; }
body.dark-mode .blog-toc-list a.active { background: rgba(20,130,85,0.15); color: #1db876; }
body.dark-mode .blog-toc-progress { background: #2d3748; }

/* =============================================
   RELATED SERVICES ON BLOG POSTS
   ============================================= */
.blog-related-services {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, #f0faf5, #e8f5ef);
  border: 1px solid rgba(20,130,85,0.15);
  border-radius: 16px;
}
.blog-related-services h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #148255;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-related-services h4 i {
  font-size: 0.8rem;
}
.blog-rs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-rs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(20,130,85,0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #148255;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-rs-link:hover {
  background: #148255;
  color: #fff;
  border-color: #148255;
}
.blog-rs-link i {
  font-size: 0.7rem;
}
body.dark-mode .blog-related-services { background: rgba(20,130,85,0.08); border-color: rgba(20,130,85,0.2); }
body.dark-mode .blog-rs-link { background: var(--dm-card, #1a2332); border-color: #2d3748; color: #1db876; }
body.dark-mode .blog-rs-link:hover { background: #148255; color: #fff; }

/* =============================================
   TESTIMONIAL AUTO-SCROLL CAROUSEL
   ============================================= */
.testimonials-section {
  padding: 80px 0;
  overflow: hidden;
}
.testimonial-track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-slide {
  flex-shrink: 0;
  width: 380px;
}
.testimonial-card-new {
  background: #fff;
  border: 1px solid #e8efe8;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(20,130,85,0.1);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #148255, #1db876);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar i {
  color: #fff;
  font-size: 0.95rem;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
}
.testimonial-company {
  font-size: 0.78rem;
  color: #148255;
  font-weight: 600;
}
.client-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .testimonial-slide { width: 300px; }
  .testimonial-card-new { padding: 24px; }
  .client-logos-strip { gap: 4px; }
  .client-logos-strip span { font-size: 0.8rem !important; margin: 0 8px !important; }
}
/* Dark mode */
body.dark-mode .testimonial-card-new {
  background: var(--dm-card, #1a2332);
  border-color: var(--dm-border, #2d3748);
}
body.dark-mode .testimonial-text { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .testimonial-name { color: var(--dm-text, #e2e8f0); }

/* =============================================
   DARK MODE — WINNING STORY PAGES
   ============================================= */
body.dark-mode .ws-body { color: var(--dm-text, #e2e8f0); }
body.dark-mode .ws-lead { color: var(--dm-text-secondary, #a0aec0); border-color: rgba(29,184,118,0.2); }
body.dark-mode .ws-stat { background: linear-gradient(135deg, rgba(20,130,85,0.15), rgba(20,130,85,0.08)); border-color: rgba(20,130,85,0.25); }
body.dark-mode .ws-stat-val { color: #1db876; }
body.dark-mode .ws-stat-label { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .ws-h2 { color: var(--dm-text, #e2e8f0); border-color: rgba(29,184,118,0.15); }
body.dark-mode .ws-section p { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .ws-ul li { background: rgba(20,130,85,0.08); color: var(--dm-text, #e2e8f0); border-left-color: #1db876; }
body.dark-mode .ws-stakeholders { background: var(--dm-card, #1a2332); border-color: #2d3748; box-shadow: none; }
body.dark-mode .ws-stakeholders tr { border-color: #2d3748; }
body.dark-mode .ws-stakeholders td { color: var(--dm-text, #e2e8f0); }
body.dark-mode .ws-st-role { background: rgba(20,130,85,0.1); color: #1db876; border-color: #2d3748; }
body.dark-mode .ws-breadcrumb { background: var(--dm-card, #1a2332); border-color: #2d3748; color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .ws-share { border-color: #2d3748; }
body.dark-mode .ws-share-label { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .ws-related-card { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .ws-related-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
body.dark-mode .ws-related-body h4 { color: var(--dm-text, #e2e8f0); }
body.dark-mode .ws-related-date { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .ws-gal-item img:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

/* =============================================
   DARK MODE — NEWSLETTER CARDS
   ============================================= */
body.dark-mode .news-card-sm { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .news-card-sm-title { color: var(--dm-text, #e2e8f0); }
body.dark-mode .news-card-sm-date { color: var(--dm-text-secondary, #a0aec0); }

/* =============================================
   SERVICE COMPARISON TOOL
   ============================================= */
.cmp-chip {
  padding: 10px 20px;
  border: 2px solid #e2e8f0;
  background: #fff;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cmp-chip:hover {
  border-color: #148255;
  color: #148255;
}
.cmp-chip.active {
  background: #148255;
  border-color: #148255;
  color: #fff;
}
#compareTable th {
  padding: 16px 20px;
  font-size: 0.85rem;
}
#compareTable td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: #4a5568;
  border-bottom: 1px solid #f0f0f0;
}
#compareTable tr:last-child td {
  border-bottom: none;
}
#compareTable td:first-child {
  font-weight: 700;
  color: #1a1a2e;
  background: #fafbfc;
}
#compareTable .cmp-yes {
  color: #148255;
  font-weight: 700;
}
#compareTable .cmp-no {
  color: #ccc;
}
body.dark-mode .cmp-chip { background: var(--dm-card, #1a2332); border-color: #2d3748; color: var(--dm-text, #e2e8f0); }
body.dark-mode .cmp-chip.active { background: #148255; border-color: #148255; color: #fff; }
body.dark-mode #compareTable { background: var(--dm-card, #1a2332); }
body.dark-mode #compareTable td { color: var(--dm-text-secondary, #a0aec0); border-color: #2d3748; }
body.dark-mode #compareTable td:first-child { color: var(--dm-text, #e2e8f0); background: rgba(0,0,0,0.1); }

/* =============================================
   STICKY STATS COUNTER STRIP
   ============================================= */
.sticky-stats {
  position: fixed;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0d5c3b, #148255);
  padding: 10px 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.sticky-stats.visible {
  top: 65px;
}
.sticky-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.sticky-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.sticky-stat-item strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
}
.sticky-stat-item i {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .sticky-stats-inner { gap: 20px; font-size: 0.72rem; flex-wrap: wrap; justify-content: center; }
  .sticky-stat-item strong { font-size: 0.88rem; }
  .sticky-stats.visible { top: 58px; }
}
@media (max-width: 480px) {
  .sticky-stat-item:nth-child(n+3) { display: none; }
}

/* =============================================
   EXIT-INTENT POPUP
   ============================================= */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.exit-popup-overlay.show .exit-popup {
  transform: translateY(0);
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 0.2s;
}
.exit-popup-close:hover { background: #e0e0e0; }
.exit-popup-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #148255, #1db876);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.exit-popup-icon i { color: #fff; font-size: 1.5rem; }
.exit-popup h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}
.exit-popup p {
  font-size: 0.92rem;
  color: #718096;
  line-height: 1.65;
  margin-bottom: 24px;
}
.exit-popup .btn-primary {
  display: inline-flex;
  padding: 14px 32px;
  font-size: 0.95rem;
}
.exit-popup .exit-dismiss {
  display: block;
  margin-top: 12px;
  color: #999;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  background: none;
}
body.dark-mode .exit-popup { background: var(--dm-card, #1a2332); }
body.dark-mode .exit-popup h3 { color: var(--dm-text, #e2e8f0); }
body.dark-mode .exit-popup p { color: var(--dm-text-secondary, #a0aec0); }
body.dark-mode .exit-popup-close { background: #2d3748; color: var(--dm-text, #e2e8f0); }

/* Google Translate removed — using custom translation */

/* =============================================
   LANGUAGE TOGGLE & RTL SUPPORT
   ============================================= */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Manrope', sans-serif;
}
.lang-toggle:hover {
  border-color: #148255;
  color: #148255;
}
.navbar:not(.scrolled) .lang-toggle {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.navbar:not(.scrolled) .lang-toggle:hover {
  border-color: #1db876;
  color: #1db876;
}

/* RTL mode */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .nav-links { direction: ltr; }
html[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
html[dir="rtl"] .section-label { flex-direction: row-reverse; }
html[dir="rtl"] .section-label-line { margin-left: 12px; margin-right: 0; }
html[dir="rtl"] .btn-icon { transform: rotate(180deg); }
html[dir="rtl"] .btn:hover .btn-icon { transform: rotate(180deg) translateX(-4px); }
/* Social float stays on right even in RTL */
html[dir="rtl"] .ws-ul li { padding: 11px 42px 11px 14px; border-left: none; border-right: 3px solid #148255; border-radius: 8px 0 0 8px; }
html[dir="rtl"] .ws-ul li::before { left: auto; right: 14px; }
html[dir="rtl"] .ws-st-role { border-right: none; border-left: 1px solid #e2e8f0; }
html[dir="rtl"] .footer-grid { direction: rtl; }

/* Dark mode lang toggle */
body.dark-mode .lang-toggle { border-color: #2d3748; color: var(--dm-text, #e2e8f0); }
body.dark-mode .lang-toggle:hover { border-color: #1db876; color: #1db876; }

/* =============================================
   IMAGE OPTIMIZATION
   ============================================= */
img {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}
img[loading="lazy"] {
  content-visibility: auto;
}

/* =============================================
   BLOG READING FONT TOGGLE
   ============================================= */
.blog-font-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #718096;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}
.blog-font-toggle:hover {
  border-color: #148255;
  color: #148255;
}
.blog-font-toggle.active {
  border-color: #148255;
  background: #e8f5ee;
  color: #148255;
}
.blog-font-toggle i {
  font-size: 0.85rem;
}

/* Serif reading mode */
.blog-serif-mode .blog-detail-content p,
.blog-serif-mode .blog-detail-content li,
.blog-serif-mode .blog-detail-content blockquote,
.blog-serif-mode .blog-body p,
.blog-serif-mode .blog-body li {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.08rem;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

/* Dark mode */
body.dark-mode .blog-font-toggle {
  background: var(--dm-card, #1a2332);
  border-color: #2d3748;
  color: var(--dm-text-secondary, #a0aec0);
}
body.dark-mode .blog-font-toggle:hover,
body.dark-mode .blog-font-toggle.active {
  border-color: #1db876;
  color: #1db876;
  background: rgba(20,130,85,0.1);
}

/* =============================================
   IMAGE LIGHTBOX
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
  padding: 40px;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.lightbox-overlay.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: linear-gradient(90deg, #148255, #0d5c3b);
  color: #fff;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.announcement-bar.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.announcement-bar a:hover {
  color: #a7f3d0;
}
.announcement-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.announcement-bar-close:hover {
  color: #fff;
}
.announcement-bar i.fa-bullhorn {
  font-size: 0.75rem;
  color: #a7f3d0;
}
body.dark-mode .announcement-bar {
  background: linear-gradient(90deg, #0d5c3b, #071510);
}

/* =============================================
   SMOOTH PAGE TRANSITIONS
   ============================================= */
.page-transition {
  animation: pageIn 0.15s ease-out;
}
@keyframes pageIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.page-leaving {
  transition: opacity 0.1s ease;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Page preloader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 99999;
  pointer-events: none;
}
.page-loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #148255, #1db876);
  border-radius: 0 3px 3px 0;
  transition: width 0.3s ease;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e8efe8;
  padding: 10px 0;
  font-size: 0.78rem;
  color: #999;
  position: relative;
  z-index: 1;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-bar a {
  color: #148255;
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-bar a:hover {
  text-decoration: underline;
}
.breadcrumb-bar .bc-sep {
  color: #ccc;
  font-size: 0.65rem;
}
.breadcrumb-bar .bc-current {
  color: #718096;
  font-weight: 600;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dark-mode .breadcrumb-bar { background: rgba(0,0,0,0.2); border-color: #2d3748; }
body.dark-mode .breadcrumb-bar a { color: #1db876; }
body.dark-mode .breadcrumb-bar .bc-current { color: var(--dm-text-secondary, #a0aec0); }

/* =============================================
   SCROLL PROGRESS RING (BACK TO TOP)
   ============================================= */
.scroll-progress-ring {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 998;
  width: 46px;
  height: 46px;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.scroll-progress-ring.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.scroll-progress-ring svg {
  transform: rotate(-90deg);
  width: 46px;
  height: 46px;
}
.scroll-progress-ring .ring-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3;
}
.scroll-progress-ring .ring-fill {
  fill: none;
  stroke: #148255;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.15s ease;
}
.scroll-progress-ring .ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  color: #148255;
}
.scroll-progress-ring:hover .ring-center {
  background: #148255;
  color: #fff;
}
body.dark-mode .scroll-progress-ring .ring-bg { stroke: #2d3748; }
body.dark-mode .scroll-progress-ring .ring-center { background: var(--dm-card, #1a2332); color: #1db876; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
body.dark-mode .scroll-progress-ring:hover .ring-center { background: #148255; color: #fff; }

/* =============================================
   INDIVIDUAL TEAM MEMBER CARDS
   ============================================= */
.team-members-section {
  padding: 80px 0;
  background: #f5f7fa;
}
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.team-member-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.team-member-card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8f5ee, #f0faf5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-member-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.team-member-card:hover .team-member-card-img img {
  transform: scale(1.05);
}
.team-member-card-body {
  padding: 18px 20px;
}
.team-member-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
}
.team-member-card-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: #148255;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-member-card-bio {
  font-size: 0.84rem;
  color: #718096;
  line-height: 1.6;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .team-members-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-member-card-img { height: 220px; }
}
@media (max-width: 480px) {
  .team-members-grid { grid-template-columns: 1fr; }
}
/* Dark mode */
body.dark-mode .team-members-section { background: var(--dm-bg, #0f1117); }
body.dark-mode .team-member-card { background: var(--dm-card, #1a2332); }
body.dark-mode .team-member-card-name { color: var(--dm-text, #e2e8f0); }
body.dark-mode .team-member-card-bio { color: var(--dm-text-secondary, #a0aec0); }

/* =============================================
   CLIENT LOGO MARQUEE
   ============================================= */
.client-marquee {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
  position: relative;
}
.client-marquee::before,
.client-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.client-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.client-marquee-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 20px;
}
.client-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.client-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.client-marquee-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}
.client-marquee-item img:hover {
  filter: grayscale(0%) opacity(1);
}
.client-marquee-item span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #bbb;
  white-space: nowrap;
  transition: color 0.3s;
}
.client-marquee-item span:hover {
  color: #555;
}
@media (max-width: 768px) {
  .client-marquee-track { gap: 40px; }
  .client-marquee-item img { max-height: 28px; }
}
body.dark-mode .client-marquee { background: var(--dm-bg, #0f1117); border-color: #1e2535; }
body.dark-mode .client-marquee::before { background: linear-gradient(90deg, var(--dm-bg, #0f1117), transparent); }
body.dark-mode .client-marquee::after { background: linear-gradient(-90deg, var(--dm-bg, #0f1117), transparent); }
body.dark-mode .client-marquee-item img { filter: grayscale(100%) opacity(0.4) brightness(1.5); }
body.dark-mode .client-marquee-item img:hover { filter: grayscale(0%) opacity(1) brightness(1); }
body.dark-mode .client-marquee-item span { color: #555; }
body.dark-mode .client-marquee-item span:hover { color: #aaa; }

/* =============================================
   PROJECT COST ESTIMATOR
   ============================================= */
.cost-estimator {
  background: linear-gradient(135deg, #f8fdfb 0%, #e8f5ee 100%);
  border: 1px solid rgba(20,130,85,0.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.cost-est-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}
.cost-est-desc {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 28px;
}
.cost-est-field {
  margin-bottom: 20px;
}
.cost-est-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  display: block;
}
.cost-est-select,
.cost-est-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1a1a2e;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.cost-est-select:focus,
.cost-est-input:focus {
  border-color: #148255;
}
.cost-est-result {
  background: #fff;
  border: 2px solid #148255;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-top: 24px;
  display: none;
}
.cost-est-result.show {
  display: block;
}
.cost-est-range {
  font-size: 2rem;
  font-weight: 900;
  color: #148255;
  font-family: 'Manrope', sans-serif;
}
.cost-est-note {
  font-size: 0.78rem;
  color: #999;
  margin-top: 8px;
}
.cost-est-cta {
  margin-top: 16px;
}
body.dark-mode .cost-estimator { background: linear-gradient(135deg, rgba(20,130,85,0.08), rgba(20,130,85,0.03)); border-color: rgba(20,130,85,0.2); }
body.dark-mode .cost-est-title { color: var(--dm-text, #e2e8f0); }
body.dark-mode .cost-est-label { color: var(--dm-text, #e2e8f0); }
body.dark-mode .cost-est-select, body.dark-mode .cost-est-input { background: var(--dm-card, #1a2332); border-color: #2d3748; color: var(--dm-text, #e2e8f0); }
body.dark-mode .cost-est-result { background: var(--dm-card, #1a2332); }

/* =============================================
   BLOG COMMENT SYSTEM
   ============================================= */
.blog-comments {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid #e8efe8;
}
.blog-comments-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-comments-title i { color: #148255; }
.comment-form {
  background: #f8fdfb;
  border: 1px solid #e8efe8;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 32px;
}
.comment-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-form-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.comment-form-row input:focus { border-color: #148255; }
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.comment-form textarea:focus { border-color: #148255; }
.comment-form button {
  padding: 10px 24px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.comment-form button:hover { background: #0d5c3b; }
.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item {
  padding: 16px;
  background: #fff;
  border: 1px solid #e8efe8;
  border-radius: 12px;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.comment-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #148255, #1db876);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.comment-author { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }
.comment-date { font-size: 0.72rem; color: #999; }
.comment-text { font-size: 0.88rem; line-height: 1.65; color: #4a5568; }
.comment-count { font-size: 0.85rem; color: #999; font-weight: 400; }
body.dark-mode .blog-comments-title { color: var(--dm-text, #e2e8f0); }
body.dark-mode .comment-form { background: rgba(20,130,85,0.05); border-color: #2d3748; }
body.dark-mode .comment-form input, body.dark-mode .comment-form textarea { background: var(--dm-card, #1a2332); border-color: #2d3748; color: var(--dm-text, #e2e8f0); }
body.dark-mode .comment-item { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .comment-author { color: var(--dm-text, #e2e8f0); }
body.dark-mode .comment-text { color: var(--dm-text-secondary, #a0aec0); }

/* =============================================
   FAQ CHATBOT
   ============================================= */
.chatbot-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #148255;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(20,130,85,0.35);
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(20,130,85,0.4); }
.chatbot-window {
  position: fixed;
  bottom: 150px;
  right: 28px;
  width: 360px;
  max-height: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  z-index: 998;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: #148255;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header h4 { font-size: 0.9rem; font-weight: 700; margin: 0; }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; }
.chatbot-close:hover { color: #fff; }
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.5;
}
.chat-bot { background: #f0faf5; color: #2d3748; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-user { background: #148255; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chatbot-options {
  padding: 12px 16px;
  border-top: 1px solid #e8efe8;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chatbot-opt {
  padding: 6px 12px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s;
}
.chatbot-opt:hover { border-color: #148255; color: #148255; background: #f0faf5; }
@media (max-width: 480px) {
  .chatbot-window { right: 10px; left: 10px; width: auto; bottom: 130px; }
}
body.dark-mode .chatbot-window { background: var(--dm-card, #1a2332); }
body.dark-mode .chat-bot { background: rgba(20,130,85,0.1); color: var(--dm-text, #e2e8f0); }
body.dark-mode .chatbot-options { border-color: #2d3748; }
body.dark-mode .chatbot-opt { background: var(--dm-card, #1a2332); border-color: #2d3748; color: var(--dm-text-secondary, #a0aec0); }

/* =============================================
   LIVE VISITOR COUNTER
   ============================================= */
.visitor-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(20,130,85,0.08);
  border: 1px solid rgba(20,130,85,0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #148255;
}
.visitor-dot {
  width: 8px;
  height: 8px;
  background: #148255;
  border-radius: 50%;
  animation: visitorPulse 1.5s ease-in-out infinite;
}
@keyframes visitorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   APPLICATION STATUS TRACKER
   ============================================= */
.app-tracker {
  background: #fff;
  border: 1px solid #e8efe8;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}
.app-tracker-input {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.app-tracker-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.app-tracker-input input:focus { border-color: #148255; }
.app-tracker-input button {
  padding: 12px 20px;
  background: #148255;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.app-tracker-input button:hover { background: #0d5c3b; }
.app-tracker-result {
  display: none;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.app-tracker-result.show { display: block; }
.app-tracker-result.found { background: #e8f5ee; border: 1px solid rgba(20,130,85,0.2); }
.app-tracker-result.not-found { background: #fef2f2; border: 1px solid rgba(239,68,68,0.2); }
.app-status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
}
.app-status-badge.new { background: #dbeafe; color: #2563eb; }
.app-status-badge.review { background: #fef3c7; color: #d97706; }
.app-status-badge.interview { background: #e8f5ee; color: #148255; }
.app-status-badge.offered { background: #148255; color: #fff; }
.app-status-badge.rejected { background: #fee2e2; color: #dc2626; }
body.dark-mode .app-tracker { background: var(--dm-card, #1a2332); border-color: #2d3748; }
body.dark-mode .app-tracker-input input { background: var(--dm-bg, #0f1117); border-color: #2d3748; color: var(--dm-text, #e2e8f0); }
