/* ═══════════════════════════════════════════════
   VBJMA Brand Override — Light Theme
   Primary:    #00761d  (green)
   Gold:       #db9904  (gold)
   Dark text:  #1A1A1A
   Background: #F8F6F1  (cream)
═══════════════════════════════════════════════ */

:root {
  --primary:    #00761d !important;
  --primary-2:  #db9904 !important;
  --black:      #F8F6F1 !important;   /* Jayden uses --black as bg → flip to cream */
  --white:      #1A1A1A !important;   /* Jayden uses --white as text → flip to dark */
  --green:      #00761d;
  --gold:       #db9904;
  --cream:      #F8F6F1;
}

/* ── position: relative needed for orb pseudo-elements; NO z-index to avoid
   creating stacking contexts that would trap the fixed background watermark ── */
.main-content { position: relative; }

/* ── Body / Wrapper / Global bg ─────────────── */
/* Keep the page itself cream, but leave the layout transparent
   so the background video can show through behind the content. */
body {
  background-color: #F8F6F1 !important;
  color: #1A1A1A !important;
}

#wrapper,
.wrapper-content,
.main-content,
.section-hero,
.section-experiences,
.section-about,
.section-services,
.section-tech-stack,
.section-testimonial,
.section-partners,
.section-process,
.section-awards,
.section-pricing,
.section-faqs,
.section-contact,
.tf-footer {
  background-color: transparent !important;
  color: #1A1A1A !important;
}

/* ── Background video ── */
.vbjma-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.24;
  mix-blend-mode: normal;
  display: block !important;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* ── Global text color resets ───────────────── */
body,
button,
input,
select,
textarea,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, span, div, li, a,
.text-display-2,
.text-body-1,
.text-body-2,
.text-body-3,
.sub-heading {
  color: #1A1A1A;
}

a { color: #1A1A1A; }
a:hover { color: #00761d; }

/* ── Gradient & glow (subtle on light bg) ────── */
:root {
  --gradient1: radial-gradient(50% 50% at 50% 50%, rgba(0,118,29,0.15) 0%, transparent 100%) !important;
  --gradient2: linear-gradient(144.12deg, #00761d 14.68%, #005a16 81.68%) !important;
  --gradient3: linear-gradient(136.55deg, #00761d 5.49%, #005a16 100%) !important;
  --gradient4: linear-gradient(213.44deg, #e8f5e9 43.78%, #c8e6c9 124.39%) !important;
  --gradient5: linear-gradient(150deg, #e8f5e9 29.69%, #00761d 51.45%, #005a16 82.71%) !important;
  --gradient6: linear-gradient(125.1deg, #e8f5e9 28.16%, #c8e6c9 120.37%) !important;
}

/* ═══════════════════════════════════════════════
   DYNAMIC BACKGROUND — animated orbs, mesh & rings
═══════════════════════════════════════════════ */

/* Fine dot-grid — two overlapping grids for a cross-hatch depth feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    radial-gradient(circle, rgba(0,118,29,0.075) 1px, transparent 1px),
    radial-gradient(circle, rgba(219,153,4,0.04) 1px, transparent 1px);
  background-size: 32px 32px, 80px 80px;
  background-position: 0 0, 16px 16px;
  opacity: 0.75;
}

/* Hero-specific orb — large centred glow */
.icon-gradient {
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,118,29,0.13) 0%, transparent 100%) !important;
  animation: vbjma-orb-pulse 8s ease-in-out infinite !important;
}

/* Gradient bg blobs between sections */
.box-gradient1,
.box-gradient1.img_bg-1,
.box-gradient1.img_bg-2 {
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,118,29,0.10) 0%, transparent 100%) !important;
  animation: vbjma-orb-pulse 10s ease-in-out infinite !important;
}
.box-gradient1.img_bg-2 {
  background: radial-gradient(50% 50% at 50% 50%, rgba(219,153,4,0.09) 0%, transparent 100%) !important;
  animation-delay: 4s !important;
}

/* ── Hero headline word highlight ── */
.vbjma-hl {
  display: inline;
  background-image: linear-gradient(120deg, rgba(0,118,29,0.20) 0%, rgba(0,118,29,0.20) 100%);
  background-repeat: no-repeat;
  background-position: left 0.08em;
  background-size: 0% 90%;
  border-radius: 5px;
  padding: 0 3px;
  animation: vbjma-word-hl 9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes vbjma-word-hl {
  0%   { background-size: 0% 90%;   color: inherit; }
  5%   { background-size: 103% 90%; color: #00761d; }
  24%  { background-size: 103% 90%; color: #00761d; }
  32%  { background-size: 0% 90%;   color: inherit; }
  100% { background-size: 0% 90%;   color: inherit; }
}

/* Keyframes */
@keyframes vbjma-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-20px, 40px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes vbjma-orb-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.12); }
  100% { opacity: 0.7; transform: scale(1); }
}

/* ── Ambient orbs ── */

/* Top-right green orb */
.vbjma-orb-tr {
  position: fixed;
  top: -160px; right: -120px;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,118,29,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
  animation: vbjma-orb-float 22s ease-in-out infinite;
  animation-delay: -7s;
}

/* Mid-right gold orb */
.vbjma-orb-mr {
  position: fixed;
  top: 38%; right: -140px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,153,4,0.11) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
  animation: vbjma-orb-float 24s ease-in-out infinite reverse;
  animation-delay: -12s;
}

/* Bottom-left green orb */
.vbjma-orb-bl {
  position: fixed;
  bottom: -180px; left: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,118,29,0.10) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
  animation: vbjma-orb-float 28s ease-in-out infinite;
  animation-delay: -4s;
}

/* Top-left gold orb */
.vbjma-orb-tl {
  position: fixed;
  top: 25%; left: -160px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,153,4,0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
  animation: vbjma-orb-float 32s ease-in-out infinite reverse;
  animation-delay: -18s;
}

/* ── Spinning geometric rings ── */
.vbjma-ring {
  display: none;
}

/* Ring 1 — top-right, large green, slow spin */
.vbjma-ring-1 {
  top: 8%; right: 4%;
  width: 340px; height: 340px;
  border: 1px solid rgba(0,118,29,0.07);
  animation: vbjma-ring-spin 55s linear infinite;
}
/* inner ring */
.vbjma-ring-1::before {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,118,29,0.05);
}
/* orbiting dot */
.vbjma-ring-1::after {
  content: '';
  position: absolute;
  top: 50%; left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,118,29,0.30) 0%, rgba(0,118,29,0) 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 8px 2px rgba(0,118,29,0.18);
}

/* Ring 2 — bottom-left, medium gold, reverse spin */
.vbjma-ring-2 {
  bottom: 12%; left: 2%;
  width: 260px; height: 260px;
  border: 1px solid rgba(219,153,4,0.09);
  animation: vbjma-ring-spin 42s linear infinite reverse;
  animation-delay: -8s;
}
.vbjma-ring-2::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(219,153,4,0.06);
}
.vbjma-ring-2::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,153,4,0.35) 0%, rgba(219,153,4,0) 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 8px 2px rgba(219,153,4,0.20);
}

/* Ring 3 — centre-stage large, very faint, ultra-slow */
.vbjma-ring-3 {
  top: 50%; left: 50%;
  width: 720px; height: 720px;
  border: 1px solid rgba(0,118,29,0.03);
  animation: vbjma-ring-3-spin 110s linear infinite;
}
.vbjma-ring-3::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0,118,29,0.025);
}
.vbjma-ring-3::after {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,118,29,0.22) 0%, rgba(0,118,29,0) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 10px 3px rgba(0,118,29,0.12);
}

@keyframes vbjma-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes vbjma-ring-3-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Shared button shimmer sweep ── */
@keyframes vbjma-btn-shimmer {
  0%   { left: -75%; }
  100% { left: 130%; }
}


/* ── Sidebar header logo ────────────────────── */
.vbjma-sidebar-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}

/* ── Left Sidebar ───────────────────────────── */
.left-sidebar {
  background: #fff !important;
  border-right: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 2px 0 16px rgba(0,0,0,0.05) !important;
}

