/* ================================================================
   VAKSON CONSULTANCY SERVICES — BRAND THEME v4.0
   Colors: Logo Green (#6DBE45) → Cyan (#00C4B4) → Sky Blue (#00AEEF)
   Theme: Premium Light + 3D Floating Modern
   ================================================================ */

/* Google Fonts loaded via <link> in HTML head — no @import needed here */

/* ======================== CSS Custom Properties ======================== */
:root {
  /* === BRAND PALETTE (from logo) === */
  --green:        #5BBD2D;
  --green-light:  #7ED44A;
  --green-dark:   #429E1B;
  --green-pale:   #F0FAF0;
  --cyan:         #00C4B4;
  --cyan-light:   #2DD4BF;
  --cyan-dark:    #009E8E;
  --blue:         #00AEEF;
  --blue-dark:    #0090D4;
  --blue-pale:    #EFF9FF;

  /* Brand gradient */
  --brand-gradient: linear-gradient(135deg, #6DBE45 0%, #00C4B4 50%, #00AEEF 100%);
  --brand-gradient-r: linear-gradient(135deg, #00AEEF 0%, #00C4B4 50%, #6DBE45 100%);
  --brand-gradient-v: linear-gradient(180deg, #6DBE45 0%, #00C4B4 60%, #00AEEF 100%);

  /* Light Palette */
  --bg-white:     #FFFFFF;
  --bg-off:       #F7FAFB;
  --bg-subtle:    #EEF4F1;
  --bg-green:     #F2FAF0;
  --bg-blue:      #EFF9FF;

  /* Text */
  --ink:          #0C1A10;
  --ink-light:    #2D4A32;
  --muted:        #5A7A62;
  --muted-light:  #8AAD90;

  /* Typography */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  7rem;

  /* Borders & Radii */
  --radius-sm:  0.5rem;
  --radius-md:  0.875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;

  /* Shadows — crisp 3D light-theme */
  --shadow-xs:    0 1px 4px rgba(0,140,80,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 4px 14px rgba(0,140,80,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md:    0 10px 30px rgba(0,140,80,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:    0 20px 60px rgba(0,140,80,0.13), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-card:  0 8px 32px rgba(0,140,80,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lift:  0 20px 48px rgba(0,140,80,0.13), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-green: 0 20px 50px rgba(91,189,45,0.25), 0 8px 20px rgba(91,189,45,0.12);
  --shadow-blue:  0 20px 50px rgba(0,174,239,0.20), 0 8px 20px rgba(0,174,239,0.10);
  --shadow-3d:    0 32px 64px rgba(0,0,0,0.08), 0 12px 24px rgba(0,140,80,0.06), 0 4px 8px rgba(0,0,0,0.03);

  /* Background Palette */
  --bg-alt:       #F0F5F2;
  --bg-dark:      #0C1A10;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:       0.2s;
  --t-base:       0.35s;
  --t-slow:       0.6s;
}

/* ======================== Global Reset ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ======================== Typography ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
}
p { color: var(--muted); }

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brand-gradient);
  border-radius: 2px;
}

.section-tag.blue { color: var(--blue-dark); }
.section-tag.blue::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }

/* ======================== Utility ======================== */
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }

/* ======================== Animations ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91,189,45,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(91,189,45,0); }
}
@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes orbitGlow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.1); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmerLine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* ======================== Buttons ======================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(91,189,45,0.38);
}
.btn-primary:hover, .btn-primary:focus {
  background-position: right center;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91,189,45,0.45), 0 4px 12px rgba(0,174,239,0.20);
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green-dark);
}
.btn-outline-brand:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-ghost-dark {
  background: var(--bg-white);
  border: 2px solid #D6E8D8;
  color: var(--ink-light);
  box-shadow: var(--shadow-xs);
}
.btn-ghost-dark:hover {
  background: var(--bg-green);
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ======================== Navbar ======================== */
#mainNavbar {
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), padding var(--t-base) var(--ease);
  z-index: 1000;
}

#mainNavbar.hero-nav {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.05);
}

#mainNavbar.scrolled {
  background: rgba(255,255,255,0.99) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

#mainNavbar .navbar { background: transparent !important; padding-top: 1rem; padding-bottom: 1rem; }
#mainNavbar.scrolled .navbar { padding-top: 0.6rem; padding-bottom: 0.6rem; }

/* Logo: the PNG has a colored V-mark + white text; on light bg only the colored V shows.
   We compensate by showing company name in HTML text beside the logo image. */
.navbar-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.navbar-brand img {
  height: 44px;
  width: 50px;
  object-fit: cover;
  object-position: left center;
  transition: all var(--t-base) var(--ease);
  flex-shrink: 0;
}
#mainNavbar.scrolled .navbar-brand img { height: 38px; width: 44px; }
.navbar-brand-text { line-height: 1.15; }
.navbar-brand-text .brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.navbar-brand-text .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-light) !important;
  padding: 0.4rem 0.75rem !important;
  position: relative;
  transition: color var(--t-fast) var(--ease);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--green-dark) !important; }

.nav-link::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: 0px; left: 50%;
  background: var(--brand-gradient);
  transition: width var(--t-base) var(--ease), left var(--t-base) var(--ease);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; left: 15%; }

.dropdown-menu {
  background: #fff;
  border: 1px solid #D6EED8;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,140,80,0.10), 0 4px 16px rgba(0,0,0,0.06);
  padding: 0.5rem;
}
.dropdown-item {
  color: var(--ink-light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
}
.dropdown-item:hover {
  background: var(--bg-green);
  color: var(--green-dark);
  transform: translateX(4px);
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  background: var(--brand-gradient);
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(91,189,45,0.32);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,189,45,0.45), 0 4px 12px rgba(0,174,239,0.20);
  color: #fff !important;
  opacity: 0.95;
}

/* Mobile Offcanvas */
.offcanvas {
  background: #fff !important;
  border-left: 1px solid #D6EED8 !important;
  box-shadow: -8px 0 32px rgba(0,140,80,0.12) !important;
}
.offcanvas-header { border-bottom: 1px solid #EEF6EE !important; }
.offcanvas .nav-link {
  font-size: 1.05rem !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid #EEF6EE;
  color: var(--ink) !important;
}

/* ======================== HERO SECTION ======================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, #F5FBF2 0%, #EEF8F5 35%, #EAF5FB 70%, #F2F8FD 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbitGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(109,190,69,0.18) 0%, rgba(109,190,69,0.03) 70%);
  top: -180px; right: -120px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,174,239,0.14) 0%, rgba(0,174,239,0.03) 70%);
  bottom: -60px; left: -80px;
  animation-delay: 4s;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,196,180,0.12) 0%, transparent 70%);
  top: 50%; left: 38%;
  animation-delay: 2s;
}

/* Dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(91,189,45,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 8.5rem;
  padding-bottom: 6rem;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(109,190,69,0.10);
  border: 1px solid rgba(109,190,69,0.28);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s var(--ease) both;
  box-shadow: 0 2px 14px rgba(109,190,69,0.14);
}
.hero-badge span {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--brand-gradient);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s var(--ease) 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.7s var(--ease) 0.4s both;
}

.hero-stat-card {
  background: #fff;
  border: 1px solid #D6EED8;
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.hero-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.hero-stat-card:hover {
  border-color: rgba(109,190,69,0.35);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px) scale(1.02);
}
.hero-stat-card:hover::after { transform: scaleX(1); }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s var(--ease) 0.3s both;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d), 0 0 0 1px rgba(109,190,69,0.08);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.hero-img-wrapper:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.hero-img-wrapper img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(109,190,69,0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatBadge 4.5s ease-in-out infinite;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.hero-img-badge .badge-icon {
  width: 42px; height: 42px;
  background: var(--brand-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(109,190,69,0.40);
}
.hero-img-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.hero-img-badge .badge-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-float-card {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  background: #fff;
  border: 1px solid #D6EED8;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  animation: floatBadge 5.5s ease-in-out 1.5s infinite;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 185px;
}
.hero-float-card .fc-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(0,174,239,0.12), rgba(0,196,180,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 1rem;
}
.hero-float-card .fc-text { font-size: 0.78rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.hero-float-card .fc-text span { display: block; font-weight: 400; font-size: 0.7rem; color: var(--muted); }

/* ======================== TICKER STRIP ======================== */
.ticker-strip {
  background: linear-gradient(135deg, #1A3A1C 0%, #0A2E2A 50%, #0A2040 100%);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-gradient);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.05em;
}
.ticker-item i { color: var(--green-light); font-size: 0.78rem; }

/* ======================== ABOUT SECTION ======================== */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 490px;
  box-shadow: var(--shadow-3d);
  display: block;
  transition: transform 0.5s var(--ease);
}
.about-img-wrapper:hover img { transform: scale(1.02); }

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(91,189,45,0.45), 0 4px 14px rgba(0,174,239,0.20);
  animation: floatBadge 5s ease-in-out infinite;
  min-width: 130px;
}
.about-experience-badge .exp-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.about-experience-badge .exp-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-list { list-style: none; margin: 1.75rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; }
.feature-list .check-icon {
  width: 24px; height: 24px;
  background: rgba(109,190,69,0.12);
  border: 1.5px solid rgba(109,190,69,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 0.7rem;
  flex-shrink: 0; margin-top: 2px;
}
.feature-list li span { color: var(--ink-light); font-size: 0.97rem; line-height: 1.55; }

/* ======================== SERVICES SECTION ======================== */
.services-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #F5FBF2 0%, #EEF8F5 50%, #EAF5FB 100%);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--t-base) var(--ease);
  position: relative;
  cursor: default;
  box-shadow: var(--shadow-xs);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
  z-index: 1;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-3d), 0 0 0 1px rgba(109,190,69,0.12);
  transform: translateY(-9px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }

.service-card-body { padding: 1.75rem; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(109,190,69,0.10);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  transition: all var(--t-base) var(--ease);
  border: 1px solid rgba(109,190,69,0.15);
}
.service-card:hover .service-icon {
  background: var(--brand-gradient);
  color: #fff;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 24px rgba(91,189,45,0.38);
  border-color: transparent;
}

.service-icon.blue-icon {
  background: rgba(0,174,239,0.10);
  color: var(--blue-dark);
  border-color: rgba(0,174,239,0.15);
}

.service-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.5rem;
  display: block;
}
.service-card h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.65rem; line-height: 1.3; }
.service-card p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.25rem; }

.service-link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all var(--t-fast) var(--ease);
}
.service-link:hover { gap: 0.7rem; color: var(--cyan-dark); }

/* ======================== WHY VAKSON SECTION ======================== */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.why-card {
  background: linear-gradient(145deg, #F5FBF2 0%, #EEFBF8 100%);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.why-card:hover {
  background: #fff;
  border-color: rgba(109,190,69,0.30);
  box-shadow: var(--shadow-green);
  transform: translateY(-7px);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  transition: all var(--t-base) var(--ease);
}
.why-icon.green {
  background: rgba(109,190,69,0.12);
  color: var(--green-dark);
  border: 1px solid rgba(109,190,69,0.18);
}
.why-icon.blue {
  background: rgba(0,174,239,0.12);
  color: var(--blue-dark);
  border: 1px solid rgba(0,174,239,0.18);
}
.why-icon.cyan {
  background: rgba(0,196,180,0.12);
  color: var(--cyan-dark);
  border: 1px solid rgba(0,196,180,0.18);
}
.why-card:hover .why-icon {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 22px rgba(91,189,45,0.35);
}
.why-card h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.87rem; line-height: 1.6; }