.left-sidebar .heading {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.left-sidebar .infor h6 { color: #1A1A1A !important; }
.left-sidebar .infor .address { color: #666 !important; }

.left-sidebar .box-status .dot {
  background: #00761d !important;
  box-shadow: 0 0 0 4px rgba(0,118,29,0.15) !important;
}
.left-sidebar .box-status .text-body-1 { color: #555 !important; }
.left-sidebar .box-status .number { color: #00761d !important; }

.left-sidebar .social-links li a {
  color: #555 !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.left-sidebar .social-links li a:hover {
  color: #00761d !important;
  border-color: #00761d !important;
}

.left-sidebar .bot-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 18px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 2px 14px rgba(0,118,29,0.30) !important;
  transition: box-shadow 0.3s ease, transform 0.15s ease !important;
  text-decoration: none !important;
}
.left-sidebar .bot-button::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.20) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
.left-sidebar .bot-button:hover {
  background: linear-gradient(135deg, #00761d 0%, #003d10 100%) !important;
  box-shadow: 0 4px 22px rgba(0,118,29,0.45) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}
.left-sidebar .bot-button:hover::after {
  animation: vbjma-btn-shimmer 0.6s ease forwards;
}
.left-sidebar .bot-button:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: 0 1px 6px rgba(0,118,29,0.20) !important;
}
.left-sidebar .bot-button .icon {
  font-size: 18px;
  opacity: 0.9;
  transition: transform 0.25s ease, color 0.25s ease;
}
.left-sidebar .bot-button:hover .icon {
  transform: translate(2px, -2px);
  color: #db9904 !important;
}

/* ── Right Nav ──────────────────────────────── */
.right-nav {
  background: #fff !important;
  border-left: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: -2px 0 16px rgba(0,0,0,0.05) !important;
}
.right-nav li a { color: #888 !important; }
.right-nav li a.active,
.right-nav li a:hover { color: #00761d !important; }
.right-nav li a .tooltip {
  background: #1A1A1A !important;
  color: #F8F6F1 !important;
}

/* ── tf-btn-menu (hamburger) ────────────────── */
.tf-btn-menu {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  border-radius: 10px !important;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.15s ease !important;
  cursor: pointer;
}
.tf-btn-menu:hover {
  border-color: rgba(0,118,29,0.35) !important;
  box-shadow: 0 4px 20px rgba(0,118,29,0.18) !important;
  transform: scale(1.04) !important;
}
.tf-btn-menu:active {
  transform: scale(0.97) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10) !important;
}
.tf-btn-menu img { filter: invert(1) brightness(0.3) !important; }

/* ── Slide-out Sidebar Menu ─────────────────── */
/* z-index: 300 ensures the menu panel shows above the fixed mobile header (z-index: 200) */
.tf-sidebar-menu {
  z-index: 300 !important;
}
.tf-sidebar-menu .overlay { background: rgba(0,0,0,0.4) !important; }
.tf-sidebar-menu .sidebar-menu-inner {
  background: #fff !important;
  border-right: 1px solid rgba(0,0,0,0.08) !important;
}
.sidebar-heading .heading { color: #1A1A1A !important; }
.close-canvas { color: #1A1A1A !important; }
.sidebar-nav li a { color: #555 !important; }
.sidebar-nav li a i { color: #888 !important; }
.sidebar-nav li a:hover,
.sidebar-nav li a.active { color: #00761d !important; }
.sidebar-nav li a:hover i,
.sidebar-nav li a.active i { color: #00761d !important; }
.sidebar-social .heading { color: #1A1A1A !important; }

/* ── dot-before labels ──────────────────────── */
.dot-before::before { background: #00761d !important; }
.dot-before { color: #555 !important; }

/* ── type-tags / badges ─────────────────────── */
.type-tags {
  background: rgba(0,118,29,0.08) !important;
  border: 1px solid rgba(0,118,29,0.2) !important;
  color: #00761d !important;
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.section-hero {
  position: relative;
  background: rgba(248,246,241,0.82) !important;
}

.section-hero .tf-container {
  position: relative;
  z-index: 1;
}

#wrapper {
  position: relative;
}

.section-hero .infor { color: #888 !important; }
.section-hero .subtitle { color: #555 !important; }
.section-hero .title { color: #1A1A1A !important; }
.section-hero .text { color: #555 !important; }

.section-hero .list-tags a {
  position: relative;
  overflow: hidden;
  color: #00761d !important;
  border: 1.5px solid rgba(0,118,29,0.30) !important;
  border-radius: 99px !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  transition: color 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, transform 0.15s ease !important;
  text-decoration: none !important;
}
.section-hero .list-tags a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #00761d;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
}
.section-hero .list-tags a:hover {
  color: #fff !important;
  border-color: #00761d !important;
  box-shadow: 0 2px 12px rgba(0,118,29,0.25) !important;
  transform: translateY(-1px) !important;
}
.section-hero .list-tags a:hover::before {
  transform: scaleX(1);
}
.section-hero .list-tags a:active {
  transform: translateY(0) scale(0.98) !important;
}

.section-hero .indicators-title { color: #888 !important; }
.section-hero .wg-counter .odometer,
.section-hero .wg-counter .sub-odo { color: #db9904 !important; }

/* ─────────────────────────────────────────────
   EXPERIENCES / ABOUT SECTION
───────────────────────────────────────────── */
.section-experiences { background: #F8F6F1 !important; }
.section-experiences .subtitle { color: #555 !important; }
.section-experiences .desc { color: #1A1A1A !important; }
.section-experiences .text-color-change { color: #1A1A1A !important; }

.section-experiences .experiences-wrap .item {
  border-top-color: rgba(0,0,0,0.1) !important;
}
.section-experiences .experiences-wrap .item .text { color: #888 !important; }
.section-experiences .experiences-wrap .item .title { color: #1A1A1A !important; }
.section-experiences .experiences-wrap .item:hover .title { color: #00761d !important; }

/* ─────────────────────────────────────────────
   SECTION-ABOUT — Mission redesign
───────────────────────────────────────────── */
.section-about { background: #F8F6F1 !important; }
.section-about .heading .title { color: #1A1A1A !important; }
.section-about .text-color-change { color: #1A1A1A !important; }
.section-about .text { color: #555 !important; }

/* ── Universal eyebrow badge ── */
.vbjma-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  background: rgba(0,118,29,0.07);
  border: 1px solid rgba(0,118,29,0.16);
  border-radius: 99px;
  margin-bottom: 28px;
}
.vbjma-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00761d;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,118,29,0.18);
  animation: vbjma-orb-pulse 3s ease-in-out infinite;
}
.vbjma-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00761d !important;
}

/* ── Heading ── */
.vbjma-mission-title {
  font-size: clamp(38px, 5vw, 58px) !important;
  line-height: 1.08 !important;
  color: #1a1a1a !important;
  margin-bottom: 0 !important;
  letter-spacing: -0.01em !important;
}

/* ── "Ensuring Justice" highlight ── */
.vbjma-mission-hl {
  color: #00761d;
}

/* ── Divider between heading and body ── */
.vbjma-mission-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 24px;
  color: rgba(0,118,29,0.50);
}
.vbjma-mission-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,118,29,0.25), rgba(0,118,29,0.06));
}
.vbjma-mission-divider:has(.vbjma-mission-divider-line:last-child) .vbjma-mission-divider-line:last-child {
  background: linear-gradient(90deg, rgba(0,118,29,0.06), rgba(0,118,29,0.25));
}
.vbjma-mission-divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,118,29,0.20);
  background: rgba(0,118,29,0.06);
  flex-shrink: 0;
  color: #00761d;
}

/* ── Body text ── */
.vbjma-mission-body {
  font-size: 15px !important;
  line-height: 1.82 !important;
  color: #6b6b6b !important;
  max-width: 620px;
  padding-left: 18px;
  border-left: 3px solid rgba(0,118,29,0.18);
}

.box-playground { border: 1px solid rgba(0,0,0,0.08) !important; background: #F8F6F1 !important; border-radius: 12px !important; }
.box-playground .top { border-bottom-color: rgba(0,0,0,0.08) !important; }
.box-playground .instagram-tag { color: #1A1A1A !important; }
.box-playground .nav-sw { color: #555 !important; }
.box-playground .nav-sw:hover { color: #00761d !important; }

/* ─────────────────────────────────────────────
   SERVICES / PROCESS ACCORDION
───────────────────────────────────────────── */
.section-services { background: #F8F6F1 !important; }
.section-services-inner .subtitle { color: #555 !important; }

.services-wrap .item {
  border-top-color: rgba(0,0,0,0.1) !important;
}
.services-wrap .item .heading .icon { color: #00761d !important; }
.services-wrap .item .heading .title { color: #1A1A1A !important; }
.services-wrap .item:hover .heading .title,
.services-wrap .item.active .heading .title { color: #00761d !important; }
.services-wrap .item .list-text .text { color: #555 !important; }
.services-wrap .item .list-text .text::before { background: rgba(0,0,0,0.2) !important; }

.more-infor { border-top-color: rgba(0,0,0,0.1) !important; }
.more-infor .worldwide { color: #555 !important; }
.more-infor .worldwide i { color: #888 !important; }
.more-infor .worldwide span { color: #00761d !important; }
.more-infor .link { color: #db9904 !important; }
.more-infor .link:hover { color: #00761d !important; }
.more-infor .link i { color: inherit !important; }

/* ─────────────────────────────────────────────
   TECH STACK (Impact Cards)
───────────────────────────────────────────── */
.section-tech-stack { background: #F8F6F1 !important; }
.section-tech-stack .heading { color: #1A1A1A !important; }

.tech-stack-item {
  background: #F8F6F1 !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
}
.tech-stack-item .title { color: #db9904 !important; }
.tech-stack-item .text-body-1 { color: #555 !important; }

.swiper-pagination-bullet { background: rgba(0,0,0,0.2) !important; }
.swiper-pagination-bullet-active { background: #00761d !important; }

/* ─────────────────────────────────────────────
   TESTIMONIAL / ADVISORY COUNCIL
───────────────────────────────────────────── */
.section-testimonial { background: #F8F6F1 !important; }
.section-testimonial-inner .subtitle { color: #555 !important; }
.testimonial-wrap { border-top-color: rgba(0,0,0,0.1) !important; }
.section-testimonial-inner .text { color: #1A1A1A !important; }

.customer-info .content .name { color: #1A1A1A !important; }
.customer-info .content .info { color: #888 !important; }

.box-nav.style-2 .nav-sw { color: #1A1A1A !important; border-color: rgba(0,0,0,0.15) !important; }
.box-nav.style-2 .nav-sw:hover { color: #00761d !important; border-color: #00761d !important; }
.box-nav.style-2 .swiper-pagination { color: #888 !important; }

/* ─────────────────────────────────────────────
   AWARDS / IMPACT STATS
───────────────────────────────────────────── */
.section-awards { background: #F8F6F1 !important; }
.section-awards .heading { color: #1A1A1A !important; }

.award-item { border-top-color: rgba(0,0,0,0.1) !important; }
.award-item .number { color: #00761d !important; }
.award-item .title { color: #1A1A1A !important; }
.award-item:hover .title { color: #00761d !important; }
.award-item .time { color: #888 !important; }

/* ─────────────────────────────────────────────
   FAQs
───────────────────────────────────────────── */
.section-faqs { background: #F8F6F1 !important; }
.section-faqs .heading { color: #1A1A1A !important; }

.section-faqs .accordion-wrap .item {
  border-top-color: rgba(0,0,0,0.1) !important;
}
.section-faqs .accordion-wrap .item .accordion-head { color: #1A1A1A !important; }
.section-faqs .accordion-wrap .item.active .accordion-head { color: #00761d !important; }
.section-faqs .accordion-wrap .item:not(.collapsed) .accordion-head { color: #00761d !important; }
.section-faqs .accordion-wrap .item:hover .accordion-head { color: #00761d !important; }

.section-faqs .accordion-wrap .item .icon { border-color: rgba(0,0,0,0.2) !important; color: #1A1A1A !important; }
.section-faqs .accordion-wrap .item.active .icon { background: #00761d !important; border-color: #00761d !important; color: #fff !important; }
.section-faqs .accordion-wrap .item .icon::before,
.section-faqs .accordion-wrap .item .icon::after { background-color: #1A1A1A !important; }
.section-faqs .accordion-wrap .item.active .icon::before,
.section-faqs .accordion-wrap .item.active .icon::after { background-color: #fff !important; }
.section-faqs .accordion-wrap .item:not(.collapsed) .icon {
  background: #00761d !important;
  border-color: #00761d !important;
  color: #fff !important;
}
.section-faqs .accordion-wrap .item:not(.collapsed) .icon::before,
.section-faqs .accordion-wrap .item:not(.collapsed) .icon::after { background-color: #fff !important; }

.section-faqs .accordion-wrap .item p { color: #555 !important; }

.ask-me { border-top-color: rgba(0,0,0,0.1) !important; }
.ask-me .text { color: #888 !important; }
.ask-me .link { color: #00761d !important; }
.ask-me .link:hover { color: #db9904 !important; }

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.section-contact { background: #F8F6F1 !important; }
.section-contact-inner .heading { color: #1A1A1A !important; }

form fieldset label { color: #555 !important; }

form textarea,
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=url],
form input[type=search],
form input[type=number],
form input[type=date],
form input[type=time],
form input[type=password] {
  color: #1A1A1A !important;
  border-bottom-color: rgba(0,0,0,0.2) !important;
}
form textarea::placeholder,
form input::placeholder { color: rgba(26,26,26,0.35) !important; }
form textarea:focus,
form input:focus { border-color: #00761d !important; }

.form-contact .pricing-list .item {
  color: #555 !important;
  border-color: rgba(0,0,0,0.15) !important;
}
.form-contact .pricing-list .item:hover,
.form-contact .pricing-list .item.active {
  color: #00761d !important;
  border-color: #00761d !important;
  background: rgba(0,118,29,0.05) !important;
}

.form-contact .bot-btn button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,118,29,0.28) !important;
  transition: box-shadow 0.3s ease, transform 0.15s ease !important;
}
.form-contact .bot-btn button::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.20) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
.form-contact .bot-btn button span { color: #fff !important; }
.form-contact .bot-btn button .icon {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease !important;
  flex-shrink: 0;
}
.form-contact .bot-btn button:hover {
  box-shadow: 0 6px 28px rgba(0,118,29,0.45) !important;
  transform: translateY(-1px) !important;
}
.form-contact .bot-btn button:hover::after {
  animation: vbjma-btn-shimmer 0.6s ease forwards;
}
.form-contact .bot-btn button:hover .icon { background: #db9904 !important; }
.form-contact .bot-btn button:active {
  transform: translateY(1px) scale(0.99) !important;
  box-shadow: 0 2px 8px rgba(0,118,29,0.20) !important;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.tf-footer { background: #F8F6F1 !important; }
.tf-footer .cta .text-display-2 { color: #1A1A1A !important; }
.tf-footer .cta:hover .text-display-2 { color: #00761d !important; }
.tf-footer .cta .dot { background: #db9904 !important; }
.tf-footer .coppyright { color: #888 !important; }
.tf-footer .map { opacity: 0.08 !important; filter: invert(1) !important; }

/* Banner marquee text */
.banner-text { color: rgba(26,26,26,0.06) !important; }
.dot-circle { background: #db9904 !important; }

/* ─────────────────────────────────────────────
   SELECTED WORKS (banner slider)
───────────────────────────────────────────── */
.section-selected-works { background: #F8F6F1 !important; }
.works-item { border-color: rgba(0,0,0,0.08) !important; }
.works-item .content { border-top-color: rgba(0,0,0,0.08) !important; }
.works-item .content .infor .sub { color: #888 !important; }
.works-item .content .infor .title a { color: #1A1A1A !important; }
.works-item .content .infor .title a:hover { color: #00761d !important; }
.works-item .content .infor .date { color: #888 !important; }
.works-item .btn-links { border-color: rgba(0,0,0,0.12) !important; color: #1A1A1A !important; }
.works-item .btn-links:hover { background: #00761d !important; color: #fff !important; border-color: #00761d !important; }

/* ─────────────────────────────────────────────
   SOCIAL LINKS (global)
───────────────────────────────────────────── */
.social-links li a {
  color: #555 !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.social-links li a:hover {
  color: #00761d !important;
  border-color: #00761d !important;
}

/* ─────────────────────────────────────────────
   PROCESS ITEMS (slider cards)
───────────────────────────────────────────── */
.process-item {
  background: #fff !important;
  border-color: rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
}
.process-item .step { color: #00761d !important; }
.process-item .title { color: #1A1A1A !important; }
.process-item .text { color: #555 !important; }

/* ─────────────────────────────────────────────
   NAV SWIPER ARROWS
───────────────────────────────────────────── */
.nav-sw { color: #1A1A1A !important; border-color: rgba(0,0,0,0.15) !important; }
.nav-sw:hover { color: #00761d !important; border-color: #00761d !important; }
.nav-sw.swiper-button-disabled { opacity: 0.25 !important; }

/* ─────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar { background: #e8e4dd !important; width: 6px; }
::-webkit-scrollbar-thumb { background: #00761d !important; border-radius: 4px; }

/* ─────────────────────────────────────────────
   SELECTION
───────────────────────────────────────────── */
::selection { background: rgba(0,118,29,0.2); color: #1A1A1A; }

/* ─────────────────────────────────────────────
   SETTING COLOR PANEL
───────────────────────────────────────────── */
.tf-setting-color .inner { background: #fff !important; }
.tf-setting-color .inner h2,
.tf-setting-color .inner h6 { color: #1A1A1A !important; }

/* ─────────────────────────────────────────────
   HERO — Indicator stat cards (rgb(17,17,17) bg)
───────────────────────────────────────────── */
.indicators-item {
  background: #fff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 16px !important;
}
.indicators-item .indicators-title { color: #888 !important; }
.indicators-item .odometer,
.indicators-item .sub-odo { color: #db9904 !important; }

/* ─────────────────────────────────────────────
   PROCESS / SERVICES — inner container (#111)
───────────────────────────────────────────── */
.section-services-inner {
  background-color: #fff !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 20px !important;
}

/* ─────────────────────────────────────────────
   TECH STACK cards (rgb(17,17,17) bg)
───────────────────────────────────────────── */
.tech-stack-item {
  background: #fff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 16px !important;
}

/* ─────────────────────────────────────────────
   ADVISORY / TESTIMONIAL inner (rgb(26,26,26) bg)
───────────────────────────────────────────── */
.section-testimonial-inner {
  background-color: #fff !important;
  background: #fff !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 20px !important;
}

/* ─────────────────────────────────────────────
   CONTACT FORM inner (rgba(26,26,26,0.8) bg)
───────────────────────────────────────────── */
.section-contact-inner {
  background: #fff !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 20px !important;
}

/* ─────────────────────────────────────────────
   CUSTOM QUOTE bg (rgb(17,17,17))
───────────────────────────────────────────── */
.custom-quote {
  background: #F8F6F1 !important;
  box-shadow: none !important;
  color: #1A1A1A !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 16px !important;
}
.custom-quote:hover { color: #00761d !important; border-color: #00761d !important; }

/* ─────────────────────────────────────────────
   PROCESS ITEMS (rgb(17,17,17) bg)
───────────────────────────────────────────── */
.process-item {
  background: #fff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 16px !important;
}
.process-item .image { background: #F8F6F1 !important; }

/* ─────────────────────────────────────────────
   GSAP text-color-change — force dark text
   (Jayden's JS animates this to white, override)
───────────────────────────────────────────── */
.text-color-change,
.text-color-change span { color: #1A1A1A !important; }

/* ─────────────────────────────────────────────
   MISC — kill any remaining dark fills
───────────────────────────────────────────── */
.bg-color1,
.bg-1f1f1f { background: #F8F6F1 !important; }

/* About section inline swiper slide cards */
.section-about .swiper-slide > div {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}

/* ═══════════════════════════════════════════════
   PRIMARY COLOR ACCENTS — green & gold
═══════════════════════════════════════════════ */

/* ── Hero stat indicator cards — green top border ── */
.indicators-item {
  border-top: 3px solid #00761d !important;
}
.indicators-item.type-1 {
  border-top: 3px solid #db9904 !important;
}

/* ── About pillar items — green left accent bar ── */
.section-experiences .experiences-wrap .item {
  padding-left: 16px !important;
  border-left: 3px solid transparent !important;
  transition: border-color 0.3s ease !important;
}
.section-experiences .experiences-wrap .item:hover {
  border-left-color: #00761d !important;
}
/* Alternate pillar items with gold accent */
.section-experiences .experiences-wrap .item:nth-child(2):hover {
  border-left-color: #db9904 !important;
}

/* ── Tech stack / Approach cards — colored top border ── */
.tech-stack-item {
  border-top: 3px solid #00761d !important;
  background: #fff !important;
}
.swiper-slide:nth-child(even) .tech-stack-item {
  border-top-color: #db9904 !important;
}
.tech-stack-item .title {
  color: #00761d !important;
}
/* Icon area: subtle green pill bg */
.tech-stack-item .image {
  background: rgba(0,118,29,0.06) !important;
  border-radius: 12px !important;
  padding: 10px !important;
}

/* ── Impact slider cards (section-about) — gold top rule ── */
.section-about .swiper-slide > div {
  border-top: 3px solid #db9904 !important;
}

/* ── Case Review Process accordion — green left border on active ── */
.section-services-inner {
  background-color: #fff !important;
}
.services-wrap .item.active {
  border-left: 3px solid #00761d !important;
  padding-left: 12px !important;
}
.services-wrap .item {
  border-left: 3px solid transparent !important;
  padding-left: 12px !important;
  transition: border-color 0.3s ease !important;
}
.services-wrap .item:hover {
  border-left-color: rgba(0,118,29,0.3) !important;
}

/* Process section — calmer hierarchy and cleaner card layout */
.section-services .section-services-inner {
  padding: 42px 40px !important;
}

.section-services .services-wrap {
  display: grid;
  gap: 18px;
}

.section-services .services-wrap .item {
  padding: 18px 18px 18px 20px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-left: 4px solid transparent !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.72) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
}

.section-services .services-wrap .item.active {
  border-left-color: #00761d !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,250,246,0.98) 100%) !important;
  box-shadow: 0 12px 30px rgba(0,118,29,0.08) !important;
}

.section-services .services-wrap .item:nth-child(even).active {
  border-left-color: #db9904 !important;
  box-shadow: 0 12px 30px rgba(219,153,4,0.08) !important;
}

.section-services .services-wrap .heading {
  align-items: flex-start !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}

.section-services .services-wrap .heading .icon {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0,118,29,0.18) !important;
}

.section-services .services-wrap .item:nth-child(even) .heading .icon {
  background: linear-gradient(135deg, #db9904 0%, #b37b00 100%) !important;
  box-shadow: 0 10px 24px rgba(219,153,4,0.18) !important;
}

.section-services .services-wrap .heading .title {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  font-size: clamp(34px, 5.4vw, 72px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
}

.section-services .services-wrap .heading .title .split-text {
  flex: 1;
}

.section-services .vbjma-step-num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(0,118,29,0.08) !important;
  border: 1px solid rgba(0,118,29,0.16) !important;
  color: #00761d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.section-services .services-wrap .item:nth-child(even) .vbjma-step-num {
  background: rgba(219,153,4,0.10) !important;
  border-color: rgba(219,153,4,0.22) !important;
  color: #9a6a00 !important;
}

.section-services .services-wrap .list-text {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  padding-left: 74px !important;
  display: grid !important;
  gap: 10px !important;
}

.section-services .services-wrap .list-text .text {
  position: relative;
  padding-left: 18px !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: #555 !important;
}

.section-services .services-wrap .list-text .text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,118,29,0.55) !important;
}

.section-services .services-wrap .item:nth-child(even) .list-text .text::before {
  background: rgba(219,153,4,0.58) !important;
}

.section-services .more-infor {
  margin-top: 22px !important;
  padding-top: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.section-services .more-infor .worldwide {
  font-size: 15px !important;
}

@media (max-width: 991px) {
  .section-services .section-services-inner {
    padding: 28px 18px !important;
  }

  .section-services .services-wrap {
    gap: 14px !important;
  }

  .section-services .services-wrap .item {
    padding: 16px 14px 16px 16px !important;
    border-radius: 16px !important;
  }

  .section-services .services-wrap .heading {
    gap: 12px !important;
  }

  .section-services .services-wrap .heading .icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
    font-size: 18px !important;
  }

  .section-services .services-wrap .heading .title {
    font-size: clamp(22px, 9vw, 44px) !important;
    line-height: 1.02 !important;
    gap: 10px !important;
  }

  .section-services .vbjma-step-num {
    min-width: 34px !important;
    height: 34px !important;
    font-size: 12px !important;
    padding: 0 9px !important;
  }

  .section-services .services-wrap .list-text {
    margin-top: 14px !important;
    padding-left: 0 !important;
    gap: 8px !important;
  }

  .section-services .services-wrap .list-text .text {
    padding-left: 16px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .section-services .more-infor {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .section-services .more-infor .worldwide,
  .section-services .more-infor .vbjma-process-cta {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
/* Service accordion icon circle — green bg */
.services-wrap .item .heading .icon {
  background: rgba(0,118,29,0.08) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.services-wrap .item.active .heading .icon {
  background: #00761d !important;
  color: #fff !important;
}

/* ── Advisory section — white card with gold quote accent ── */
.section-testimonial-inner {
  background: #fff !important;
  border-top: 4px solid #db9904 !important;
}
.section-testimonial-inner .text::before {
  content: '"';
  display: block;
  font-size: 64px;
  color: rgba(219,153,4,0.18);
  line-height: 0.8;
  margin-bottom: 8px;
}

/* ── Impact Stats (awards) — gold number highlight ── */
.award-item .number {
  color: #db9904 !important;
  font-weight: 700 !important;
}
.award-item {
  border-left: 3px solid transparent !important;
  padding-left: 8px !important;
  transition: border-color 0.25s ease !important;
}
.award-item:hover {
  border-left-color: #00761d !important;
}

/* ── FAQ accordion — gold left accent on active item ── */
.section-faqs .accordion-wrap .item.active {
  border-left: 3px solid #00761d !important;
  padding-left: 10px !important;
}
.section-faqs .accordion-wrap .item:not(.collapsed) {
  border-left: 3px solid #00761d !important;
  padding-left: 10px !important;
}
.section-faqs .accordion-wrap .item {
  border-left: 3px solid transparent !important;
  padding-left: 10px !important;
  transition: border-color 0.25s ease !important;
}

/* ── Contact form inner — green top accent ── */
.section-contact-inner {
  background: #fff !important;
  border-top: 4px solid #00761d !important;
}

/* ── Process items (slider cards) — alternating green/gold top border ── */
.process-item {
  border-top: 3px solid #00761d !important;
  background: #fff !important;
}
.swiper-slide:nth-child(even) .process-item {
  border-top-color: #db9904 !important;
}

/* ── Section headings — gold dot on subtitle ── */
.dot-before::before {
  background: #00761d !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
}

/* ── Left sidebar: gold tagline accent strip ── */
.left-sidebar .heading {
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  background: #fff !important;
}

/* ═══════════════════════════════════════════════
   FOUNDER CARD — sidebar photo card (premium)
═══════════════════════════════════════════════ */

/* Card shell — premium frame */
.vbjma-founder-card {
  margin: 16px 0 8px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219,153,4,0.20);
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.80),
    0 0 0 5px rgba(219,153,4,0.12),
    0 12px 40px rgba(0,0,0,0.12),
    0 40px 80px rgba(0,0,0,0.07);
  position: relative;
}

/* Gold–green gradient accent bar at top of card */
.vbjma-founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00761d 0%, #db9904 55%, #00761d 100%);
  z-index: 10;
  border-radius: 22px 22px 0 0;
}

/* Corner bracket — top-right */
.vbjma-founder-card::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-top: 2px solid rgba(219,153,4,0.45);
  border-right: 2px solid rgba(219,153,4,0.45);
  border-radius: 0 6px 0 0;
  z-index: 10;
  pointer-events: none;
}

.vbjma-founder-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7 / 8;
  background: linear-gradient(160deg, #00761d 0%, #005a16 55%, #db9904 100%);
  border-radius: 0;
}

.vbjma-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  position: relative;
  z-index: 2;
}

/* Fallback icon */
.vbjma-founder-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.vbjma-founder-photo-fallback .icon {
  font-size: 72px;
  color: rgba(255,255,255,0.25);
}
.vbjma-founder-photo img[src]:not([src=""]) ~ .vbjma-founder-photo-fallback {
  display: none;
}

/* Cinematic bottom gradient */
.vbjma-founder-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(0,10,4,0.88) 0%,
    rgba(0,30,10,0.45) 55%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Name overlay */
.vbjma-founder-name-overlay {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  z-index: 4;
  font-family: 'Halimun', 'Georgia', serif;
  font-size: 20px;
  font-style: normal;
  color: rgba(255,255,255,0.97);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.5);
}

/* Meta row below photo */
.vbjma-founder-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 12px;
  background: linear-gradient(to bottom, rgba(0,118,29,0.03) 0%, #fff 60%);
  border-top: 1px solid rgba(0,0,0,0.055);
}

.vbjma-founder-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00761d;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Small decorative lines flanking FOUNDER label */
.vbjma-founder-title::before,
.vbjma-founder-title::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,118,29,0.45));
}
.vbjma-founder-title::after {
  background: linear-gradient(90deg, rgba(0,118,29,0.45), transparent);
}

.vbjma-founder-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.vbjma-founder-socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.13);
  color: #555 !important;
  font-size: 16px;
  transition: all 0.22s ease;
}
.vbjma-founder-socials li a:hover {
  color: #00761d !important;
  border-color: #00761d !important;
  background: rgba(0,118,29,0.07);
}

.vbjma-founder-website {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   CHANGE 1 — SIDEBAR REFINEMENTS
═══════════════════════════════════════════════ */

/* ── Sidebar overall layout ── */
.left-sidebar {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 420px !important;
  max-width: 420px !important;
  padding: 20px 18px !important;
  left: 64px !important;  /* shifted 16px right from default 48px */
}

/* Logo — centred above card */
.vbjma-heading-logo-only {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 48px !important;
  padding-left: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 8px !important;
}
.vbjma-heading-logo-only .vbjma-sidebar-logo {
  height: 56px !important;
  width: auto !important;
  max-width: 230px !important;
  object-fit: contain !important;
}

/* Founder card — bigger */
.vbjma-founder-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 !important;
}

/* Photo — taller portrait */
.vbjma-founder-photo {
  flex: 1;
  border-radius: 0 !important;
  aspect-ratio: 4 / 5 !important;
  min-height: 320px;
}

/* Name on one line */
.vbjma-founder-name-overlay {
  font-size: 28px !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  bottom: 18px !important;
  left: 20px !important;
}

/* Meta row */
.vbjma-founder-meta {
  align-items: center !important;
  padding: 14px 12px 14px !important;
  gap: 10px !important;
}

/* FOUNDER label */
.vbjma-founder-title {
  font-size: 13px !important;
  letter-spacing: 0.22em !important;
  color: #00761d !important;
}

/* Social icons */
.vbjma-founder-socials li a {
  width: 40px !important;
  height: 40px !important;
  font-size: 17px !important;
  background: rgba(0,118,29,0.07) !important;
  border: 1.5px solid rgba(0,118,29,0.22) !important;
  color: #00761d !important;
}
.vbjma-founder-socials li a:hover {
  background: #00761d !important;
  border-color: #00761d !important;
  color: #fff !important;
}
.vbjma-founder-socials li a[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}
.vbjma-founder-socials li a .icon,
.vbjma-founder-socials li a i {
  color: inherit !important;
}

/* Website */
.vbjma-founder-website {
  font-size: 11.5px !important;
  color: #aaa !important;
}

/* ═══════════════════════════════════════════════
   CHANGE 2 — HERO CTA BUTTONS
═══════════════════════════════════════════════ */

.vbjma-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Primary: solid green gradient */
.vbjma-cta-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0,118,29,0.35) !important;
  transition: box-shadow 0.3s ease, transform 0.15s ease !important;
}
.vbjma-cta-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.vbjma-cta-primary:hover {
  box-shadow: 0 6px 28px rgba(0,118,29,0.50) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.vbjma-cta-primary:hover::after { animation: vbjma-btn-shimmer 0.6s ease forwards; }
.vbjma-cta-primary:active { transform: translateY(1px) scale(0.99) !important; }
.vbjma-cta-primary .icon {
  font-size: 16px;
  opacity: 0.9;
  transition: transform 0.2s ease;
}
.vbjma-cta-primary:hover .icon { transform: translate(2px, -2px); }

/* Secondary: outlined white/green */
.vbjma-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px !important;
  background: transparent !important;
  color: #00761d !important;
  border: 2px solid rgba(0,118,29,0.40) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.15s ease !important;
}
.vbjma-cta-secondary:hover {
  background: rgba(0,118,29,0.07) !important;
  border-color: #00761d !important;
  color: #00761d !important;
  transform: translateY(-2px) !important;
}
.vbjma-cta-secondary:active { transform: translateY(0) !important; }

/* ═══════════════════════════════════════════════
   CHANGE 3 — IMPACT CARDS WITH IMAGES
═══════════════════════════════════════════════ */

/* ── Impact area: 16:9 image cards ── */

/* Constrain slide width — shows multiple cards in slider */
.slider-playground .swiper-slide {
  width: 300px !important;
}

.vbjma-impact-card {
  width: 300px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.vbjma-impact-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* 16:9 image — 300px wide × 169px tall */
.vbjma-impact-img {
  width: 100%;
  height: 169px;
  overflow: hidden;
  background: #f5f4f0;
  flex-shrink: 0;
}
.vbjma-impact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vbjma-impact-card:hover .vbjma-impact-img img {
  transform: scale(1.05);
}

/* Card body below image */
.vbjma-impact-body {
  padding: 16px 18px 20px;
  border-top: 3px solid #db9904;
  flex: 1;
}
.vbjma-impact-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 5px;
  line-height: 1.2;
}
.vbjma-impact-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CHANGE 4 — PROCESS ACCORDION STEP NUMBERS
═══════════════════════════════════════════════ */

/* Step number — superscript style, not overlapping */
.vbjma-step-num {
  display: inline-block;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #999 !important;
  letter-spacing: 0.08em !important;
  vertical-align: super !important;
  margin-left: 6px !important;
  line-height: 1 !important;
}

/* Better "Submit a Case" link in process footer */
.vbjma-process-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(0,118,29,0.25) !important;
  transition: box-shadow 0.3s ease, transform 0.15s ease !important;
}
.vbjma-process-cta:hover {
  box-shadow: 0 4px 18px rgba(0,118,29,0.45) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}
.vbjma-process-cta .icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}
.vbjma-process-cta:hover .icon { transform: translate(2px, -2px); }

/* Accordion click animation — smooth expand */
.accordion-collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.services-wrap .item .heading {
  transition: background 0.2s ease !important;
}
.services-wrap .item.active .heading {
  background: rgba(0,118,29,0.03) !important;
  border-radius: 6px !important;
}

/* ═══════════════════════════════════════════════
   CHANGE 5 — OUR APPROACH CARDS REDESIGN v2
═══════════════════════════════════════════════ */

/* Swiper slide spacing */
.slider-tech-stack .swiper-slide {
  padding-right: 20px !important;
}
.slider-tech-stack .swiper-slide:last-child {
  padding-right: 0 !important;
}

/* Card base */
.vbjma-approach-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 32px 28px 24px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-top: none !important;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03) !important;
  transition: box-shadow 0.4s cubic-bezier(0.25,0.8,0.25,1),
              transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
              border-color 0.35s ease !important;
  gap: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Top accent bar that scales in on hover / active */
.vbjma-approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00761d 0%, #4caf50 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
.vbjma-approach-card:hover::before,
.swiper-slide-active .vbjma-approach-card::before {
  transform: scaleX(1);
}

.vbjma-approach-card:hover {
  box-shadow: 0 20px 56px rgba(0,118,29,0.13), 0 4px 14px rgba(0,0,0,0.07) !important;
  transform: translateY(-8px) !important;
  border-color: rgba(0,118,29,0.12) !important;
}

/* Ghost step number */
.vbjma-card-bg-number {
  position: absolute;
  top: -8px;
  right: 18px;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,118,29,0.045);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
  letter-spacing: -4px;
}
.vbjma-approach-card:hover .vbjma-card-bg-number {
  color: rgba(0,118,29,0.08);
}

/* Icon */
.vbjma-approach-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,118,29,0.28);
  transition: transform 0.38s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.38s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.vbjma-approach-card:hover .vbjma-approach-icon {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 10px 30px rgba(0,118,29,0.38);
}

/* Title */
.vbjma-approach-card .title {
  font-size: 28px !important;
  color: #1a1a1a !important;
  margin-bottom: 10px !important;
  line-height: 1.25 !important;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease !important;
}
.vbjma-approach-card:hover .title {
  color: #00761d !important;
}

/* Description */
.vbjma-approach-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Divider line */
.vbjma-approach-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Footer row */
.vbjma-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Tag badge */
.vbjma-approach-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(0,118,29,0.07);
  border: 1px solid rgba(0,118,29,0.15);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #00761d;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.vbjma-approach-card:hover .vbjma-approach-tag {
  background: rgba(0,118,29,0.13);
  border-color: rgba(0,118,29,0.28);
}

/* Arrow button */
.vbjma-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,118,29,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00761d;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.25,0.8,0.25,1), color 0.3s ease;
}
.vbjma-approach-card:hover .vbjma-card-arrow {
  background: #00761d;
  border-color: #00761d;
  color: #fff;
  transform: translateX(4px);
}

/* Shine sweep */
.vbjma-card-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.55) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.25,0.8,0.25,1);
  pointer-events: none;
  z-index: 0;
}
.vbjma-approach-card:hover .vbjma-card-shine {
  left: 160%;
}

/* Progress bar styling */
.pagination-tech-stack.swiper-pagination-progressbar {
  background: rgba(0,118,29,0.10) !important;
  height: 3px !important;
  border-radius: 3px !important;
  bottom: 0 !important;
  top: auto !important;
}
.pagination-tech-stack.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, #00761d, #4caf50) !important;
  border-radius: 3px !important;
}

/* ═══════════════════════════════════════════════
   CHANGE 7 — IMPACT STATS REDESIGN
═══════════════════════════════════════════════ */

/* ── Our Impact — 2×2 card grid ── */
.vbjma-impact-list {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  margin-top: 28px !important;
}

.vbjma-impact-list .award-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 24px 22px 20px !important;
  background: #fff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-top: none !important;
  border-left: none !important;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05) !important;
  transition: box-shadow 0.3s ease, transform 0.22s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Coloured top accent stripe */
.vbjma-impact-list .award-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #00761d;
  border-radius: 16px 16px 0 0;
}
.vbjma-impact-list .award-item:nth-child(2)::before,
.vbjma-impact-list .award-item:nth-child(4)::before {
  background: #db9904;
}

.vbjma-impact-list .award-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.11) !important;
  transform: translateY(-3px) !important;
  border-left: none !important;
}

/* Icon — solid pill */
.vbjma-award-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.vbjma-award-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.vbjma-icon-green {
  background: rgba(0,118,29,0.12);
  color: #00761d;
}
.vbjma-icon-gold {
  background: rgba(219,153,4,0.14);
  color: #b07a00;
}

/* Title */
.vbjma-impact-list .award-item .title {
  flex: 1;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
  margin: 0 0 18px !important;
  line-height: 1.35 !important;
}
.vbjma-impact-list .award-item:hover .title { color: #00761d !important; }

/* Status badges */
.vbjma-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
}
.vbjma-badge-green {
  background: rgba(0,118,29,0.10);
  color: #005a16;
  border: 1.5px solid rgba(0,118,29,0.22);
}
.vbjma-badge-gold {
  background: rgba(219,153,4,0.10);
  color: #8a5f00;
  border: 1.5px solid rgba(219,153,4,0.28);
}
.vbjma-badge-neutral {
  background: rgba(0,0,0,0.05);
  color: #444;
  border: 1.5px solid rgba(0,0,0,0.14);
}

/* ═══════════════════════════════════════════════
   CHANGE 8 — FOOTER MARQUEE CTA REDESIGN
═══════════════════════════════════════════════ */

.vbjma-footer-cta {
  display: block !important;
  text-decoration: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.vbjma-footer-cta::after { display: none !important; }

.vbjma-footer-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(120deg, #00761d 0%, #005a16 40%, #009624 70%, #00761d 100%);
  background-size: 250% 100%;
  animation: vbjma-cta-gradient 5s ease infinite, vbjma-cta-glow 3s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(0,118,29,0.35);
  transition: transform 0.2s ease;
  padding: 28px 28px 28px 40px;
}

/* Continuous shimmer sweep */
.vbjma-footer-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  transform: skewX(-15deg);
  animation: vbjma-cta-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.vbjma-footer-cta-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vbjma-footer-cta:hover .vbjma-footer-cta-inner {
  transform: translateY(-3px);
  box-shadow: 0 10px 44px rgba(0,118,29,0.55);
}

@keyframes vbjma-cta-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes vbjma-cta-glow {
  0%   { box-shadow: 0 4px 24px rgba(0,118,29,0.35); }
  50%  { box-shadow: 0 4px 36px rgba(0,118,29,0.55), 0 0 60px rgba(0,118,29,0.15); }
  100% { box-shadow: 0 4px 24px rgba(0,118,29,0.35); }
}
@keyframes vbjma-cta-shimmer {
  0%   { left: -80%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* Marquee text: white on green */
.vbjma-footer-cta .infiniteslide_wrap {
  flex: 1;
  padding: 24px 0 !important;
}
.vbjma-footer-cta .text-display-2 {
  color: #fff !important;
  font-size: clamp(28px, 4vw, 56px) !important;
}
.vbjma-marquee-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.45) !important;
  display: inline-block !important;
}

/* Arrow badge */
.vbjma-footer-cta-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}
.vbjma-footer-cta:hover .vbjma-footer-cta-arrow {
  background: #db9904;
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════
   PRIMARY CTA — .tf-btn (all primary buttons)
═══════════════════════════════════════════════ */

.tf-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px !important;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,118,29,0.25) !important;
  transition: box-shadow 0.3s ease, transform 0.15s ease !important;
  text-decoration: none !important;
}

/* Shimmer sweep layer */
.tf-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.tf-btn:hover {
  box-shadow: 0 4px 24px rgba(0,118,29,0.40),
              0 0 0 2px rgba(0,118,29,0.15) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.tf-btn:hover::after {
  animation: vbjma-btn-shimmer 0.6s ease forwards;
}

.tf-btn:active {
  transform: translateY(1px) scale(0.99) !important;
  box-shadow: 0 1px 6px rgba(0,118,29,0.25) !important;
}

/* Icon circle inside tf-btn */
.tf-btn .icon {
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50% !important;
  transition: background 0.3s ease !important;
  flex-shrink: 0;
}

.tf-btn:hover .icon {
  background: #db9904 !important;
}

/* ═══════════════════════════════════════════════
   FOOTER MARQUEE CTA — typographic hover treatment
═══════════════════════════════════════════════ */

.tf-footer .cta {
  display: block;
  position: relative;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

/* Gradient underline sweeps left→right on hover */
.tf-footer .cta::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00761d, #db9904);
  transition: width 0.5s ease;
}

.tf-footer .cta:hover::after {
  width: 100%;
}

.tf-footer .cta:hover .text-display-2 {
  color: #00761d !important;
}

.tf-footer .cta:hover .dot {
  background: #db9904 !important;
  box-shadow: 0 0 8px rgba(219,153,4,0.5) !important;
}

/* ═══════════════════════════════════════════════
   BUG FIXES — 2026-03-11
═══════════════════════════════════════════════ */

/* Fix 1: Hero CTA buttons — layout, spacing, text colour */
.vbjma-hero-cta {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

/* Primary CTA — solid green */
.vbjma-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #00761d 0%, #005a16 100%);
  color: #fff !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 18px rgba(0,118,29,0.30);
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.vbjma-cta-primary *,
.vbjma-cta-primary span,
.vbjma-cta-primary i,
.vbjma-cta-primary .icon {
  color: #fff !important;
}
.vbjma-cta-primary:hover {
  color: #fff !important;
  box-shadow: 0 6px 28px rgba(0,118,29,0.45);
  transform: translateY(-2px);
}
.vbjma-cta-primary:hover * { color: #fff !important; }
.vbjma-cta-primary:active { transform: translateY(1px); }

/* Secondary CTA — outlined */
.vbjma-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #1A1A1A !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 10px;
  border: 2px solid rgba(0,118,29,0.45);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.vbjma-cta-secondary:hover {
  background: #00761d;
  color: #fff !important;
  border-color: #00761d;
  transform: translateY(-2px);
}
.vbjma-cta-secondary:hover * { color: #fff !important; }


/* Fix 3: Process step numbers — prevent GSAP SplitText displacement */
.accordion-item .vbjma-step-num {
  position: static !important;
  display: inline !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #999 !important;
  vertical-align: super !important;
  margin-right: 6px !important;
  /* cancel any float/absolute that GSAP might inject */
  float: none !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

/* Fix 4: Process CTA — white text on dark green */
.vbjma-process-cta,
.vbjma-process-cta span,
.vbjma-process-cta .icon,
.vbjma-process-cta i,
a.vbjma-process-cta,
a.vbjma-process-cta:visited {
  color: #fff !important;
}
.vbjma-process-cta:hover,
.vbjma-process-cta:hover span,
.vbjma-process-cta:hover .icon {
  color: #f0f0f0 !important;
}

/* Fix 5: Impact stats — stronger icon circles + badge contrast */
.vbjma-award-icon.vbjma-icon-green {
  background: rgba(0, 118, 29, 0.22) !important;
  border: 1.5px solid rgba(0, 118, 29, 0.35) !important;
  color: #00761d !important;
}
.vbjma-award-icon.vbjma-icon-gold {
  background: rgba(219, 153, 4, 0.22) !important;
  border: 1.5px solid rgba(219, 153, 4, 0.35) !important;
  color: #b07a00 !important;
}
.vbjma-award-icon.vbjma-icon-neutral {
  background: rgba(80, 80, 80, 0.12) !important;
  border: 1.5px solid rgba(80, 80, 80, 0.25) !important;
  color: #555 !important;
}
.vbjma-badge-green {
  background: rgba(0, 118, 29, 0.14) !important;
  color: #005a16 !important;
  border: 1px solid rgba(0, 118, 29, 0.30) !important;
}
.vbjma-badge-gold {
  background: rgba(219, 153, 4, 0.14) !important;
  color: #8a5f00 !important;
  border: 1px solid rgba(219, 153, 4, 0.30) !important;
}
.vbjma-badge-neutral {
  background: rgba(80, 80, 80, 0.10) !important;
  color: #444 !important;
  border: 1px solid rgba(80, 80, 80, 0.22) !important;
}

/* ═══════════════════════════════════════════════
   HERO SECTION — spacing fixes
═══════════════════════════════════════════════ */

/* Reduce overall section padding (Jayden: 98px 0 193px) */
.section-hero {
  padding: 60px 0 80px !important;
}

/* Tighten gap between top label and heading block */
.section-hero .infor {
  margin-bottom: 20px !important;
}

/* Reduce giant gap between heading block and buttons (Jayden: 116px) */
.section-hero .main-title {
  margin-bottom: 28px !important;
}

/* Tighten gap between buttons and stat cards */
.vbjma-hero-cta {
  margin-bottom: 20px !important;
}

/* Shrink the stat card title-to-number gap (Jayden: 56px) */
.indicators .indicators-item .indicators-title {
  margin-bottom: 12px !important;
}

/* Compact stat card padding */
.indicators .indicators-item {
  padding: 18px 24px 16px !important;
}

/* Fix 6: Footer marquee — force white text against global color override */
.vbjma-footer-cta .vbjma-footer-cta-inner,
.vbjma-footer-cta .vbjma-footer-cta-inner *,
.vbjma-footer-cta .vbjma-footer-cta-inner .text-display-2,
.vbjma-footer-cta .vbjma-footer-cta-inner span,
.vbjma-footer-cta .vbjma-footer-cta-inner a,
.vbjma-footer-cta .vbjma-footer-cta-inner p {
  color: #fff !important;
}
.vbjma-footer-cta .vbjma-footer-dot {
  background: rgba(255, 255, 255, 0.55) !important;
}

/* ── Our Approach — header row with nav arrows ── */
.vbjma-approach-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.vbjma-approach-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.vbjma-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 118, 29, 0.30);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #00761d;
  font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  user-select: none;
}
.vbjma-nav-btn:hover {
  background: #00761d;
  border-color: #00761d;
  color: #fff;
  transform: scale(1.06);
}
.vbjma-nav-btn:active {
  transform: scale(0.96);
}
.vbjma-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ── Override GSAP scrub holding items invisible ──
   Exclude .vbjma-reveal so our entrance animation can run instead ── */
.section-experiences .scrolling-effect:not(.vbjma-reveal),
.section-experiences .scrolling-effect.effectLeft:not(.vbjma-reveal),
.section-awards .scrolling-effect:not(.vbjma-reveal),
.section-awards .scrolling-effect.effectLeft:not(.vbjma-reveal) {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ═══════════════════════════════════════════════
   DYNAMIC BACKGROUND — Particles & Lines
═══════════════════════════════════════════════ */

/* Floating particle dots — green */
.vbjma-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2; overflow: hidden;
  display: none !important;
}
.vbjma-particles::before {
  content: '';
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,118,29,0.25);
  box-shadow:
    173px 162px 0 0 rgba(0,118,29,0.18),
    403px 648px 0 0 rgba(0,118,29,0.14),
    648px 315px 0 0 rgba(0,118,29,0.16),
    965px 765px 0 0 rgba(0,118,29,0.11),
    1152px 198px 0 0 rgba(0,118,29,0.15),
    792px 495px 0 0 rgba(0,118,29,0.13),
    1325px 612px 0 0 rgba(0,118,29,0.09),
    547px 810px 0 0 rgba(0,118,29,0.11);
  animation: vbjma-particles-drift 28s ease-in-out infinite;
}

/* Floating particle dots — gold */
.vbjma-particles::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(219,153,4,0.25);
  box-shadow:
    317px 405px 0 0 rgba(219,153,4,0.16),
    1051px 270px 0 0 rgba(219,153,4,0.14),
    1224px 702px 0 0 rgba(219,153,4,0.11),
    720px 135px 0 0 rgba(219,153,4,0.13),
    216px 792px 0 0 rgba(219,153,4,0.09),
    893px 558px 0 0 rgba(219,153,4,0.12);
  animation: vbjma-particles-drift 34s ease-in-out infinite reverse;
  animation-delay: -10s;
}

@keyframes vbjma-particles-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(8px, -14px); }
  50%  { transform: translate(-6px, 10px); }
  75%  { transform: translate(12px, 6px); }
  100% { transform: translate(0, 0); }
}

/* Diagonal accent lines + light streaks */
.vbjma-lines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2; overflow: hidden;
}

/* Green diagonal line — upper left */
.vbjma-lines::before {
  content: '';
  position: absolute;
  top: -10%; left: 14%;
  width: 1.5px; height: 52vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,118,29,0.14) 35%,
    rgba(0,118,29,0.09) 65%,
    transparent 100%
  );
  transform: rotate(22deg);
  transform-origin: top center;
  animation: vbjma-line-sway-green 13s ease-in-out infinite;
}

/* Gold diagonal line — lower right */
.vbjma-lines::after {
  content: '';
  position: absolute;
  bottom: 4%; right: 16%;
  width: 1.5px; height: 42vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(219,153,4,0.12) 35%,
    rgba(219,153,4,0.07) 65%,
    transparent 100%
  );
  transform: rotate(-18deg);
  transform-origin: bottom center;
  animation: vbjma-line-sway-gold 16s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes vbjma-line-sway-green {
  0%   { opacity: 0.65; transform: rotate(22deg) scaleY(1); }
  50%  { opacity: 1;    transform: rotate(25deg) scaleY(1.10); }
  100% { opacity: 0.65; transform: rotate(22deg) scaleY(1); }
}
@keyframes vbjma-line-sway-gold {
  0%   { opacity: 0.55; transform: rotate(-18deg) scaleY(1); }
  50%  { opacity: 0.90; transform: rotate(-21deg) scaleY(1.07); }
  100% { opacity: 0.55; transform: rotate(-18deg) scaleY(1); }
}

/* Light streak that sweeps diagonally across the page periodically */
@keyframes vbjma-streak {
  0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  5%   { opacity: 1; }
  40%  { opacity: 0.7; }
  55%  { transform: translateX(220%) skewX(-18deg); opacity: 0; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

.vbjma-lines .vbjma-streak-1,
.vbjma-lines .vbjma-streak-2 {
  display: none; /* injected by CSS only — fallback for no-JS */
}

/* Use body::after for the streak so it doesn't require extra elements */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(0,118,29,0.035) 50%,
    rgba(255,255,255,0.06) 55%,
    rgba(0,118,29,0.025) 60%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 2;
  animation: vbjma-streak 18s ease-in-out infinite;
  animation-delay: -3s;
}

/* ═══════════════════════════════════════════════
   CARD ENTRANCE ANIMATIONS
   Applied by vbjma-cards-animate.js via
   IntersectionObserver. Stagger via --reveal-i.
═══════════════════════════════════════════════ */

.vbjma-reveal {
  opacity: 0 !important;
  transform: translateY(26px) !important;
  transition:
    opacity  0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition-delay: calc(var(--reveal-i, 0) * 90ms) !important;
  will-change: opacity, transform;
}

.vbjma-reveal.vbjma-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Accessibility — reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .vbjma-particles,
  .vbjma-lines,
  .vbjma-orb-tr,
  .vbjma-orb-mr,
  .vbjma-orb-bl,
  .vbjma-orb-tl,
  .vbjma-ring-1,
  .vbjma-ring-2,
  .vbjma-ring-3,
  body::before,
  body::after {
    animation: none !important;
  }
}

/* ── Hide top-right menu button & slide-out sidebar (desktop only) ── */
@media (min-width: 992px) {
  .tf-btn-menu,
  .tf-sidebar-menu {
    display: none !important;
    visibility: hidden !important;
  }
}

/* ═══════════════════════════════════════════════
   DESKTOP RESPONSIVENESS — sidebar & content
═══════════════════════════════════════════════ */

/*
  The sidebar is position:fixed with a pixel width, but the Bootstrap
  offset-xxl-5 (41.67%) is percentage-based. On wide viewports (≥1600px)
  this creates a massive gap. Fix: pin the content column's margin-left to
  just past the sidebar's right edge at each breakpoint.

  Sidebar right edge = left(64px) + sidebar-width + desired-gap(36px)
    1200–1399px: 64 + 280 + 36 = 380px
    1400–1599px: 64 + 340 + 36 = 440px
    1600–1919px: 64 + 420 + 36 = 520px
    1920px+    : 64 + 440 + 36 = 540px
*/

/* 992px–1199px screens: minimal sidebar */
@media (min-width: 992px) and (max-width: 1199px) {
  .left-sidebar {
    width: 220px !important;
    max-width: 220px !important;
    padding: 12px 10px !important;
  }
  .vbjma-founder-photo {
    min-height: 180px !important;
  }
  .vbjma-founder-name-overlay {
    font-size: 17px !important;
    white-space: normal !important;
  }
  .vbjma-founder-socials li a {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }
  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 36px !important;
    max-width: 140px !important;
  }
}

/* 1200px–1399px screens: compact sidebar */
@media (min-width: 992px) and (max-width: 1399px) {
  .left-sidebar {
    width: 280px !important;
    max-width: 280px !important;
    padding: 14px 12px !important;
  }
  .vbjma-founder-photo {
    min-height: 220px !important;
    aspect-ratio: 3 / 4 !important;
  }
  .vbjma-founder-name-overlay {
    font-size: 20px !important;
  }
  .vbjma-founder-title {
    font-size: 13px !important;
  }
  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 42px !important;
    max-width: 170px !important;
  }
  /* Pin content past sidebar right edge + expand to fill remaining space */
  .main-content .row > [class*="offset-xxl"],
  .main-content .row > [class*="offset-xl"] {
    margin-left: 380px !important;
    width: calc(100% - 380px) !important;
    max-width: calc(100% - 380px) !important;
  }
}

/* 1400px–1599px screens: slightly narrower sidebar */
@media (min-width: 1400px) and (max-width: 1599px) {
  .left-sidebar {
    width: 340px !important;
    max-width: 340px !important;
    padding: 16px 14px !important;
  }
  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 48px !important;
    max-width: 200px !important;
  }
  /* Pin content past sidebar right edge + expand to fill remaining space */
  .main-content .row > [class*="offset-xxl"],
  .main-content .row > [class*="offset-xl"] {
    margin-left: 440px !important;
    width: calc(100% - 440px) !important;
    max-width: calc(100% - 440px) !important;
  }
}

/* 1600px–1919px: default sidebar (420px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  /* Pin content past sidebar right edge + expand to fill remaining space */
  .main-content .row > [class*="offset-xxl"],
  .main-content .row > [class*="offset-xl"] {
    margin-left: 520px !important;
    width: calc(100% - 520px) !important;
    max-width: calc(100% - 520px) !important;
  }
}

/* Widescreen (1920px+) */
@media (min-width: 1920px) {
  .left-sidebar {
    width: 440px !important;
    max-width: 440px !important;
  }
  .vbjma-founder-photo {
    min-height: 380px !important;
  }
  /* Pin content past sidebar right edge + expand to fill remaining space */
  .main-content .row > [class*="offset-xxl"],
  .main-content .row > [class*="offset-xl"] {
    margin-left: 540px !important;
    width: calc(100% - 540px) !important;
    max-width: calc(100% - 540px) !important;
  }
}

/* Impact stat cards — single column on narrow viewports */
@media (max-width: 1199px) {
  .vbjma-impact-list {
    grid-template-columns: 1fr !important;
  }
}

/* Right nav — hide tooltip labels on narrow screens to avoid overflow */
@media (max-width: 1199px) {
  .right-nav li a .tooltip {
    display: none !important;
  }
}

/* Hero section — reduce padding on medium screens */
@media (max-width: 1399px) {
  .section-hero {
    padding: 48px 0 60px !important;
  }
  .section-hero .main-title .title {
    font-size: clamp(28px, 3.5vw, 52px) !important;
  }
}

/* Contact form — two-column fieldsets on wider screens */
@media (min-width: 1400px) {
  .form-contact .fiel-mail,
  .form-contact .fiel-phone {
    width: 48% !important;
    display: inline-block !important;
  }
  .form-contact .fiel-mail:nth-child(odd),
  .form-contact .fiel-phone:nth-child(odd) {
    margin-right: 4% !important;
  }
}

/* Subtle scroll-through background video */
.section-hero,
.section-experiences,
.section-about,
.section-services,
.section-tech-stack,
.section-testimonial,
.section-partners,
.section-process,
.section-awards,
.section-pricing,
.section-faqs,
.section-contact,
.tf-footer {
  background: rgba(248, 246, 241, 0.82) !important;
  background-color: rgba(248, 246, 241, 0.82) !important;
}

/* Mobile-safe overrides */
@media (min-width: 768px) and (max-width: 1150px) {
  .left-sidebar {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin: 72px auto 20px !important;
    padding: 16px 12px !important;
  }

  .vbjma-heading-logo-only {
    padding-bottom: 22px !important;
    margin-bottom: 4px !important;
  }

  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 40px !important;
    max-width: 160px !important;
  }

  .vbjma-founder-card {
    margin-top: 10px !important;
  }

  .vbjma-founder-photo {
    min-height: 220px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .vbjma-founder-name-overlay {
    font-size: 18px !important;
  }

  .vbjma-founder-meta {
    padding-top: 10px !important;
    gap: 8px !important;
  }
}

@media (max-width: 1150px) {
  .tf-btn-menu {
    display: flex !important;
    visibility: visible !important;
    top: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 110 !important;
  }

  .tf-sidebar-menu {
    display: block !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .tf-sidebar-menu.active {
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .tf-sidebar-menu .sidebar-menu-inner {
    max-width: min(88vw, 340px) !important;
    padding: 28px 22px !important;
  }

  .close-canvas {
    border: 0 !important;
    background: transparent !important;
    color: #1A1A1A !important;
    font-size: 14px !important;
    padding: 0 !important;
  }

  .left-sidebar {
    width: calc(100% - 32px) !important;
    max-width: 420px !important;
    margin: 72px auto 24px !important;
    padding: 18px 14px !important;
  }

  .main-content {
    width: 100% !important;
  }

  .section-hero {
    padding: 28px 0 48px !important;
  }

  .section-hero .infor,
  .section-hero .main-title {
    margin-bottom: 24px !important;
  }

  .vbjma-hero-cta {
    gap: 10px !important;
  }

  .vbjma-hero-cta > a {
    width: 100% !important;
    justify-content: center !important;
  }

  .vbjma-impact-card,
  .vbjma-impact-list .award-item {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .section-experiences .experiences-wrap .item .job-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .section-experiences .experiences-wrap .item .job-title .title {
    width: 100% !important;
  }

  .section-experiences .experiences-wrap .item .job-title .time-line {
    align-self: flex-start !important;
    margin-top: 0 !important;
  }

  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 44px !important;
    max-width: 190px !important;
  }

  .vbjma-founder-photo {
    min-height: 200px !important;
  }

  .vbjma-founder-name-overlay {
    font-size: 18px !important;
    white-space: normal !important;
  }

  .vbjma-founder-meta {
    gap: 8px !important;
  }

  .vbjma-founder-website {
    text-align: center !important;
    word-break: break-word;
  }

  .vbjma-impact-card {
    max-width: 100% !important;
  }

  .vbjma-impact-img {
    height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .vbjma-impact-body {
    padding: 16px !important;
  }

  .section-contact-inner .bot-btn,
  .tf-footer.style-2 > div {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .vbjma-footer-cta-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 18px !important;
  }

  .vbjma-footer-cta-text {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .vbjma-footer-cta .text-display-2 {
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  .vbjma-footer-cta-arrow {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    margin-left: 14px !important;
  }
}

/* Tablet layout: compact left rail + readable content area */
@media (min-width: 768px) and (max-width: 1150px) {
  #wrapper {
    padding-left: 330px !important;
  }

  .left-sidebar {
    position: fixed !important;
    left: 20px !important;
    top: 88px !important;
    transform: none !important;
    width: 280px !important;
    max-width: 280px !important;
    max-height: calc(100vh - 108px) !important;
    margin: 0 !important;
    padding: 18px 14px !important;
    overflow-y: auto !important;
  }

  .main-content {
    width: auto !important;
    margin-left: 0 !important;
  }

  .section-hero {
    padding: 88px 0 56px !important;
  }

  .vbjma-heading-logo-only {
    padding-bottom: 26px !important;
    margin-bottom: 8px !important;
  }

  .vbjma-heading-logo-only .vbjma-sidebar-logo {
    height: 50px !important;
    max-width: 190px !important;
  }

  .vbjma-founder-card {
    margin-top: 12px !important;
  }

  .vbjma-founder-photo {
    min-height: 250px !important;
    aspect-ratio: 4 / 5 !important;
  }

  .vbjma-founder-name-overlay {
    font-size: 20px !important;
    white-space: normal !important;
  }

  .vbjma-founder-meta {
    padding-top: 10px !important;
    gap: 8px !important;
  }

  .tf-btn-menu {
    top: 20px !important;
    right: 20px !important;
  }
}

/* Final fix: keep process step numbers centered inside their badges */
.section-services .services-wrap .heading .title {
  position: relative !important;
  padding-right: 88px !important;
}

.section-services .services-wrap .heading .title .split-text {
  display: block !important;
}

.section-services .services-wrap .item .vbjma-step-num,
.section-services .services-wrap .item:nth-child(even) .vbjma-step-num,
.accordion-item .vbjma-step-num,
.vbjma-step-num {
  position: absolute !important;
  top: 8px !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  text-indent: 0 !important;
  transform: none !important;
  float: none !important;
}

@media (max-width: 991px) {
  .section-services .services-wrap .heading .title {
    padding-right: 56px !important;
  }

  .section-services .services-wrap .item .vbjma-step-num,
  .section-services .services-wrap .item:nth-child(even) .vbjma-step-num,
  .accordion-item .vbjma-step-num,
  .vbjma-step-num {
    top: 4px !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
  }
}

/* Impact section polish */
.box-playground {
  padding: 24px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(247,245,238,0.96) 100%) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
}

.box-playground .top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 22px !important;
  padding-bottom: 18px !important;
  position: relative !important;
  z-index: 3 !important;
}

.box-playground .instagram-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: clamp(20px, 2.1vw, 30px) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: #1a1a1a !important;
}

.box-playground .instagram-tag::before {
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00761d 0%, #2c9b45 100%) !important;
  box-shadow: 0 0 0 6px rgba(0,118,29,0.10) !important;
  flex-shrink: 0 !important;
}

.box-playground .box-nav.style-1 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  position: relative !important;
  z-index: 4 !important;
}

.box-playground .nav-sw {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.box-playground .nav-sw .icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1em !important;
  height: 1em !important;
  line-height: 1 !important;
}

.box-playground .nav-sw:hover {
  background: #fff !important;
  border-color: rgba(0,118,29,0.22) !important;
}

.wrap-swiper {
  margin-inline: -4px !important;
  position: relative !important;
  z-index: 1 !important;
}

.slider-playground .swiper-slide {
  width: 320px !important;
}

.vbjma-impact-card {
  border-radius: 18px !important;
  border-color: rgba(0,0,0,0.06) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,0.07) !important;
}

.vbjma-impact-card:hover {
  box-shadow: 0 18px 36px rgba(0,0,0,0.10) !important;
}

.vbjma-impact-body {
  padding: 18px 20px 22px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%) !important;
}

.vbjma-impact-title {
  font-size: 22px !important;
  margin-bottom: 8px !important;
}

.vbjma-impact-text {
  font-size: 14px !important;
  line-height: 1.7 !important;
}

@media (max-width: 767px) {
  .box-playground {
    padding: 18px 14px 16px !important;
    border-radius: 18px !important;
  }

  .box-playground .top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
  }

  .box-playground .instagram-tag {
    gap: 10px !important;
    font-size: clamp(15px, 4.4vw, 18px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .box-playground .instagram-tag::before {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 0 4px rgba(0,118,29,0.10) !important;
  }

  .box-playground .box-nav.style-1 {
    gap: 8px !important;
  }

  .box-playground .nav-sw {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }

  .slider-playground .swiper-slide {
    width: calc(100vw - 92px) !important;
    max-width: none !important;
  }

  .vbjma-impact-card {
    width: 100% !important;
  }

  .vbjma-impact-body {
    padding: 16px 16px 18px !important;
  }

  .vbjma-impact-title {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }

  .vbjma-impact-text {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }
}

/* ═══════════════════════════════════════════════
   IMPACT AREAS — Redesigned grid (no images)
═══════════════════════════════════════════════ */

.vbjma-impact-section {
  margin-top: 36px;
}

.vbjma-ig-header {
  margin-bottom: 24px;
}

.vbjma-ig-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.vbjma-ig-label::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00761d;
  box-shadow: 0 0 0 4px rgba(0,118,29,0.12);
  flex-shrink: 0;
}

.vbjma-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vbjma-ig-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  cursor: default;
}

/* Top accent bar */
.vbjma-ig-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00761d 0%, #00a828 100%);
  border-radius: 20px 20px 0 0;
  transition: height 0.3s ease;
}
.vbjma-ig-card:nth-child(2)::before,
.vbjma-ig-card:nth-child(4)::before {
  background: linear-gradient(90deg, #db9904 0%, #f0b820 100%);
}

/* Ghost number watermark */
.vbjma-ig-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -8px;
  right: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vbjma-ig-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.11);
  border-color: rgba(0,118,29,0.20);
}
.vbjma-ig-card:nth-child(2):hover,
.vbjma-ig-card:nth-child(4):hover {
  border-color: rgba(219,153,4,0.28);
}
.vbjma-ig-card:hover::before {
  height: 4px;
}

/* Icon */
.vbjma-ig-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,118,29,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.22,0.61,0.36,1);
}
.vbjma-ig-card:nth-child(2) .vbjma-ig-icon-wrap,
.vbjma-ig-card:nth-child(4) .vbjma-ig-icon-wrap {
  background: rgba(219,153,4,0.10);
}
.vbjma-ig-card:hover .vbjma-ig-icon-wrap {
  background: rgba(0,118,29,0.14);
  transform: scale(1.1) rotate(-4deg);
}
.vbjma-ig-card:nth-child(2):hover .vbjma-ig-icon-wrap,
.vbjma-ig-card:nth-child(4):hover .vbjma-ig-icon-wrap {
  background: rgba(219,153,4,0.18);
}

.vbjma-ig-icon-wrap .icon {
  font-size: 24px;
  color: #00761d;
  transition: color 0.3s ease;
}
.vbjma-ig-card:nth-child(2) .vbjma-ig-icon-wrap .icon,
.vbjma-ig-card:nth-child(4) .vbjma-ig-icon-wrap .icon {
  color: #b07800;
}

/* Number label */
.vbjma-ig-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 6px;
}

/* Title */
.vbjma-ig-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.vbjma-ig-card:hover .vbjma-ig-title { color: #00761d; }
.vbjma-ig-card:nth-child(2):hover .vbjma-ig-title,
.vbjma-ig-card:nth-child(4):hover .vbjma-ig-title { color: #b07800; }

/* Description */
.vbjma-ig-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .vbjma-impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vbjma-ig-card {
    padding: 24px 20px 20px;
  }
  .vbjma-ig-title {
    font-size: 19px;
  }
  .vbjma-ig-card::after {
    font-size: 70px;
  }
}

/* ═══════════════════════════════════════════════
   HERO — Word-by-word animation & spacing redesign
═══════════════════════════════════════════════ */

/* More breathing room */
.section-hero {
  padding-top: 110px !important;
}
@media (max-width: 1399px) {
  .section-hero { padding-top: 88px !important; }
}
@media (max-width: 991px) {
  .section-hero { padding-top: 72px !important; }
}
@media (max-width: 767px) {
  .section-hero { padding-top: 56px !important; }
}

/* ── Per-word entrance animation ── */
@keyframes vbjma-word-rise {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes vbjma-underline-draw {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.vbjma-hw {
  display: inline-block;
  opacity: 0;
  animation: vbjma-word-rise 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) calc(0.15s + var(--i, 0) * 0.13s) both;
}

/* Highlighted words: green color + animated underline (no class conflict) */
.vbjma-hw-hl {
  color: #00761d !important;
  position: relative;
}
.vbjma-hw-hl::after {
  display: none;
}

/* Title line-height & gap to subtitle */
.vbjma-hero-heading {
  line-height: 1.06 !important;
  margin-bottom: 22px !important;
}

/* Subtitle fades in after words settle */
.section-hero .main-title .text {
  opacity: 0;
  animation: vbjma-word-rise 0.7s ease 1.05s both;
}

/* More gap between heading block and CTAs */
.section-hero .main-title {
  margin-bottom: 42px !important;
}

/* CTA row fades in */
.vbjma-hero-cta {
  opacity: 0;
  animation: vbjma-word-rise 0.7s ease 1.25s both;
}

/* Stat cards fade in */
.indicators-wrap {
  opacity: 0;
  animation: vbjma-word-rise 0.7s ease 1.45s both;
}

/* ═══════════════════════════════════════════════
   KEY COMMITMENTS — Redesigned stat-row layout
═══════════════════════════════════════════════ */

.vbjma-commits-section {
  background: #F8F6F1 !important;
}

.vbjma-commits-header {
  margin-bottom: 40px;
}


.vbjma-commits-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0;
}

/* Row list */
.vbjma-commits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each row */
.vbjma-commit-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s ease;
  position: relative;
}
.vbjma-commit-row:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}
.vbjma-commit-row::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.vbjma-commit-row:hover::before {
  background: #00761d;
}
.vbjma-commit-row:nth-child(2):hover::before,
.vbjma-commit-row:nth-child(4):hover::before {
  background: #db9904;
}

/* Large stat number */
.vbjma-commit-stat {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  min-width: 130px;
  flex-shrink: 0;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}
.vbjma-commit-row:hover .vbjma-commit-stat {
  transform: scale(1.04);
}
.vbjma-stat-green { color: #00761d; }
.vbjma-stat-gold  { color: #b07800; }

/* Right body */
.vbjma-commit-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.vbjma-commit-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.vbjma-commit-row:hover .vbjma-commit-title { color: #00761d; }
.vbjma-commit-row:nth-child(2):hover .vbjma-commit-title,
.vbjma-commit-row:nth-child(4):hover .vbjma-commit-title { color: #b07800; }

/* Status badges */
.vbjma-commit-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vbjma-cb-green {
  background: rgba(0,118,29,0.10);
  color: #00761d;
  border: 1px solid rgba(0,118,29,0.18);
}
.vbjma-cb-gold {
  background: rgba(176,120,0,0.10);
  color: #b07800;
  border: 1px solid rgba(176,120,0,0.20);
}
.vbjma-cb-neutral {
  background: rgba(0,0,0,0.05);
  color: #666;
  border: 1px solid rgba(0,0,0,0.10);
}

@media (max-width: 767px) {
  .vbjma-commit-stat {
    min-width: 90px;
    font-size: clamp(32px, 9vw, 48px);
  }
  .vbjma-commit-title {
    font-size: 17px;
  }
  .vbjma-commit-row {
    gap: 20px;
    padding: 22px 0;
  }
}

/* ═══════════════════════════════════════════════
   OUR IMPACT AREAS — Premium animated card grid
═══════════════════════════════════════════════ */

.vbjma-ia-section {
  margin-top: 40px;
}

/* Header label */
.vbjma-ia-header { margin-bottom: 28px; }

.vbjma-ia-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.vbjma-ia-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #00761d;
  box-shadow: 0 0 0 4px rgba(0,118,29,0.14);
  animation: vbjma-dot-pulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* 2×2 grid */
.vbjma-ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Card */
.vbjma-ia-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: default;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.4s ease;
}

.vbjma-ia-card--green {
  background: linear-gradient(145deg, #ffffff 0%, #f4faf5 100%);
  border: 1px solid rgba(0,118,29,0.10);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.vbjma-ia-card--gold {
  background: linear-gradient(145deg, #ffffff 0%, #fdf9f0 100%);
  border: 1px solid rgba(176,120,0,0.10);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.vbjma-ia-card:hover {
  transform: translateY(-8px) scale(1.01);
}
.vbjma-ia-card--green:hover {
  box-shadow: 0 24px 56px rgba(0,118,29,0.14), 0 4px 14px rgba(0,0,0,0.06);
  border-color: rgba(0,118,29,0.22);
}
.vbjma-ia-card--gold:hover {
  box-shadow: 0 24px 56px rgba(176,120,0,0.13), 0 4px 14px rgba(0,0,0,0.06);
  border-color: rgba(176,120,0,0.24);
}

/* Inner content */
.vbjma-ia-card-inner {
  position: relative;
  padding: 30px 26px 26px;
  z-index: 1;
}

/* Ghost number watermark */
.vbjma-ia-num {
  position: absolute;
  top: 12px; right: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease, transform 0.4s ease;
}
.vbjma-ia-card--green:hover .vbjma-ia-num { color: rgba(0,118,29,0.06); transform: scale(1.08); }
.vbjma-ia-card--gold:hover   .vbjma-ia-num { color: rgba(176,120,0,0.07); transform: scale(1.08); }

/* Icon circle */
.vbjma-ia-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vbjma-ia-card--green .vbjma-ia-icon {
  background: rgba(0,118,29,0.10);
}
.vbjma-ia-card--gold .vbjma-ia-icon {
  background: rgba(176,120,0,0.10);
}
.vbjma-ia-card:hover .vbjma-ia-icon {
  transform: rotate(-8deg) scale(1.12);
}

.vbjma-ia-icon .icon {
  font-size: 22px;
  transition: color 0.3s ease;
}
.vbjma-ia-card--green .vbjma-ia-icon .icon { color: #00761d; }
.vbjma-ia-card--gold  .vbjma-ia-icon .icon { color: #b07800; }

/* Title */
.vbjma-ia-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.vbjma-ia-card--green:hover .vbjma-ia-title { color: #00761d; }
.vbjma-ia-card--gold:hover  .vbjma-ia-title { color: #b07800; }

/* Description */
.vbjma-ia-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Bottom accent line that draws in on hover */
.vbjma-ia-line {
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vbjma-ia-card--green .vbjma-ia-line { background: linear-gradient(90deg, #00761d, #00c832); }
.vbjma-ia-card--gold  .vbjma-ia-line { background: linear-gradient(90deg, #b07800, #f0b820); }
.vbjma-ia-card:hover .vbjma-ia-line { transform: scaleX(1); }

/* Ambient glow blob */
.vbjma-ia-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  bottom: -80px; right: -60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.7);
  z-index: 0;
}
.vbjma-ia-card--green .vbjma-ia-glow { background: radial-gradient(circle, rgba(0,118,29,0.12) 0%, transparent 70%); }
.vbjma-ia-card--gold  .vbjma-ia-glow { background: radial-gradient(circle, rgba(176,120,0,0.10) 0%, transparent 70%); }
.vbjma-ia-card:hover .vbjma-ia-glow { opacity: 1; transform: scale(1); }

@media (max-width: 767px) {
  .vbjma-ia-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vbjma-ia-card-inner {
    padding: 22px 20px 20px;
  }
  .vbjma-ia-title { font-size: 20px; }
  .vbjma-ia-num { font-size: 58px; }
}

/* ═══════════════════════════════════════════════
   MOBILE HEADER BAR
═══════════════════════════════════════════════ */
.vbjma-mobile-header {
  display: none;
}

@media (max-width: 991px) {
  .vbjma-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 60px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .vbjma-mobile-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .vbjma-mobile-logo {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }

  /* Pull tf-btn-menu into the header bar */
  .tf-btn-menu {
    position: static !important;
    margin: 0 !important;
    top: auto !important;
    right: auto !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(0, 118, 29, 0.08) !important;
    border: 1px solid rgba(0, 118, 29, 0.18) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 9px !important;
    box-shadow: none !important;
  }

  .tf-btn-menu img {
    width: 18px !important;
    height: 18px !important;
    filter: invert(27%) sepia(62%) saturate(600%) hue-rotate(100deg) brightness(0.7) !important;
  }

  /* Offset hero/content below the fixed header */
  .section-hero {
    padding-top: 80px !important;
  }

}

@media (max-width: 767px) {
  .vbjma-mobile-header {
    height: 56px;
    padding: 0 14px;
  }

  .vbjma-mobile-logo {
    height: 30px;
  }

  .section-hero {
    padding-top: 72px !important;
  }
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS FIXES
   Addresses layout, overflow, sizing, and spacing
   issues across all mobile viewports.
═══════════════════════════════════════════════ */

/* ── 1. Global: prevent horizontal scroll + smooth anchor scrolling ── */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ── 2. Sidebar founder photo — compact height on small phones ──
   Default aspect-ratio: 4/5 makes the photo ~400px tall on a 375px
   wide phone, burying the hero below the fold. Cap with max-height. */
@media (max-width: 480px) {
  .vbjma-founder-photo {
    height: 280px !important;
    min-height: 0 !important;
    aspect-ratio: unset !important;
    max-height: 280px !important;
  }

  /* Logo top spacing */
  .vbjma-heading-logo-only {
    padding-bottom: 14px !important;
    margin-bottom: 4px !important;
  }

  /* Sidebar overall vertical rhythm on tiny phones */
  .left-sidebar {
    margin-top: 68px !important;
    margin-bottom: 16px !important;
  }
}

/* ── 3. Hero section — font & layout on mobile ── */
@media (max-width: 767px) {
  .vbjma-hero-heading {
    font-size: clamp(26px, 7.5vw, 40px) !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }

  .section-hero .main-title .text {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .section-hero .main-title {
    margin-bottom: 28px !important;
  }

  /* Stack CTA buttons vertically, full-width */
  .vbjma-hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .vbjma-cta-primary,
  .vbjma-cta-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 20px !important;
  }

  /* Stat indicator cards */
  .indicators-item {
    padding: 14px 18px 12px !important;
  }
}

@media (max-width: 380px) {
  .vbjma-hero-heading {
    font-size: clamp(22px, 7vw, 32px) !important;
  }

  .vbjma-cta-primary,
  .vbjma-cta-secondary {
    font-size: 13px !important;
    padding: 13px 16px !important;
    letter-spacing: 0.04em !important;
  }
}

/* ── 4. Process accordion — title & step badge sizing on small phones ── */
@media (max-width: 767px) {
  .section-services .services-wrap .heading {
    align-items: center !important;
    gap: 0 !important;
  }

  /* Hide the invisible-but-space-occupying icon on collapsed items */
  .section-services .services-wrap .item.collapsed .heading .icon {
    display: none !important;
  }
  /* On expanded items keep icon centred */
  .section-services .services-wrap .item:not(.collapsed) .heading .icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    margin-right: 12px !important;
  }

  .section-services .services-wrap .heading .title {
    font-size: clamp(20px, 6.5vw, 34px) !important;
    padding-right: 50px !important;
    gap: 8px !important;
    line-height: 1.15 !important;
    min-height: 38px !important;
    align-items: center !important;
    /* Override the base margin-left: -74px on collapsed titles */
    margin-left: 0 !important;
    width: 100% !important;
  }

  .section-services .services-wrap .item .vbjma-step-num,
  .accordion-item .vbjma-step-num,
  .vbjma-step-num {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    font-size: 11px !important;
    /* Vertically centre badge within the title container */
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .section-services .services-wrap .list-text .text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 480px) {
  .section-services .section-services-inner {
    padding: 18px 12px !important;
    border-radius: 16px !important;
  }

  .section-services .services-wrap {
    gap: 10px !important;
  }

  .section-services .services-wrap .item {
    padding: 14px 12px 14px 14px !important;
    border-radius: 12px !important;
  }

  .section-services .services-wrap .heading {
    gap: 0 !important;
    align-items: center !important;
  }

  .section-services .services-wrap .item:not(.collapsed) .heading .icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 15px !important;
    margin-right: 10px !important;
  }

  .section-services .services-wrap .heading .title {
    font-size: clamp(18px, 6vw, 30px) !important;
    padding-right: 44px !important;
    min-height: 32px !important;
    margin-left: 0 !important;
    align-items: center !important;
  }

  .section-services .services-wrap .item .vbjma-step-num,
  .vbjma-step-num {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    font-size: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* ── 5. Key Commitments — prevent left-bar overflow, tighten layout ── */
@media (max-width: 767px) {
  /* Anchor the left accent bar inside the container (not -20px which can overflow) */
  .vbjma-commit-row::before {
    left: -6px !important;
  }

  .vbjma-commit-row {
    gap: 16px !important;
    padding: 20px 0 !important;
  }

  .vbjma-commit-stat {
    min-width: 80px !important;
    font-size: clamp(28px, 7.5vw, 44px) !important;
    letter-spacing: -0.5px !important;
  }

  .vbjma-commit-title {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .vbjma-commit-badge {
    font-size: 10px !important;
    padding: 3px 10px !important;
    letter-spacing: 0.08em !important;
  }

  .vbjma-commits-heading {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 380px) {
  .vbjma-commit-stat {
    min-width: 68px !important;
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .vbjma-commit-row {
    gap: 10px !important;
  }

  .vbjma-commit-title {
    font-size: 14px !important;
  }
}

/* ── 6. Contact form — pricing-list wrapping on mobile ── */
@media (max-width: 767px) {
  .section-contact-inner {
    padding: 22px 16px 28px !important;
    border-radius: 16px !important;
  }

  .section-contact-inner .heading {
    font-size: clamp(22px, 7vw, 34px) !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
  }

  /* Subject chips: 2 per row on mobile */
  .form-contact .pricing-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .form-contact .pricing-list .item {
    flex: 1 1 calc(50% - 8px) !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 8px 6px !important;
    font-size: 12px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 380px) {
  /* One chip per row on very small phones */
  .form-contact .pricing-list .item {
    flex: 1 1 100% !important;
    font-size: 13px !important;
    padding: 10px 8px !important;
  }
}

/* ── 7. Footer — compact on small phones ── */
@media (max-width: 767px) {
  .vbjma-footer-cta-inner {
    padding: 20px 16px !important;
    gap: 12px !important;
  }

  .vbjma-footer-cta .text-display-2 {
    font-size: clamp(20px, 5.5vw, 28px) !important;
  }

  .vbjma-footer-cta-arrow {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .vbjma-footer-cta-inner {
    padding: 16px 14px !important;
  }
}

/* ── 8. Section spacing — reduce 100px bottom-padding on mobile ── */
@media (max-width: 767px) {
  .wrapper-content > *:not(:last-child) {
    padding-bottom: 56px !important;
  }
}

/* ── 9. Various section headings & text — mobile sizing ── */
@media (max-width: 767px) {
  /* FAQ heading */
  .section-faqs .heading.text-display-2 {
    font-size: clamp(28px, 8vw, 44px) !important;
    line-height: 1.1 !important;
  }

  /* Approach swiper header */
  .vbjma-approach-header {
    margin-bottom: 16px !important;
  }

  .vbjma-approach-header .text-display-2 {
    font-size: clamp(22px, 6.5vw, 34px) !important;
  }

  /* Approach nav button sizing */
  .vbjma-nav-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 13px !important;
  }

  /* Approach card padding */
  .vbjma-approach-card {
    padding: 22px 18px 18px !important;
  }

  .vbjma-approach-card .title {
    font-size: 22px !important;
  }

  /* Mission section */
  .vbjma-mission-title {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1.1 !important;
  }

  .vbjma-mission-body {
    font-size: 14px !important;
    line-height: 1.75 !important;
    padding-left: 14px !important;
  }

  /* About pillars heading */
  .section-experiences .desc {
    font-size: clamp(18px, 5vw, 26px) !important;
    line-height: 1.4 !important;
  }

  /* Eyebrow badges */
  .vbjma-eyebrow {
    margin-bottom: 18px !important;
  }
}

/* ── 10. Touch targets — minimum 44px tap area on mobile ── */
@media (max-width: 991px) {
  .vbjma-cta-primary,
  .vbjma-cta-secondary {
    min-height: 48px;
  }

  .close-canvas {
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
  }

  .sidebar-nav li a {
    padding: 10px 4px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Accordion tap area */
  .section-services .services-wrap .item .heading.accordion-head,
  .section-faqs .accordion-wrap .item .accordion-head {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
  }
}

/* ── 11. Impact area cards — extra small screens ── */
@media (max-width: 380px) {
  .vbjma-ia-card-inner {
    padding: 18px 14px 16px !important;
  }

  .vbjma-ia-title {
    font-size: 18px !important;
  }

  .vbjma-ia-num {
    font-size: 54px !important;
  }

  .vbjma-ia-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 14px !important;
  }

  /* Eyebrow on very small screens */
  .vbjma-eyebrow-text {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  .vbjma-mission-body {
    font-size: 13px !important;
    padding-left: 10px !important;
  }
}

/* ── 12. Smooth scrolling & scroll-snap safety ── */
@media (max-width: 991px) {
  /* Prevent iOS momentum-scroll jank on fixed elements */
  .vbjma-mobile-header {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Improve tap responsiveness */
  a, button, [role="button"], [data-bs-toggle] {
    -webkit-tap-highlight-color: rgba(0, 118, 29, 0.12);
    touch-action: manipulation;
  }
}

/* ── 13. Disable heavy background video on mobile to save battery ── */
@media (max-width: 767px) {
  .vbjma-bg-video {
    display: none !important;
  }
}

/* ── 14. Right nav: ensure hidden on all mobile & tablet ── */
@media (max-width: 1150px) {
  .right-nav {
    display: none !important;
    visibility: hidden !important;
  }
}

/* ── 15. Wrapper padding: prevent double offset on mobile ──
   The Jayden base CSS has right-nav padding on the wrapper.
   Reset any residual wrapper padding below 768px. */
@media (max-width: 767px) {
  #wrapper {
    padding-right: 0 !important;
  }
}

/* ── 16. Section anchor scroll offset — account for fixed mobile header ──
   When the user taps a nav link (e.g. #about), the browser scrolls the
   section to the top of the viewport. The 56-60px fixed mobile header
   would overlap the section heading. Use scroll-margin-top to push the
   section below the header. */
@media (max-width: 991px) {
  #home, #about, #process, #faqs, #contact {
    scroll-margin-top: 64px;
  }
}

@media (max-width: 767px) {
  #home, #about, #process, #faqs, #contact {
    scroll-margin-top: 60px;
  }
}

/* ── 17. Tablet layout: ensure hero padding clears the mobile header ── */
@media (min-width: 768px) and (max-width: 991px) {
  /* On tablet, sidebar is fixed at top: 88px and wrapper has padding-left: 330px.
     The hero section is the first element in main-content, so it needs padding-top
     to clear the fixed mobile header (60px) + some visual gap. */
  .section-hero {
    padding-top: 80px !important;
  }
}

/* ── 18. Approach card — ensure no horizontal overflow inside swiper ── */
.slider-tech-stack {
  overflow: hidden !important;
}

/* ── 19. Process services inner — prevent horizontal overflow ── */
.section-services-inner {
  overflow: hidden !important;
}

/* ── 20. Impact area grid cards — no overflow on hover lift ── */
@media (max-width: 767px) {
  /* Disable hover lift on touch screens (no hover state anyway) */
  .vbjma-ia-card:hover,
  .vbjma-ig-card:hover,
  .vbjma-approach-card:hover {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT FORM — VALIDATION & CONSENT STYLES
═══════════════════════════════════════════════ */

/* Inline error message */
.vbjma-field-error {
  display: none;
  font-size: 12px;
  line-height: 1.4;
  color: #c0392b;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Input in error state */
.vbjma-input-error {
  border-color: #c0392b !important;
  background-color: #fff8f7 !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12) !important;
}

/* Optional label hint */
.vbjma-optional {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
  margin-left: 4px;
}

/* ── Consent checkbox fieldset ── */
.fiel-consent {
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.vbjma-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.vbjma-consent-label input[type="checkbox"] {
  /* Custom checkbox */
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #bbb;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.vbjma-consent-label input[type="checkbox"]:checked {
  background: #00761d;
  border-color: #00761d;
}

.vbjma-consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.vbjma-consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid #00761d;
  outline-offset: 2px;
}

.vbjma-consent-label span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

/* Error state for consent */
#error-consent {
  margin-top: 8px;
  padding-left: 30px; /* align under checkbox text */
}