/* ======================== TESTIMONIALS ======================== */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #EEF8F5 0%, #EAF5FB 100%);
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  position: relative;
  box-shadow: var(--shadow-card);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  pointer-events: none;
}
.stars {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-text { font-size: 1.05rem; color: var(--ink-light); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); display: block; }
.testimonial-author span { font-size: 0.85rem; color: var(--muted); }

/* ======================== CTA BANNER ======================== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1A3A1C 0%, #0A2E2A 45%, #0A2040 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(109,190,69,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 80% 80%, rgba(0,174,239,0.07) 0%, transparent 60%);
}
/* cta top line removed */

.cta-border-box {
  border: 1px solid rgba(109,190,69,0.25);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-section p { color: rgba(255,255,255,0.62); font-size: 1.05rem; max-width: 560px; margin: 1rem auto 2rem; }

/* ======================== FOOTER ======================== */
footer {
  background: linear-gradient(135deg, #0F2812 0%, #0A2E2A 50%, #0A1F38 100%);
  border-top: 1px solid rgba(109,190,69,0.12);
  position: relative;
}
.footer-top { padding: 5rem 0 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-logo img {
  height: 44px;
  width: 50px;
  object-fit: cover;
  object-position: left center;
  flex-shrink: 0;
}
.footer-logo-text .brand-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: -0.01em; }
.footer-logo-text .brand-sub { display: block; font-size: 0.58rem; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.52); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem; text-decoration: none;
  transition: all var(--t-fast) var(--ease);
}
.social-link:hover {
  background: rgba(109,190,69,0.18);
  border-color: rgba(109,190,69,0.40);
  color: var(--green-light);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: all var(--t-fast) var(--ease); display: inline-block; }
.footer-links a:hover { color: var(--green-light); transform: translateX(4px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.footer-contact-item i { color: var(--green-light); font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { font-size: 0.88rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-contact-item p { font-size: 0.82rem; color: rgba(255,255,255,0.52); margin: 0; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.28); margin: 0; }
.footer-bottom a { font-size: 0.82rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.footer-bottom a:hover { color: var(--green-light); }

/* ======================== BACK TO TOP ======================== */
#backToTopBtn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--brand-gradient);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 8px 24px rgba(91,189,45,0.45);
  z-index: 999;
}
#backToTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTopBtn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 32px rgba(91,189,45,0.55); }

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  background: linear-gradient(145deg, #F2FAF0 0%, #EBF8F5 40%, #E8F3FD 80%, #F0F8FD 100%);
  padding: 8.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 75% 50%, rgba(109,190,69,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 55% at 20% 60%, rgba(0,174,239,0.06) 0%, transparent 60%);
}
/* page-hero top line removed */
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(91,189,45,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero .page-hero-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem;
}
.page-hero h1 { color: var(--ink); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; }

/* ======================== SECTION DIVIDERS ======================== */
.section-divider {
  width: 52px; height: 4px;
  background: var(--brand-gradient);
  border-radius: 4px;
  margin: 1.25rem 0 1.5rem;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }

/* ======================== ABOUT PAGE ======================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--brand-gradient-v);
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.42rem; top: 0.35rem;
  width: 12px; height: 12px;
  background: var(--brand-gradient);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year { font-size: 0.75rem; font-weight: 600; color: var(--green-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem; }
.timeline-item h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.88rem; line-height: 1.6; }

/* Note: Old .founder-card small-card styles removed — replaced by the magazine-layout
   .founder-card definition in the ABOUT PAGE COMPONENTS section below. */

/* ======================== CONTACT PAGE ======================== */
.contact-section { padding: var(--section-pad) 0; background: linear-gradient(160deg, #F5FBF2 0%, #EBF8F5 50%, #E8F3FD 100%); }

.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-gradient);
}

.form-floating label { color: var(--muted); font-size: 0.9rem; }
.form-control, .form-select {
  border: 1.5px solid #C8E6CC;
  border-radius: var(--radius-sm);
  font-size: 0.93rem; color: var(--ink);
  background-color: #F9FCF8;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(109,190,69,0.15);
  background-color: var(--bg-white);
  outline: none;
}

.contact-info-card {
  background: linear-gradient(135deg, #1A3A1C 0%, #0A2E2A 50%, #0A2040 100%);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  height: 100%;
  border: 1px solid rgba(109,190,69,0.15);
  box-shadow: var(--shadow-3d);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-gradient);
}

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(109,190,69,0.14);
  border: 1px solid rgba(109,190,69,0.28);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 1rem; flex-shrink: 0;
}
.contact-info-text strong {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 0.25rem;
}
.contact-info-text a, .contact-info-text p {
  font-size: 0.95rem; color: rgba(255,255,255,0.80);
  text-decoration: none; margin: 0;
  transition: color var(--t-fast) var(--ease);
}
.contact-info-text a:hover { color: var(--green-light); }

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  border: 1px solid #D6EED8;
}
.map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; }

/* ======================== SERVICES PAGE CARDS ======================== */
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--shadow-sm);
}
.service-detail-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-3d);
  transform: translateY(-5px);
}
.service-detail-img {
  width: 100%; height: 270px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.service-detail-card:hover .service-detail-img { transform: scale(1.04); }
.service-detail-inner { display: flex; gap: 2rem; align-items: flex-start; padding: 2.5rem; }
.service-detail-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(109,190,69,0.08);
  border: 1.5px solid rgba(109,190,69,0.20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--green-dark);
  transition: all var(--t-base) var(--ease);
}
.service-detail-card:hover .service-detail-icon {
  background: var(--brand-gradient);
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(91,189,45,0.38);
}
.service-detail-body { flex: 1; }
.service-detail-body h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.65rem; }
.service-detail-body p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }

/* ======================== BADGE PILLS ======================== */
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
}
.badge-pill.green  { background: rgba(109,190,69,0.10); color: var(--green-dark); border: 1px solid rgba(109,190,69,0.25); }
.badge-pill.amber  { background: rgba(245,158,11,0.10); color: #B45309; border: 1px solid rgba(245,158,11,0.30); }
.badge-pill.teal   { background: rgba(0,196,180,0.10); color: var(--cyan-dark); border: 1px solid rgba(0,196,180,0.25); }
.badge-pill.blue   { background: rgba(0,174,239,0.10); color: var(--blue-dark); border: 1px solid rgba(0,174,239,0.25); }

/* ======================== MISC CARDS ======================== */
.dark-card {
  background: linear-gradient(145deg, #F2FAF0 0%, #EBF8F5 100%);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base) var(--ease);
}
.dark-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(109,190,69,0.25); }
.dark-card h4 { color: var(--ink); }
.dark-card p { color: var(--muted); }

.step-num {
  width: 30px; height: 30px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.78rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(91,189,45,0.35);
}

/* ======================== CAROUSEL INDICATORS ======================== */
.carousel-indicator-dot {
  opacity: 1 !important;
  transition: all var(--t-base) var(--ease) !important;
}

/* ======================== OUR CLIENTS ======================== */
.clients-section {
  padding: var(--section-pad) 0;
  background-color: var(--bg-alt);
  overflow: hidden;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 100%);
}
.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, transparent 100%);
}

.marquee-content {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollMarqueeClients 30s linear infinite;
  align-items: center;
}

.marquee-content img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all var(--t-base) var(--ease);
}

.marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scrollMarqueeClients {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.5rem)); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 991px) {
  .hero-visual { margin-top: 2rem; }
  .hero-float-card { display: none; }
  .hero-img-wrapper { transform: none !important; }
  .about-img-wrapper img { height: 360px; }
  .cta-border-box { padding: 2.5rem 1.5rem; }
  .service-detail-inner { flex-direction: column; gap: 1.25rem; }
}
@media (max-width: 767px) {
  :root { --section-pad: 4.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .founder-card { padding: 2rem 1.5rem; }
}
/* MEP card: force vertical stack on small screens */
@media (max-width: 576px) {
  #service-mep { flex-direction: column !important; max-width: 100% !important; }
  #service-mep > div:first-child { width: 100% !important; height: 195px; }
}
/* Hero badge: hide on very small screens to prevent overflow */
@media (max-width: 480px) {
  .hero-img-badge { display: none; }
  .navbar-brand img { height: 36px; width: 40px; }
}
/* ======================== ABOUT PAGE COMPONENTS ======================== */

/* --- Who We Are / Intro Section --- */
.about-intro-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.about-intro-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d), 0 0 0 1px rgba(109,190,69,0.08);
  transition: transform 0.5s var(--ease);
}
.about-intro-img-wrapper:hover {
  transform: scale(1.015);
}
.about-intro-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.about-intro-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(5,12,26,0.92) 0%, rgba(5,12,26,0.4) 60%, transparent 100%);
  color: #fff;
}
.about-intro-overlay-num {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

/* Stat counters on about page */
.about-intro-section .count-up {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #0F2812 0%, #0A2E2A 50%, #0A1F38 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mission-box {
  padding: 2.5rem 3rem 2.5rem 0;
  height: 100%;
  border-right: 1px solid rgba(109,190,69,0.15);
}
.vision-box {
  padding: 2.5rem 0 2.5rem 3rem;
  height: 100%;
}

.mv-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all var(--t-base) var(--ease);
}
.mv-icon.green {
  background: rgba(109,190,69,0.12);
  color: var(--green-light);
  border: 1px solid rgba(109,190,69,0.18);
}
.mv-icon.cyan {
  background: rgba(0,174,239,0.12);
  color: var(--cyan);
  border: 1px solid rgba(0,174,239,0.18);
}

@media (max-width: 767px) {
  .mission-box {
    padding: 1.5rem 0 2rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(109,190,69,0.15);
    margin-bottom: 2rem;
  }
  .vision-box { padding: 1.5rem 0; }
}

/* --- Founder Section --- */
.founder-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #F5FBF2 0%, #EEF8F5 50%, #EAF5FB 100%);
}
.founder-card {
  background: var(--bg-white);
  border: 1px solid #D6EED8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-gradient);
  z-index: 1;
}
.founder-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-color: transparent;
}
.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 550px;
  display: block;
  transition: transform 0.6s var(--ease);
}
.founder-card:hover img {
  transform: scale(1.03);
}
.founder-card-body {
  padding: 3.5rem 3rem;
}
.founder-card-body .btn-outline-dark {
  border-color: #D6EED8;
  color: var(--ink-light);
  border-radius: 100px;
}
.founder-card-body .btn-outline-dark:hover {
  background: var(--bg-green);
  border-color: var(--green);
  color: var(--green-dark);
}

@media (max-width: 991px) {
  .founder-card img { min-height: 350px; }
  .founder-card-body { padding: 2.5rem 1.5rem; }
}

/* --- Values Section --- */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

/* Value cards — use the .dark-card class which is actually a light card */
.dark-card .mv-icon.green {
  background: rgba(109,190,69,0.15);
  color: var(--green-dark);
  border: 1px solid rgba(109,190,69,0.22);
}
.dark-card .mv-icon.cyan {
  background: rgba(0,174,239,0.15);
  color: var(--blue-dark);
  border: 1px solid rgba(0,174,239,0.22);
}
.dark-card:hover .mv-icon {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 22px rgba(91,189,45,0.35);
}

/* --- Milestone Section --- */
.milestone-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #F5FBF2 0%, #EEF8F5 50%, #EAF5FB 100%);
}

/* --- About Page Responsive --- */
@media (max-width: 991px) {
  .about-intro-section { padding: 5rem 0; }
  .founder-section { padding: 5rem 0; }
  .values-section { padding: 5rem 0; }
  .milestone-section { padding: 5rem 0; }
}
@media (max-width: 767px) {
  .about-intro-overlay { padding: 1.5rem 1.25rem; }
  .about-intro-overlay-num { font-size: 2.5rem; }
}

