/* ============================================================
   SHARED STYLES â€” Moneymatics Financial Services
   Professional palette: Deep Forest Green + Warm Gold + White
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  /* PRIMARY â€” Emerald & Mint Greens */
  --green-hero: #08ac67;
  /* hero bg, footer */
  --green-dark: #068d54;
  /* deep dark green */
  --green-brand: #08ac67;
  /* brand primary */
  --green: #78c597;
  /* medium brand green */
  --green-mid: #78c597;
  /* lighter interactive */
  --green-pale: #e4f9ed;
  /* ultra-light bg tint */
  --green-bg: #e4f9ed;
  /* light card bg */

  /* ACCENTS â€” Neutral & White */
  --gold: #08ac67;
  /* Replacing gold with primary green for a unified look */
  --gold-warm: #78c597;
  --gold-light: #e4f9ed;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-bg: #F1F5F9;
  --gray-light: #E2E8F0;
  --gray-mid: #CBD5E1;
  --text-dark: #0F1F16;
  /* near black with green tint */
  --text-body: #1E2D24;
  /* professional dark green-black */
  --text-mid: #3A4D42;
  /* secondary deep green */
  --gray: #64748B;
  /* muted text */

  /* Card */
  --card-g1: #ffffff;
  --card-g2: #e4f9ed;

  /* Glass (for dark sections) */
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

body {
  font-family: "SweetSans", "Outfit", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SweetSans", "Outfit", sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(22px, -22px) scale(1.06);
  }
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 197, 151, .4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(120, 197, 151, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(120, 197, 151, 0);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 172, 103, .35);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(8, 172, 103, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(8, 172, 103, 0);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(26, 120, 64, .2);
  }

  50% {
    border-color: rgba(26, 120, 64, .55);
  }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.slide-left {
  transform: translateX(-46px);
}

.reveal.slide-right {
  transform: translateX(46px);
}

.reveal.scale-in {
  transform: scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

.reveal-d4 {
  transition-delay: .4s;
}

.reveal-d5 {
  transition-delay: .5s;
}

.reveal-d6 {
  transition-delay: .6s;
}

.reveal-d7 {
  transition-delay: .7s;
}

.reveal-d8 {
  transition-delay: .8s;
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0.2rem 0;
  transition: background .4s ease, padding .35s ease, box-shadow .4s ease;
  /*background:transparent;*/
  background: #fff;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  box-shadow: 0 2px 24px rgba(8, 172, 103, .12);
}

#mainNav.scrolled .nav-link-custom {
  color: var(--text-dark) !important;
}

#mainNav.scrolled .nav-link-custom:hover {
  color: #000 !important;
}

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,31,22,0.85%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo-wrap {
  border-radius: 8px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  transition: background .3s;

}

#mainNav.scrolled .navbar-logo-wrap {}

.navbar-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-link-custom {
  color: #000 !important;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .4rem .9rem !important;
  transition: color .25s;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}

.nav-link-custom:hover::after,
.nav-link-custom.active-page::after {
  transform: scaleX(1);
}

.nav-link-custom:hover {
  color: #08ac67 !important;
}

.nav-link-custom.active-page {
  color: #08ac67 !important;
}

#mainNav.scrolled .nav-link-custom.active-page {
  color: var(--green-brand) !important;
}

#mainNav.scrolled .nav-link-custom::after {
  background: var(--green-brand);
}

.nav-cta {
  background: linear-gradient(135deg, #08ac67, #068d54);
  color: #ffffff !important;
  border-radius: 12px;
  padding: .45rem 1.3rem !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(8, 172, 103, .25);
  transition: transform .22s, box-shadow .22s, background .22s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(8, 172, 103, 0.4);
  color: #ffffff !important;
  background: linear-gradient(135deg, #068d54, #08ac67);
}

.nav-cta::after {
  display: none;
}

#mainNav.light-nav .nav-cta,
#mainNav.scrolled .nav-cta {
  color: #ffffff !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .22);
  padding: .3rem .6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

#mainNav.light-nav .nav-link-custom {
  color: var(--text-dark) !important;
}

#mainNav.light-nav .nav-link-custom:hover {
  color: var(--green) !important;
}

#mainNav.light-nav .navbar-toggler {
  border-color: rgba(15, 31, 22, .2);
}

#mainNav.light-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230F1F16' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   TICKER
============================================================ */
.ticker-section {
  background: linear-gradient(90deg, var(--green-dark), var(--green-brand));
  padding: .55rem 0;
  overflow: hidden;
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}

.ticker-item i {
  font-size: .65rem;
  color: var(--gold-light);
}

/* ============================================================
   PAGE HERO â€” Deep Forest Green
============================================================ */
.page-hero {
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #08ac67 0%, #068d54 30%, #08ac67 70%, #78c597 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 85% 20%, rgba(184, 137, 42, .08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 5% 95%, rgba(0, 0, 0, .25) 0%, transparent 50%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}

.page-hero-content {
  position: relative;
  z-index: 3;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.page-hero-tag i {
  font-size: .7rem;
  color: #e4f9ed;
}

.page-hero-title {
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.13;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.page-hero-title .accent {
  color: #e4f9ed;
}

.page-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.88;
  max-width: 520px;
  margin-top: 1.1rem;
}

.page-hero-right {
  position: relative;
  z-index: 3;
}

/* Breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 1.25rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.hero-breadcrumb a:hover {
  color: #e4f9ed;
}

.hero-breadcrumb span {
  color: #e4f9ed;
  font-weight: 600;
}

.hero-breadcrumb i {
  font-size: .6rem;
}

/* Inner-page hero cascade â€” CSS keyframes, never blank */
.hero-breadcrumb {
  animation: fadeInUp .4s ease .05s both;
}

.page-hero-tag {
  animation: fadeInUp .4s ease .15s both;
}

.page-hero-title {
  animation: fadeInUp .55s cubic-bezier(.19, 1, .22, 1) .28s both;
}

.page-hero-desc {
  animation: fadeInUp .5s ease .42s both;
}

.page-hero-content .btn-gold {
  animation: fadeInUp .4s ease .56s both;
}

.page-hero-content .btn-outline-white {
  animation: fadeInUp .4s ease .66s both;
}

/* ============================================================
   SECTION COMMONS
============================================================ */
@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #08ac67;
  margin-bottom: 1.2rem;
  background: #e4f9ed;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(8, 172, 103, 0.15);
  box-shadow: 0 4px 12px rgba(8, 172, 103, 0.08);
  animation: badgeFloat 3.5s ease-in-out infinite;
}

.section-badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #08ac67;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.section-badge.gold-badge {
  color: var(--gold);
}

.section-badge.gold-badge::before {
  background: var(--gold);
}

.section-badge.white-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-badge.white-badge::before {
  background: #ffffff;
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-title .accent {
  background: linear-gradient(135deg, #08ac67 0%, #78c597 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.section-title .gold-acc {
  color: var(--gold);
}

.section-title.light {
  color: #fff;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.88;
  max-width: 570px;
}

.divider-green {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-brand), transparent);
  border-radius: 3px;
  margin: 1.1rem 0;
}

.divider-gold {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
  margin: 1.1rem 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-green {
  background: linear-gradient(135deg, var(--green-brand), var(--green-mid));
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-primary-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(8, 172, 103, .2);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, #e4f9ed, #78c597);
  color: #05140A;
  border: 1px solid rgba(8, 172, 103, 0.2);
  padding: .85rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 10px 20px rgba(8, 172, 103, 0.15);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(8, 172, 103, 0.3);
  color: #05140A;
  background: linear-gradient(135deg, #ffffff, #78c597);
}



.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  padding: .8rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 31, 22, .2);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .9);
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline-green {
  background: transparent;
  border: 1.5px solid var(--green-brand);
  color: var(--green-brand);
  padding: .8rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-outline-green:hover {
  background: var(--green-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 92, 50, .25);
}

/* ============================================================
   SERVICE CARDS â€” Clean White
============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 18px;
  padding: 2rem;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 172, 103, .05);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-brand), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(20, 92, 50, .05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(8, 172, 103, .12);
  border-color: rgba(8, 172, 103, .25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.sc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--green-pale);
  border: 1px solid rgba(20, 92, 50, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all .3s;
}

.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--green-brand), var(--green));
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(8, 172, 103, .25);
}

.sc-icon i {
  font-size: 1.45rem;
  color: var(--green-brand);
  transition: color .3s, transform .3s;
}

.service-card:hover .sc-icon i {
  color: #fff;
  animation: floatIcon 2s ease-in-out infinite;
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .55rem;
  letter-spacing: ;
}

.service-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  margin: 0;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--green-brand);
  font-size: .8rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap .25s, color .25s;
}

.service-card:hover .sc-link {
  gap: .6rem;
  color: var(--gold);
}

.sc-badge-cat {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--green-pale);
  border: 1px solid rgba(20, 92, 50, .2);
  color: var(--green-brand);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================================
   BENEFIT / FEATURE CARDS
============================================================ */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(8, 172, 103, .05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(8, 172, 103, .1);
  border-color: rgba(8, 172, 103, .22);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(-5deg) scale(1.08);
}

.benefit-icon i {
  font-size: 1.25rem;
  color: var(--gold-light);
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.benefit-card p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   STATS BAND â€” full-width centered design
============================================================ */
.stats-band {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: linear-gradient(180deg, #0A2015 0%, #0D2B1B 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 137, 42, .07), transparent 65%);
  pointer-events: none;
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num-xl {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.stat-num-xl em {
  color: var(--gold-light);
  font-style: normal;
}

.stat-accent-line {
  display: block;
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  margin-bottom: .45rem;
}

.stat-lbl-xl {
  font-family: 'Inter', sans-serif;
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
}

@media(min-width:1200px) {
  .stat-num-xl {
    font-size: 3.5rem;
  }

  .stat-cell {
    padding: 4rem 2rem;
  }
}

@media(min-width:1400px) {
  .stat-num-xl {
    font-size: 4rem;
  }

  .stat-cell {
    padding: 4.5rem 2.5rem;
  }
}

@media(max-width:767px) {
  .stats-band {
    flex-wrap: wrap;
  }

  .stat-cell {
    flex: 0 0 50%;
    padding: 2.25rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none;
  }

  .stat-num-xl {
    font-size: 2.4rem;
  }
}

/* ============================================================
   PROCESS STEPS
============================================================ */
.process-step {
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================================
   BENEFIT / FEATURE CARDS
============================================================ */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(8, 172, 103, .05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(8, 172, 103, .1);
  border-color: rgba(8, 172, 103, .22);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(-5deg) scale(1.08);
}

.benefit-icon i {
  font-size: 1.25rem;
  color: var(--gold-light);
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   STATS BAND â€” full-width centered design
============================================================ */
.stats-band {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: linear-gradient(180deg, #0A2015 0%, #0D2B1B 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 137, 42, .07), transparent 65%);
  pointer-events: none;
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num-xl {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.stat-num-xl em {
  color: var(--gold-light);
  font-style: normal;
}

.stat-accent-line {
  display: block;
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  margin-bottom: .45rem;
}

.stat-lbl-xl {
  font-family: 'Inter', sans-serif;
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
}

@media(min-width:1200px) {
  .stat-num-xl {
    font-size: 3.5rem;
  }

  .stat-cell {
    padding: 4rem 2rem;
  }
}

@media(min-width:1400px) {
  .stat-num-xl {
    font-size: 4rem;
  }

  .stat-cell {
    padding: 4.5rem 2.5rem;
  }
}

@media(max-width:767px) {
  .stats-band {
    flex-wrap: wrap;
  }

  .stat-cell {
    flex: 0 0 50%;
    padding: 2.25rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none;
  }

  .stat-num-xl {
    font-size: 2.4rem;
  }
}

/* ============================================================
   PROCESS STEPS
============================================================ */
.process-step {
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-brand), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 5px 18px rgba(20, 92, 50, .28);
  transition: transform .3s;
}

.process-step:hover .step-num {
  transform: scale(1.1) rotate(5deg);
}

.step-content h6 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.step-content p {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  margin-bottom: .7rem;
  overflow: hidden;
  background: var(--white);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: background .2s;
  gap: 1rem;
}

.faq-header:hover {
  background: var(--off-white);
}

.faq-header h6 {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.faq-header i {
  color: var(--green-brand);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-header {
  background: var(--green-pale);
}

.faq-item.open .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-body {
  max-height: 500px;
}

.faq-body-inner {
  padding: 0 1.4rem 1.2rem;
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.88;
}

/* ============================================================
   FORMS
============================================================ */
.form-lbl {
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: .4rem;
  display: block;
}

.form-inp {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 9px;
  padding: .85rem 1.15rem;
  color: var(--text-dark);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.form-inp:focus {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 3px rgba(20, 92, 50, .1);
  background: var(--white);
}

.form-inp::placeholder {
  color: var(--gray);
  opacity: .7;
}

textarea.form-inp {
  resize: vertical;
  min-height: 120px;
}

select.form-inp {
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.4rem;
}

/* ============================================================
   GLASS CARD (dark bg sections)
============================================================ */
.glass-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 2.25rem;
}

/* ============================================================
   FEATURE BOX
============================================================ */
.feature-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 172, 103, .04);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(8, 172, 103, .1);
  border-color: rgba(8, 172, 103, .22);
}

.feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-brand);
  line-height: 1;
}

/* ============================================================
   TAGS / CHIPS
============================================================ */
.chip {
  display: inline-flex;
  background: var(--green-pale);
  border: 1px solid rgba(8, 172, 103, .18);
  color: var(--green-brand);
  border-radius: 6px;
  padding: .22rem .65rem;
  font-size: .7rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #78c597;
  padding: 5rem 0 2rem;
  border-radius: 0;
  position: relative;
  margin-top: 80px;
}

footer::before {
  content: '';
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2378c597' d='M0,100 L0,50 Q 180,100 360,50 T 720,50 T 1080,50 T 1440,50 L 1440,100 Z' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-logo-wrap {
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
}

.footer-logo-wrap img {
  height: 60px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 15px;
  color: #2c2c2c;
  margin-top: .8rem;
  line-height: 1.75;
  max-width: 325px;
}

.footer-heading {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #2c2c2c;
  margin-bottom: 1.2rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: .45rem;
}

.footer-contact-row i {
  color: #2c2c2c;
  margin-top: .1rem;
  flex-shrink: 0;
}

.social-row {
  display: flex;
  gap: .55rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .25s;
}

.social-btn:hover {
  background: #ffffff;
  color: var(--green-dark);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.footer-hr {
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  margin: 3rem 0 1.5rem;
}

.footer-bottom {
  font-size: .95rem;
  font-weight: 500;
  color: #2c2c2c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #2c2c2c;
  font-size: .95rem;
  font-weight: 500;
  transition: color .25s;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green-brand), var(--green-mid));
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 18px rgba(20, 92, 50, .35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  transform: translateY(-3px) !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
/* ============================================================
   RESPONSIVE
 ============================================================ */
@media (max-width: 991.98px) {
  #mainNav {
    background: #fff !important;
    padding: .4rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  }
  #navbarNav .clslogin {
    display: none !important;
  }
  .navbar-collapse {
    background: #fff;
    margin: .8rem -.75rem 0;
    padding: 1rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
  }

  .nav-link-custom {
    padding: .6rem 1rem !important;
    font-size: .95rem;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    display: block;
    color: var(--text-dark) !important;
  }

  .nav-item:last-child .nav-link-custom {
    border-bottom: none;
  }

  .nav-link-custom::after {
    display: none;
  }

  .nav-cta {
    margin: 1rem 0 0.5rem 1rem;
    display: inline-block;
    padding: .65rem 1.8rem !important;
     color: #fff !important;
  }

  /* Fix text visibility when scrolled on mobile */
  /*#mainNav.scrolled .nav-link-custom {
    color: #000 !important;
  }*/

  #mainNav.scrolled .nav-link-custom.active-page {
    color: var(--green-brand) !important;
  }

  #mainNav.scrolled .nav-link-custom:hover {
    color: var(--green-brand) !important;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230F1F16' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  .navbar-toggler {
    border-color: rgba(15, 31, 22, 0.1) !important;
  }

  #scrollTop {
    right: 1rem;
  }

  #hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }
}

/* === RESTORED DESKTOP CSS === */
.page-hero {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}

h1.hero-title {
  font-size: clamp(2rem, 8vw, 3rem);
  text-align: center;
}

.hero-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .d-flex {
  justify-content: center;
}

.hero-eyebrow {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
}

.hero-certs {
  justify-content: center;
}

.portfolio-card {
  margin-top: 2rem;
}
}

@media (max-width: 767.98px) {
  .nav-link-custom:hover {
    color: #1A7840 !important;
  }

  .nav-link-custom {
    color: #fff !important;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .page-hero-title {
    font-size: 1.9rem;
  }

  .team-avatar {
    height: 350px !important;
  }

  .stats-band {
    flex-wrap: wrap;
  }

  .stat-cell {
    flex: 0 0 50%;
    padding: 2rem 1rem;
  }

  .av-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem !important;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-logo-wrap {
    padding: 4px 8px;
  }
}

/* Blog Cards */
/* Premium Blog Cards */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(20, 92, 50, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(20, 92, 50, 0.12);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
}

.blog-card-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--green-brand);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  color: var(--gold-warm);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-meta i {
  color: var(--green-brand);
  margin-right: 0.2rem;
  font-size: 0.9rem;
}

.blog-card-title {
  font-family: 'SweetSans', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark, #0F1F16);
  line-height: 1.35;
  margin-bottom: 1rem;
  transition: color 0.25s ease;
  display: block;
}

.blog-card-title:hover {
  color: var(--green-brand);
}

.blog-card-excerpt {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.blog-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(20, 92, 50, 0.1);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  color: var(--green-brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--gold-warm);
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(6px);
}

/* Blog Details */
.blog-header-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.blog-content {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-content h2,
.blog-content h3 {
  /*font-family: 'DM Serif Display', serif;*/
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-content blockquote {
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* ============================================================
   RESPONSIVE FOOTER FIXES
============================================================ */
@media (max-width: 767.98px) {
  footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-heading {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-logo-wrap {
    margin-bottom: 0.5rem !important;
  }

  .social-row {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
    gap: 0.7rem;
    line-height: 1.8;
  }

  .footer-legal a {
    display: inline-block;
  }

  .footer-legal a:not(:last-child)::after {
    display: none;
  }

  .footer-contact-row {
    margin-bottom: 0.6rem;
  }

  footer .row.g-5 {
    --bs-gutter-y: 1.5rem;
  }

  .footer-hr {
    margin: 1.5rem 0 1.5rem;
  }
}


/* =========================================
   OVERRIDE: PREMIUM STATS BAND (V4 - SIMPLE ELEGANT)
========================================= */
.stats-band {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  background: linear-gradient(180deg, #0A2015 0%, #0D2B1B 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
}

.stat-cell {
  flex: 1 !important;
  min-width: 240px !important;
  text-align: center !important;
  padding: 4rem 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.4s ease, background 0.4s ease !important;
}

.stat-cell:last-child {
  border-right: none !important;
}

.stat-cell:hover {
  transform: translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.stat-num-xl {
  font-family: "DM Serif Display", serif !important;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  margin-bottom: 1rem !important;
  display: block !important;
  line-height: 1 !important;
  transition: text-shadow 0.4s ease !important;
}

.stat-num-xl em {
  font-style: normal !important;
}

.stat-cell:hover .stat-num-xl {
  text-shadow: 0 0 20px rgba(201, 155, 56, 0.3) !important;
}

.stat-accent-line {
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: rgba(201, 155, 56, 0.4) !important;
  margin-bottom: 1rem !important;
  transition: width 0.4s ease, background 0.4s ease !important;
}

.stat-cell:hover .stat-accent-line {
  width: 60px !important;
  background: var(--gold) !important;
}

@media(max-width:991px) {
  .stat-cell {
    flex: 0 0 50% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .stat-cell:nth-child(2n) {
    border-right: none !important;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none !important;
  }

  .stat-num-xl {
    font-size: 2.8rem !important;
  }
}

@media(max-width:575px) {
  .stat-cell {
    flex: 0 0 100% !important;
    border-right: none !important;
  }

  .stat-cell:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
}

/* =========================================
   OVERRIDE: GLOBAL BUTTON ANIMATION
========================================= */
@keyframes pulse-gold-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 197, 151, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(120, 197, 151, 0);
    transform: scale(1.03);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(120, 197, 151, 0);
    transform: scale(1);
  }
}

.btn-gold,
.btn-gold-premium {
  animation: pulse-gold-btn 2.5s infinite !important;
}

.btn-gold:hover {
  animation-play-state: paused !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(8, 172, 103, 0.2) !important;
}

@keyframes pulse-green-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    transform: scale(1.2);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    transform: scale(1);
  }
}

/* =========================================
   ABOUT US FLOATING BADGES RESPONSIVENESS
========================================= */
.floating-badge {
  position: absolute;
  z-index: 2;
  border-radius: 20px;
}

.top-badge {
  top: 15px;
  right: -25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  animation: floatUp 6s ease-in-out infinite;
}

.bottom-badge {
  bottom: 15px;
  left: -25px;
  background: linear-gradient(135deg, #08ac67 0%, #068d54 100%);
  color: #fff;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 20px 40px rgba(8, 172, 103, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: floatDown 7s ease-in-out infinite;
}

@media(max-width: 991px) {
  .top-badge {
    right: 10px;
    top: 10px;
    padding: 1rem 1.2rem;
  }

  .bottom-badge {
    left: 10px;
    bottom: 10px;
    padding: 1rem 1.2rem;
  }
}

@media(max-width: 575px) {

  .top-badge,
  .bottom-badge {
    border-radius: 12px;
  }

  .top-badge {
    right: 5px;
    top: 5px;
    padding: 0.8rem 1rem;
    gap: 0.8rem !important;
  }

  .bottom-badge {
    left: 5px;
    bottom: 5px;
    padding: 0.8rem 1rem;
    gap: 0.8rem !important;
  }
}

/* =========================================
   MOBILE TOUCH ANIMATIONS (CONTINUOUS HOVER EFFECTS)
========================================= */
@media (hover: none) and (pointer: coarse) {
  @keyframes mobile-stat-pulse {

    0%,
    100% {
      transform: translateY(0);
      background: transparent;
    }

    50% {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.02);
    }
  }

  @keyframes mobile-line-pulse {

    0%,
    100% {
      width: 40px;
      background: rgba(120, 197, 151, 0.4);
    }

    50% {
      width: 60px;
      background: var(--gold);
    }
  }

  @keyframes mobile-num-glow {

    0%,
    100% {
      text-shadow: none;
    }

    50% {
      text-shadow: 0 0 20px rgba(120, 197, 151, 0.3);
    }
  }

  .stat-cell {
    animation: mobile-stat-pulse 4s infinite ease-in-out !important;
  }

  .stat-cell .stat-accent-line {
    animation: mobile-line-pulse 4s infinite ease-in-out !important;
  }

  .stat-cell .stat-num-xl {
    animation: mobile-num-glow 4s infinite ease-in-out !important;
  }

  /* Stagger the animations so they ripple across the screen beautifully */
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(1) .stat-accent-line,
  .stat-cell:nth-child(1) .stat-num-xl {
    animation-delay: 0s !important;
  }

  .stat-cell:nth-child(2),
  .stat-cell:nth-child(2) .stat-accent-line,
  .stat-cell:nth-child(2) .stat-num-xl {
    animation-delay: 1s !important;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(3) .stat-accent-line,
  .stat-cell:nth-child(3) .stat-num-xl {
    animation-delay: 2s !important;
  }

  .stat-cell:nth-child(4),
  .stat-cell:nth-child(4) .stat-accent-line,
  .stat-cell:nth-child(4) .stat-num-xl {
    animation-delay: 3s !important;
  }
}

.nav-login-btn {
  background: transparent;
  color: var(--gold-light) !important;
  border: 1.5px solid var(--gold-light);
  border-radius: 7px;
  padding: .35rem 1.2rem !important;
  font-weight: 700;
  transition: all .22s ease;
  margin-left: 0.5rem;
}

/* =========================================
   GLOBAL MOBILE SPACING OPTIMIZATION
========================================= */
@media (max-width: 768px) {
  .page-hero {
    padding-top: 90px !important;
    padding-bottom: 2.5rem !important;
    min-height: auto !important;
  }

  section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .section-title {
    font-size: 1.85rem !important;
    margin-bottom: 1rem !important;
  }

  .section-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .ticker-section {
    padding: 0.4rem 0 !important;
  }
}

/* =========================================
   DESKTOP SPACING OVERRIDE
========================================= */
@media (min-width: 992px) {
  #hero {
    padding-top: 135px !important;
  }

  .page-hero {
    padding-top: 185px !important;
  }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-float i {
  animation: whatsapp-wiggle 5s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes whatsapp-wiggle {

  0%,
  90%,
  100% {
    transform: rotate(0);
  }

  92% {
    transform: rotate(-10deg);
  }

  94% {
    transform: rotate(10deg);
  }

  96% {
    transform: rotate(-10deg);
  }

  98% {
    transform: rotate(10deg);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/* Global Premium Header Bottom Shadow Override */
.navbar,
#mainNav {
  background: #ffffff !important;
  box-shadow: 0 4px 25px rgba(8, 172, 103, 0.07) !important;
  border-bottom: 1px solid rgba(8, 172, 103, 0.05) !important;
  transition: all 0.3s ease !important;
}

/* ============================================================
   HOME PAGE SPECIFIC STYLES â€” MOVED FROM INDEX.HTML
   ============================================================ */

/* --- BLOCK 1: BLOG & HOME GENERAL STYLES --- */
.blog-card {
  background: var(--white, #fff);
  border: 1px solid rgba(8, 172, 103, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(8, 172, 103, 0.12);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
}

.blog-card-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--green-brand, #08ac67);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  color: var(--gold-warm, #78c597);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-card-meta i {
  color: var(--green-brand, #08ac67);
  font-size: 0.95rem;
}

.blog-card-title {
  font-family: 'SweetSans', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark, #0F1F16);
  line-height: 1.35;
  margin-bottom: 1rem;
  transition: color 0.25s ease;
  display: block;
}

.blog-card-title:hover {
  color: var(--green-brand, #08ac67);
}

.blog-card-excerpt {
  color: var(--gray, #64748B);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.blog-card-footer {
  border-top: 1px solid rgba(8, 172, 103, 0.06);
  padding-top: 1.25rem;
  margin-top: auto;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-brand, #08ac67);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s, transform 0.25s;
}

.blog-read-more i {
  transition: transform 0.25s;
}

.blog-read-more:hover {
  color: var(--gold-warm, #78c597);
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* --- BLOCK 2: REDESIGNED PREMIUM HERO & INTERACTIVE DASHBOARD STYLES --- */
.hero-redesign {
  position: relative;
  background: #ffffff !important;
  padding-top: 130px;
  padding-bottom: 45px;
  overflow: hidden;
}

.hero-dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 172, 103, 0.04) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

.hero-vector-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlowReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.vector-spin-slow {
  animation: spinSlow 80s linear infinite;
  transform-origin: 700px 700px;
}

.vector-spin-reverse {
  animation: spinSlowReverse 60s linear infinite;
  transform-origin: 700px 700px;
}

.allocation-donut {
  transform: rotate(-90deg);
}

.donut-segment {
  transform-origin: center;
  stroke-linecap: round;
  animation: drawDonut 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes drawDonut {
  from {
    stroke-dasharray: 0 100;
  }
}

.hero-ambient-glow {
  display: none;
}

.hero-stats-capsules {
  animation: fadeInDown 0.6s ease both;
}

.hero-stat-badge {
  background: rgba(8, 172, 103, 0.05);
  border: 1px solid rgba(8, 172, 103, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-stat-badge:hover {
  background: rgba(8, 172, 103, 0.1);
  border-color: rgba(8, 172, 103, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stat-badge-val {
  font-family: 'SweetSans', 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: #0F1F16;
  font-weight: 800;
  line-height: 1;
}

.stat-badge-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
  font-weight: 700;
}

.hero-main-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  color: #0F1F16 !important;
  letter-spacing: -2px !important;
  margin-bottom: 25px !important;
  animation: fadeInUpCustom 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.text-gradient {
  background: linear-gradient(135deg, #08ac67 0%, #068d54 50%, #78c597 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  background-position: 200% center;
  animation: shineText 4s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 0% center;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: #52665A;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 500;
  animation: fadeInUpCustom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.15s both;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUpCustom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.btn-premium-solid {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #08ac67, #068d54);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(8, 172, 103, 0.25);
}

.btn-premium-solid::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
}

.btn-premium-solid:hover::after {
  left: 100%;
}

.btn-premium-solid i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-premium-solid:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(8, 172, 103, 0.35);
  color: #ffffff;
}

.btn-premium-solid:hover i {
  transform: translateX(4px);
}

.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid #08ac67;
  color: #08ac67;
  padding: 14px 34px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-premium-outline:hover {
  background: rgba(8, 172, 103, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 172, 103, 0.08);
  color: #08ac67;
}

.interactive-dashboard-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  z-index: 5;
  animation: floatFull 8s ease-in-out infinite;
}

@keyframes floatFull {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.main-dashboard-card {
  position: absolute;
  top: 50px;
  left: 20px;
  width: 82%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 172, 103, 0.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
  z-index: 2;
  transition: transform 0.3s ease;
}

.main-dashboard-card:hover {
  transform: scale(1.01);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.dash-lbl {
  font-size: 0.8rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: opacity 0.25s ease;
}

.dash-val {
  font-family: 'SweetSans', 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F1F16;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.25s ease;
}

.dash-up-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #08ac67;
  background: rgba(8, 172, 103, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.dash-timeframe {
  font-size: 0.75rem;
  font-weight: 800;
  color: #08ac67;
  background: rgba(8, 172, 103, 0.06);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(8, 172, 103, 0.1);
}

.svg-chart-container {
  width: 100%;
  height: 160px;
}

.performance-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.23, 1, 0.32, 1), stroke 0.5s ease;
}

.chart-area-path {
  transition: d 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.chart-pulse-node {
  transition: cx 1.5s cubic-bezier(0.23, 1, 0.32, 1), cy 1.5s cubic-bezier(0.23, 1, 0.32, 1), fill 0.5s ease;
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
}

.card-allocation {
  position: absolute;
  top: 90px;
  right: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 172, 103, 0.15);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  z-index: 3;
  animation: floatAllocation 6s ease-in-out infinite alternate;
}

@keyframes floatAllocation {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.card-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0F1F16;
  margin-bottom: 15px;
}

.badge-active {
  font-size: 0.65rem;
  color: #ffffff;
  background: #08ac67;
  padding: 3px 8px;
  border-radius: 12px;
}

.allocation-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alloc-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #52665A;
  font-weight: 600;
  transition: all 0.25s ease;
}

.alloc-interactive-item:hover {
  background: rgba(8, 172, 103, 0.06);
  transform: translateX(3px);
}

.alloc-interactive-item.active-alloc {
  background: rgba(8, 172, 103, 0.12) !important;
  box-shadow: inset 0 0 0 1px rgba(8, 172, 103, 0.2);
}

.alloc-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.alloc-color.mf {
  background: #08ac67;
}

.alloc-color.pms {
  background: #78c597;
}

.alloc-color.bonds {
  background: #C99B38;
}

.alloc-name {
  flex-grow: 1;
}

.card-returns {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 245px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 172, 103, 0.15);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
  animation: floatReturns 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatReturns {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.return-icon {
  width: 44px;
  height: 44px;
  background: rgba(8, 172, 103, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08ac67;
  font-size: 1.2rem;
}

.ret-val {
  font-family: 'SweetSans', 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0F1F16;
}

.ret-lbl {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 700;
}

.card-security {
  position: absolute;
  top: 0;
  left: 100px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 172, 103, 0.15);
  border-radius: 50px;
  padding: 10px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 700;
  color: #08ac67;
  animation: floatSecurity 7s ease-in-out infinite;
}

@keyframes floatSecurity {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-redesign {
    padding-top: 110px !important;
    padding-bottom: 20px !important;
  }

  .hero-text-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .hero-main-title {
    font-size: 2.8rem !important;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-capsules {
    justify-content: center;
  }

  .interactive-dashboard-wrapper {
    height: 380px;
    max-width: 450px;
    margin: 0 auto;
  }

  .main-dashboard-card {
    width: 85%;
    padding: 20px;
    left: 0;
    top: 30px;
  }

  .card-allocation {
    width: 170px;
    padding: 12px;
    top: 70px;
  }

  .card-returns {
    width: 200px;
    padding: 10px 15px;
    bottom: 10px;
  }

  .dash-val {
    font-size: 1.8rem;
  }

  .svg-chart-container {
    height: 120px;
  }
}

/* --- BLOCK 3: REGISTRATION COMPACT CARDS SYSTEM --- */
.registration-info-section {
  background: #f8fbf9;
  padding: 30px 0;
  border-top: 1px solid rgba(20, 92, 50, 0.05);
}

.reg-card-compact {
  background: #fff;
  border: 1px solid rgba(20, 92, 50, 0.08);
  border-radius: 12px;
  padding: 15px 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.reg-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(20, 92, 50, 0.08);
  border-color: rgba(20, 92, 50, 0.2);
}

.reg-card-compact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #05140A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.reg-info-list {
  border-top: 1px solid rgba(20, 92, 50, 0.06);
  padding-top: 10px;
}

.reg-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.reg-info-item label {
  font-size: 0.72rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-info-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #145C32;
}

/* --- BLOCK 4: FLOATING KEYFRAMES --- */
@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* --- BLOCK 5: TESTIMONIALS STYLES --- */
.testimonial-wrapper {
  position: relative;
  padding: 0 50px;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.t-card-wrapper {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  min-width: 320px;
}

@media (max-width: 991px) {
  .t-card-wrapper {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 767px) {
  .t-card-wrapper {
    flex: 0 0 100%;
  }

  .testimonial-wrapper {
    padding: 0;
  }

  .nav-btn {
    display: none !important;
  }
}

.t-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
  border: 1px solid rgba(20, 92, 50, 0.05);
  border-top: 4px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 92, 50, 0.12);
  border-top: 4px solid var(--green-brand);
}

.t-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.t-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(201, 155, 56, 0.25);
  border: 3px solid #fff;
}

.t-info {
  flex-grow: 1;
}

.t-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.t-role {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t-quote-icon {
  color: rgba(20, 92, 50, 0.03);
  font-size: 8rem;
  line-height: 1;
  position: absolute;
  right: 10px;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
}

.t-stars {
  color: #C99B38;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 2px;
}

.t-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid rgba(20, 92, 50, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: var(--green-brand);
  color: #fff;
  border-color: var(--green-brand);
  box-shadow: 0 8px 25px rgba(20, 92, 50, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-btn.left-btn {
  left: -15px;
}

.nav-btn.right-btn {
  right: -15px;
}
/* ============================================================
   AUTO-EXTRACTED INLINE/INTERNAL CSS
============================================================ */

/* Extracted from about.html */

    /* Timeline */
    .timeline {
      position: relative;
      padding-left: 2.5rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--green-brand), rgba(8, 172, 103, .1));
    }

    .tl-item {
      position: relative;
      padding-bottom: 2.5rem;
    }

    .tl-item:last-child {
      padding-bottom: 0;
    }

    .tl-dot {
      position: absolute;
      left: -2.9rem;
      top: .15rem;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-brand), var(--green-mid));
      border: 3px solid var(--white);
      box-shadow: 0 0 0 3px rgba(8, 172, 103, .2);
      flex-shrink: 0;
    }

    .tl-year {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--green-brand);
      margin-bottom: .3rem;
    }

    .tl-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: .35rem;
    }

    .tl-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.75;
    }

    /* Team cards */
    .team-card {
      background: var(--white);
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(8, 172, 103, 0.12);
    }

        /* Ensure consistent aspect ratio (4:5 standard portrait) for all team member photos */
    .team-avatar-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      height: auto;
      overflow: hidden;
      border-radius: 20px 20px 0 0;
    }

    .team-img {
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s ease;
    }

    .team-card:hover .team-img {
      transform: scale(1.08);
    }

    .team-social-overlay {
      position: absolute;
      bottom: -70px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 12px;
      padding: 30px 15px 20px;
      background: linear-gradient(to top, rgba(8, 172, 103, 0.95), transparent);
      transition: bottom 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .team-card:hover .team-social-overlay {
      bottom: 0;
      opacity: 1;
    }

    .team-social-overlay a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #08ac67;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      transform: translateY(20px);
      opacity: 0;
    }

    .team-card:hover .team-social-overlay a {
      transform: translateY(0);
      opacity: 1;
    }

    .team-card:hover .team-social-overlay a:nth-child(1) {
      transition-delay: 0.1s;
    }

    .team-card:hover .team-social-overlay a:nth-child(2) {
      transition-delay: 0.15s;
    }

    .team-social-overlay a:hover {
      background: var(--white);
      color: var(--green-brand);
      transform: translateY(-3px) scale(1.1);
    }

        .team-body {
      padding: 1.2rem 1.2rem;
      background: var(--white);
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .team-name {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.2rem;
    }

    .team-role {
      font-size: 0.8rem;
      font-weight: 700;
      color: #78c597;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .team-divider {
      width: 40px;
      height: 3px;
      background: var(--green-brand);
      margin: 0.6rem auto;
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .team-card:hover .team-divider {
      width: 60px;
    }

    .team-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.6;
      margin: 0;
    }

    /* Value cards */
    .value-card {
      background: linear-gradient(135deg, var(--card-g1), var(--card-g2));
      border: 1.5px solid rgba(8, 172, 103, .2);
      border-radius: 16px;
      padding: 2rem;
      transition: transform .3s, box-shadow .3s;
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 50px rgba(8, 172, 103, .12);
    }

    .value-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-brand));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
    }

    .value-icon i {
      font-size: 1.25rem;
      color: var(--gold-light);
    }

    .value-card h6 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: .5rem;
    }

    .value-card p {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.75;
      margin: 0;
    }

    /* Cert badge */
    .cert-card {
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }

    .cert-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(8, 172, 103, .1);
      border-color: rgba(8, 172, 103, .3);
    }

    .cert-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--green-pale);
      border: 1px solid rgba(8, 172, 103, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cert-icon i {
      font-size: 1.3rem;
      color: var(--green-brand);
    }

    .cert-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: .2rem;
    }

    .cert-no {
      font-size: 1rem;
      color: var(--gray);
    }
  

/* Extracted from about.html */

      .testimonial-wrapper {
        position: relative;
        padding: 0 50px;
        /* Leave space for buttons */
      }

      .testimonial-track {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        padding: 1rem 0 2rem 0;
        scroll-behavior: smooth;
      }

      .testimonial-track::-webkit-scrollbar {
        display: none;
        /* WebKit */
      }

      .t-card-wrapper {
        flex: 0 0 calc(33.333% - 1rem);
        scroll-snap-align: start;
        min-width: 320px;
      }

      @media (max-width: 991px) {
        .t-card-wrapper {
          flex: 0 0 calc(50% - 0.75rem);
        }
      }

      @media (max-width: 767px) {
        .t-card-wrapper {
          flex: 0 0 100%;
        }

        .testimonial-wrapper {
          padding: 0;
        }

        .nav-btn {
          display: none !important;
          /* Hide arrows on mobile */
        }
      }

      .t-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        height: 100%;
        border: 1px solid rgba(20, 92, 50, 0.05);
        border-top: 4px solid transparent;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
      }

      .t-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(20, 92, 50, 0.12);
        border-top: 4px solid var(--green-brand);
      }

      .t-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .t-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(201, 155, 56, 0.25);
        border: 3px solid #fff;
      }

      .t-info {
        flex-grow: 1;
      }

      .t-name {
        font-weight: 700;
        color: var(--navy);
        font-size: 1.05rem;
        margin-bottom: 0.1rem;
      }

      .t-role {
        font-size: 0.75rem;
        color: var(--gray);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .t-quote-icon {
        color: rgba(20, 92, 50, 0.03);
        font-size: 8rem;
        line-height: 1;
        position: absolute;
        right: 10px;
        bottom: -20px;
        z-index: 0;
        pointer-events: none;
      }

      .t-stars {
        color: #C99B38;
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        display: flex;
        gap: 2px;
      }

      .t-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--gray);
        font-style: italic;
        margin: 0;
        position: relative;
        z-index: 1;
      }

      /* Stylish Navigation Buttons */
      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #fff;
        border: 1px solid rgba(20, 92, 50, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        z-index: 10;
      }

      .nav-btn:hover {
        background: var(--green-brand);
        color: #fff;
        border-color: var(--green-brand);
        box-shadow: 0 8px 25px rgba(20, 92, 50, 0.2);
        transform: translateY(-50%) scale(1.05);
      }

      .nav-btn:active {
        transform: translateY(-50%) scale(0.95);
      }

      .nav-btn.left-btn {
        left: -15px;
      }

      .nav-btn.right-btn {
        right: -15px;
      }
    

.inline-css-e7fa4c {
  max-width:560px;
}

.inline-css-c16aaa {
  background:var(--white);padding:7rem 0;
}

.inline-css-02d760 {
  font-size:.92rem;color:var(--gray);line-height:1.85;
}

.inline-css-cca1e2 {
  background:linear-gradient(145deg,#08ac67,#068d54);border-radius:18px;padding:clamp(1rem,3vw,2rem);text-align:center;color:#fff;height:100%;
}

.inline-css-088477 {
  font-family: 'SweetSans', 'Outfit', sans-serif;font-size:clamp(1.2rem,4vw,2.4rem);font-weight:700;color:var(--gold-light);
}

.inline-css-7e9e0b {
  font-size:clamp(0.6rem,2vw,0.7rem);color:rgba(255,255,255,.42);text-transform:uppercase;letter-spacing:.08em;margin-top:.4rem;
}

.inline-css-c0b7c8 {
  font-family: 'Inter', sans-serif;font-size:clamp(1.2rem,4vw,2.4rem);font-weight:700;color:#fff;
}

.inline-css-7e3da5 {
  font-size:clamp(0.6rem,2vw,0.7rem);color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.08em;margin-top:.4rem;
}

.inline-css-b98465 {
  background:var(--green-pale);border:1.5px solid rgba(8, 172, 103, .18);border-radius:18px;padding:clamp(1rem,3vw,2rem);text-align:center;height:100%;
}

.inline-css-94c021 {
  font-family: 'SweetSans', 'Outfit', sans-serif;font-size:clamp(1.2rem,4vw,2.4rem);font-weight:700;color:var(--green-brand);
}

.inline-css-fd2f43 {
  font-size:clamp(0.6rem,2vw,0.7rem);color:var(--gray);text-transform:uppercase;letter-spacing:.08em;margin-top:.4rem;
}

.inline-css-d10158 {
  background:var(--gray-bg);border:1px solid var(--gray-light);border-radius:18px;padding:clamp(1rem,3vw,2rem);text-align:center;height:100%;
}

.inline-css-7be297 {
  font-family: 'SweetSans', 'Outfit', sans-serif;font-size:25px;font-weight:700;color:var(--text-dark);
}

.inline-css-46a6ac {
  background:var(--off-white);padding:6rem 0;
}

.inline-css-6f3391 {
  background:var(--white);padding:6rem 0;
}

.inline-css-069609 {
  background:linear-gradient(135deg,#08ac67 0%,#78c597 100%);padding:5rem 0;position:relative;overflow:hidden;
}

.inline-css-aab244 {
  position:absolute;top:-60px;right:-60px;width:240px;height:240px;background:radial-gradient(circle,rgba(255,255,255,.1),transparent);border-radius:50%;pointer-events:none;
}

.inline-css-52ad34 {
  font-size:clamp(1.9rem,4vw,2.8rem);font-weight:700;color:#fff;margin-bottom:1rem;
}

.inline-css-9c2dfe {
  color:rgba(255,255,255,.7);font-size:1rem;max-width:460px;margin:0 auto 2rem;
}

.inline-css-47721e {
  padding:.95rem 2.25rem;font-size:1rem;
}

.inline-css-5a113f {
  background: #fff; padding: 7rem 0; overflow: hidden; position: relative;
}

.inline-css-d85c4e {
  position: relative;
}

.inline-css-421b99 {
  color: #2c2c2c;
}

.inline-css-5d0b54 {
  color: rgba(255,255,255,0.8);
}

.inline-css-96e1cc {
  background:var(--white);padding:5rem 0;
}

.inline-css-61cca3 {
  width: 32px; height: 32px; padding: 0; line-height: 30px;
}

.inline-css-5366cb {
  background:linear-gradient(135deg,var(--green) 0%,#1E9952 100%);padding:5rem 0;position:relative;overflow:hidden;
}

/* Extracted from blog.html */

    .blog-card-excerpt {
      color: var(--gray, #64748B);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.8rem;
      flex-grow: 1;
    }

    .blog-card-footer {
      border-top: 1px solid rgba(20,92,50,0.06);
      padding-top: 1.25rem;
      margin-top: auto;
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--green-brand, #145C32);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: color 0.25s, transform 0.25s;
    }

    .blog-read-more i {
      transition: transform 0.25s;
    }

    .blog-read-more:hover {
      color: var(--gold-warm, #C99B38);
    }

    .blog-read-more:hover i {
      transform: translateX(4px);
    }
  

.inline-css-726833 {
  background:var(--light-bg);padding:6rem 0;
}

/* Extracted from contact.html */

    /* â”€â”€ Contact info strip cards â”€â”€ */
    .cic {
      background:#fff;
      border:1.5px solid rgba(8, 172, 103, .12);
      border-radius:20px;
      padding:2rem 1.5rem;
      text-align:center;
      height:100%;
      transition:transform .3s, box-shadow .3s, border-color .3s;
    }
    .cic:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(8, 172, 103, .13); border-color:rgba(8, 172, 103, .28); }
    .cic-icon {
      width:56px; height:56px; border-radius:14px;
      background:linear-gradient(135deg,var(--green-hero),var(--green-brand));
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 1.1rem;
      box-shadow:0 6px 18px rgba(8, 172, 103, .25);
      transition:transform .3s;
    }
    .cic:hover .cic-icon { transform:rotate(-6deg) scale(1.08); }
    .cic-icon i { font-size:1.3rem; color:#e4f9ed; }
    .cic-label { font-size:.67rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--green-brand); margin-bottom:.45rem; }
    .cic-value { font-size:.88rem; font-weight:700; color:#0F1F16; overflow-wrap:break-word; word-break:break-word; hyphens:none; }
    .cic-sub { font-size:.78rem; color:#6B7B6F; margin-top:.25rem; }

    /* â”€â”€ Form card â”€â”€ */
    .form-card {
      background:#fff;
      border:1px solid rgba(8, 172, 103, .1);
      border-radius:24px;
      padding:3rem 2.75rem;
      box-shadow:0 8px 48px rgba(8, 172, 103, .07);
    }
    @media(max-width:576px){ .form-card { padding:2rem 1.5rem; } }

    /* â”€â”€ Side panel â”€â”€ */
    .side-panel {
      background:linear-gradient(145deg,#08ac67 0%,#068d54 35%,#08ac67 100%);
      border-radius:22px;
      padding:2.5rem;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .side-panel::before {
      content:'';
      position:absolute; top:-60px; right:-60px;
      width:200px; height:200px;
      background:radial-gradient(circle,rgba(120, 197, 151, .18),transparent);
      border-radius:50%; pointer-events:none;
    }
    .side-panel::after {
      content:'';
      position:absolute; bottom:-40px; left:-40px;
      width:150px; height:150px;
      background:radial-gradient(circle,rgba(255,255,255,.04),transparent);
      border-radius:50%; pointer-events:none;
    }
    .side-panel-inner { position:relative; z-index:1; }
    .consult-feature {
      display:flex; align-items:flex-start; gap:.8rem;
      padding:.85rem 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .consult-feature:last-child { border-bottom:none; padding-bottom:0; }
    .consult-feature-icon {
      width:36px; height:36px; border-radius:10px; flex-shrink:0;
      background:rgba(120, 197, 151, .2); border:1px solid rgba(120, 197, 151, .35);
      display:flex; align-items:center; justify-content:center;
    }
    .consult-feature-icon i { font-size:.9rem; color:#e4f9ed; }
    .consult-feature-text { font-size:.85rem; color:rgba(255,255,255,.75); line-height:1.5; }
    .consult-feature-text strong { color:#fff; display:block; font-size:.88rem; margin-bottom:.1rem; }

    /* â”€â”€ Quick contact row â”€â”€ */
    .qc-btn {
      flex:1; border-radius:14px; padding:1.1rem .75rem;
      text-align:center; text-decoration:none;
      border:1.5px solid rgba(8, 172, 103, .15);
      background:#fff;
      transition:transform .25s, box-shadow .25s, border-color .25s;
    }
    .qc-btn:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(8, 172, 103, .14); border-color:rgba(8, 172, 103, .3); }
    .qc-btn i { font-size:1.4rem; display:block; margin-bottom:.4rem; }
    .qc-btn span { font-size:.73rem; font-weight:700; color:#0F1F16; display:block; letter-spacing:.02em; }

    /* â”€â”€ Office cards â”€â”€ */
    .office-card {
      background:#fff;
      border:1.5px solid rgba(8, 172, 103, .1);
      border-radius:18px;
      padding:1.85rem;
      height:100%;
      transition:transform .3s, box-shadow .3s, border-color .3s;
    }
    .office-card:hover { transform:translateY(-5px); box-shadow:0 18px 50px rgba(8, 172, 103, .12); border-color:rgba(8, 172, 103, .28); }
    .office-icon {
      width:46px; height:46px; border-radius:12px;
      background:linear-gradient(135deg,var(--green-hero),var(--green-brand));
      display:flex; align-items:center; justify-content:center;
      margin-bottom:1rem;
      box-shadow:0 4px 14px rgba(8, 172, 103, .22);
    }
    .office-icon i { color:#e4f9ed; font-size:1.1rem; }
    .office-hq-badge {
      display:inline-block; font-size:.62rem; font-weight:700;
      text-transform:uppercase; letter-spacing:.08em;
      background:rgba(120, 197, 151, .12); color:#08ac67;
      border:1px solid rgba(120, 197, 151, .25);
      border-radius:100px; padding:.2rem .65rem;
      margin-bottom:.5rem;
    }
    .office-city { font-size:1.05rem; font-weight:700; color:#0F1F16; margin-bottom:.45rem; }
    .office-addr { font-size:.83rem; color:#6B7B6F; line-height:1.75; }

    /* â”€â”€ Trust banner â”€â”€ */
    .trust-row {
      background:linear-gradient(145deg,#08ac67 0%,#068d54 40%,#08ac67 100%);
      border-radius:20px;
      padding:2.25rem 2.5rem;
      display:flex; flex-wrap:wrap;
      gap:1.5rem; align-items:center; justify-content:space-between;
    }
    .trust-item { display:flex; align-items:center; gap:.7rem; }
    .trust-item i { font-size:1.3rem; color:#e4f9ed; }
    .trust-item-text { font-size:.8rem; color:rgba(255,255,255,.65); }
    .trust-item-text strong { font-size:.85rem; color:#fff; display:block; }

    /* â”€â”€ Map placeholder â”€â”€ */
    .map-ph {
      background:linear-gradient(145deg,#08ac67,#068d54);
      border-radius:18px; height:220px;
      display:flex; flex-direction:column;
      align-items:center; justify-content:center;
      color:rgba(255,255,255,.4); gap:.6rem;
      font-size:.88rem; position:relative; overflow:hidden;
    }
    .map-ph::before {
      content:'';position:absolute;inset:0;
      background:radial-gradient(ellipse at center,rgba(120, 197, 151, .1),transparent);
    }
    .map-ph i { font-size:2.6rem; color:#e4f9ed; position:relative; z-index:1; animation:floatIcon 3s ease-in-out infinite; }
    .map-ph span, .map-ph a { position:relative; z-index:1; }


  

/* Extracted from contact.html */

      .multi-map-container {
        background: #fff;
        border-radius: 24px;
        border: 1px solid rgba(20, 92, 50, 0.1);
        box-shadow: 0 20px 60px rgba(11, 37, 24, 0.05);
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
      }
      .multi-map-sidebar {
        width: 35%;
        background: #F8FBF9;
        border-right: 1px solid rgba(20, 92, 50, 0.08);
        display: flex;
        flex-direction: column;
      }
      @media(max-width: 991px) {
        .multi-map-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(20, 92, 50, 0.08); }
      }
      .loc-tab {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(20, 92, 50, 0.05);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
      }
      .loc-tab:last-child { border-bottom: none; }
      .loc-tab:hover { background: rgba(20, 92, 50, 0.03); }
      .loc-tab.active {
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
      }
      .loc-tab.active::before {
        content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
        background: var(--gold, #D4A843); border-top-right-radius: 4px; border-bottom-right-radius: 4px;
      }
      .loc-title { font-size: 1.1rem; font-weight: 700; color: #0F1F16; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem; }
      .loc-tab.active .loc-title { color: var(--green-brand); }
      .loc-desc { font-size: 0.85rem; color: #6B7B6F; line-height: 1.5; margin-bottom: 0; }
      .multi-map-iframe {
        width: 65%;
        min-height: 500px;
        background: #e9ecef;
        position: relative;
      }
      @media(max-width: 991px) {
        .multi-map-iframe { width: 100%; min-height: 400px; }
      }
      .multi-map-iframe iframe {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
        transition: opacity 0.4s ease;
      }
    

/* Extracted from contact.html */

      .testimonial-wrapper {
        position: relative;
        padding: 0 50px;
        /* Leave space for buttons */
      }

      .testimonial-track {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        padding: 1rem 0 2rem 0;
        scroll-behavior: smooth;
      }

      .testimonial-track::-webkit-scrollbar {
        display: none;
        /* WebKit */
      }

      .t-card-wrapper {
        flex: 0 0 calc(33.333% - 1rem);
        scroll-snap-align: start;
        min-width: 320px;
      }

      @media (max-width: 991px) {
        .t-card-wrapper {
          flex: 0 0 calc(50% - 0.75rem);
        }
      }

      @media (max-width: 767px) {
        .t-card-wrapper {
          flex: 0 0 100%;
        }

        .testimonial-wrapper {
          padding: 0;
        }

        .nav-btn {
          display: none !important;
          /* Hide arrows on mobile */
        }
      }

      .t-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        height: 100%;
        border: 1px solid rgba(20, 92, 50, 0.05);
        border-top: 4px solid transparent;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
      }

      .t-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(20, 92, 50, 0.12);
        border-top: 4px solid var(--green-brand);
      }

      .t-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .t-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(201, 155, 56, 0.25);
        border: 3px solid #fff;
      }

      .t-info {
        flex-grow: 1;
      }

      .t-name {
        font-weight: 700;
        color: var(--navy);
        font-size: 1.05rem;
        margin-bottom: 0.1rem;
      }

      .t-role {
        font-size: 0.75rem;
        color: var(--gray);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .t-quote-icon {
        color: rgba(20, 92, 50, 0.03);
        font-size: 8rem;
        line-height: 1;
        position: absolute;
        right: 10px;
        bottom: -20px;
        z-index: 0;
        pointer-events: none;
      }

      .t-stars {
        color: #C99B38;
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        display: flex;
        gap: 2px;
      }

      .t-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--gray);
        font-style: italic;
        margin: 0;
        position: relative;
        z-index: 1;
      }

      /* Stylish Navigation Buttons */
      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #fff;
        border: 1px solid rgba(20, 92, 50, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        z-index: 10;
      }

      .nav-btn:hover {
        background: var(--green-brand);
        color: #fff;
        border-color: var(--green-brand);
        box-shadow: 0 8px 25px rgba(20, 92, 50, 0.2);
        transform: translateY(-50%) scale(1.05);
      }

      .nav-btn:active {
        transform: translateY(-50%) scale(0.95);
      }

      .nav-btn.left-btn {
        left: -15px;
      }

      .nav-btn.right-btn {
        right: -15px;
      }
    

.inline-css-2e5101 {
  max-width:540px;
}

.inline-css-59e83a {
  background:#F5F7F5; padding:4.5rem 0 0;
}

.inline-css-95ab50 {
  margin-top:-2.5rem; position:relative; z-index:5;
}

.inline-css-8fdce8 {
  text-decoration:none;
}

.inline-css-b8d64c {
  background:#F5F7F5; padding:5rem 0 6rem;
}

.inline-css-d48888 {
  font-size:.88rem; color:#6B7B6F; margin-bottom:2rem;
}

.inline-css-149070 {
  padding:1.1rem; font-size:.95rem; letter-spacing:.03em;
}

.inline-css-9786f4 {
  font-size:.73rem; color:#8A9A8E; text-align:center; margin:0;
}

.inline-css-b53eb7 {
  color:var(--green-brand);
}

.inline-css-58627a {
  display:none; text-align:center; padding:2.5rem 0;
}

.inline-css-c7105e {
  width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,var(--green-hero),var(--green-brand)); display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; box-shadow:0 8px 24px rgba(8, 172, 103, .3);
}

.inline-css-f80ce6 {
  font-size:2.2rem; color:#fff;
}

.inline-css-810c25 {
  color:#0F1F16; font-weight:700;
}

.inline-css-bb98fd {
  color:#6B7B6F; font-size:.9rem; margin-top:.5rem;
}

.inline-css-6dc65b {
  font-size:.67rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-light); margin-bottom:.4rem;
}

.inline-css-c0b490 {
  color:#fff; font-weight:700; font-size:1.35rem; margin-bottom:1.5rem; font-family: 'SweetSans', 'Outfit', sans-serif;
}

.inline-css-15ea78 {
  color:#25D366;
}

.inline-css-e02e64 {
  color:var(--gold);
}

.inline-css-c051eb {
  font-weight:600; color:rgba(255,255,255,.75);
}

.inline-css-af4a62 {
  color:var(--gold-light); font-size:.8rem; text-decoration:none; font-weight:600;
}

.inline-css-83ef90 {
  background:#fff; padding:6rem 0;
}

.inline-css-38bd08 {
  max-width:520px;
}

.inline-css-f257e1 {
  font-size:0.8rem;
}

.inline-css-46b42a {
  background:#F5F7F5; padding:6rem 0;
}

.inline-css-3551d0 {
  font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.8;
}

.inline-css-a05805 {
  font-family: 'SweetSans', 'Outfit', sans-serif; margin-bottom: 1.5rem; color: var(--green-brand);
}

.inline-css-db6a2c {
  margin-bottom: 2rem; color: var(--gray);
}

.inline-css-d00e8e {
  font-weight: bold; color: var(--text-dark); margin-top: 2rem;
}

.inline-css-9f3ec6 {
  color: var(--green-brand); font-weight: 600;
}

.inline-css-c04bd2 {
  color: #08ac67; margin-right: 3px;
}

.inline-css-650e12 {
  display: flex; align-items: center; gap: 6px;
}

.inline-css-4d2241 {
  color: #08ac67; font-size: 1rem;
}

.inline-css-00ee91 {
  position: relative; width: 62px; height: 62px; flex-shrink: 0;
}

.inline-css-a898fd {
  width: 100%; height: 100%;
}

.inline-css-a18320 {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; color: #0F1F16;
}

.inline-css-a7667d {
  flex-grow: 1;
}

.inline-css-8b01a2 {
  gap: 5px; margin-bottom: 2px; cursor: pointer; padding: 2px 6px; border-radius: 6px; transition: all 0.2s;
}

.inline-css-f5b2c9 {
  font-size: 0.72rem; white-space: nowrap; font-weight: 700;
}

.inline-css-44b1a5 {
  gap: 5px; cursor: pointer; padding: 2px 6px; border-radius: 6px; transition: all 0.2s;
}

.inline-css-71a9f1 {
  padding: 4rem 0; overflow: hidden;
}

.inline-css-18760c {
  margin-left: 10px; padding: 30px 0;
}

.inline-css-dcbacd {
  position: absolute; top: 0; right: 20px; width: 140px; height: 140px; background-image: radial-gradient(rgba(20, 92, 50,0.25) 2px, transparent 2px); background-size: 20px 20px; z-index: 0;
}

.inline-css-5d3835 {
  position: absolute; bottom: 0; left: -10px; width: 140px; height: 140px; background-image: radial-gradient(rgba(201,155,56,0.3) 2px, transparent 2px); background-size: 20px 20px; z-index: 0;
}

.inline-css-e5cfdd {
  position: absolute; top: 30px; left: -15px; width: 100%; height: calc(100% - 60px); border: 2px dashed rgba(20, 92, 50, 0.2); border-radius: 28px; z-index: 0; transform: rotate(-2deg);
}

.inline-css-ef6299 {
  position: absolute; bottom: 30px; right: -5px; width: 85%; height: 80%; background: linear-gradient(135deg, var(--green-pale, #E8F3EC), rgba(20, 92, 50,0.05)); border-radius: 28px; z-index: 0; transform: rotate(2deg);
}

.inline-css-aa2c7b {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 28px; border: 8px solid #fff; box-shadow: 0 30px 60px rgba(20, 92, 50,0.15); position: relative; z-index: 1;
}

.inline-css-b28bf4 {
  display: flex; align-items: center; gap: 1.2rem;
}

.inline-css-4a7082 {
  width: 52px; height: 52px; background: linear-gradient(135deg, rgba(20, 92, 50,0.1), rgba(20, 92, 50,0.02)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #145C32; box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
}

.inline-css-fa415b {
  font-size: 1.5rem;
}

.inline-css-b0d867 {
  font-weight: 800; font-size: 1.4rem; color: #0F1F16; line-height: 1; font-family: 'SweetSans', 'Outfit', sans-serif;
}

.inline-css-5824e5 {
  font-size: 0.8rem; color: #666; font-weight: 700; text-transform: uppercase; margin-top: 0.4rem; letter-spacing: 0.5px;
}

.inline-css-80d49d {
  display: none; align-items: center; gap: 1.2rem;
}

.inline-css-11970d {
  width: 52px; height: 52px; background: rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #C99B38; box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

.inline-css-decdbc {
  font-weight: 800; font-size: 1.4rem; line-height: 1; font-family: 'SweetSans', 'Outfit', sans-serif;
}

.inline-css-e1cc50 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-top: 0.4rem; letter-spacing: 0.5px; color: rgba(255,255,255,0.85);
}

.inline-css-7afff3 {
  font-size: 1.05rem; line-height: 1.8;
}

.inline-css-fb3235 {
  background: var(--white); padding: 1.25rem; border-radius: 16px; border: 1px solid rgba(20, 92, 50,0.06); box-shadow: 0 4px 15px rgba(0,0,0,0.02); height: 100%; transition: transform 0.3s ease;
}

.inline-css-63f2f1 {
  display:flex;gap:1rem;align-items:flex-start;
}

.inline-css-60aefb {
  width:46px;height:46px;border-radius:12px;background:var(--green-pale);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}

.inline-css-a13e72 {
  color:var(--green);font-size:1.3rem;
}

.inline-css-a8fe12 {
  font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:.3rem;
}

.inline-css-e75e7e {
  font-size:1rem;color:var(--gray);line-height:1.5;
}

.inline-css-717f19 {
  background: #fff; padding: 4rem 0; overflow: hidden; position: relative;
}

.inline-css-73cd67 {
  background:linear-gradient(135deg,var(--green) 0%,#1E9952 100%);padding:6rem 0;position:relative;overflow:hidden;
}

.inline-css-7dd756 {
  font-weight: bold; color: var(--text-dark);
}

/* Extracted from services.html */

    #services-main { background:var(--off-white); padding:5.5rem 0 6rem; }

    /* Filter */
    .filter-bar { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin-bottom:3rem; }
    .filter-btn {
      background:var(--white); border:1.5px solid var(--gray-light); color:var(--gray);
      padding:.48rem 1.25rem; border-radius:100px; font-size:.82rem; font-weight:600;
      cursor:pointer; transition:all .25s; font-family:'Inter',sans-serif;
    }
    .filter-btn:hover { border-color:var(--green-brand); color:var(--green-brand); }
    .filter-btn.active { background:var(--green-dark); border-color:var(--green-dark); color:#e4f9ed; }

    /* Extended service card */
    .svc-card {
      background:var(--white);
      border:1px solid var(--gray-light); border-radius:20px; padding:2.25rem;
      height:100%; position:relative; overflow:hidden;
      transition:transform .35s, box-shadow .35s, border-color .35s;
      box-shadow:0 2px 12px rgba(8, 172, 103, .05);
    }
    .svc-card::before {
      content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
      background:linear-gradient(90deg,var(--green-brand),var(--gold-warm));
      transform:scaleX(0); transform-origin:left; transition:transform .35s;
    }
    .svc-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(8, 172, 103, .12); border-color:rgba(8, 172, 103, .22); }
    .svc-card:hover::before { transform:scaleX(1); }
    .svc-icon {
      width:62px; height:62px; border-radius:15px;
      background:var(--green-pale); border:1px solid rgba(8, 172, 103, .15);
      display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem;
      transition:all .3s;
    }
    .svc-card:hover .svc-icon { background:linear-gradient(135deg,var(--green-brand),var(--green)); border-color:transparent; box-shadow:0 6px 18px rgba(8, 172, 103, .25); }
    .svc-icon i { font-size:1.5rem; color:var(--green-brand); transition:color .3s; }
    .svc-card:hover .svc-icon i { color:#fff; animation:floatIcon 2s ease-in-out infinite; }
    .svc-cat { display:inline-flex; align-items:center; gap:.3rem; background:var(--green-pale); border:1px solid rgba(8, 172, 103, .2); color:var(--green-brand); font-size:.67rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:.25rem .65rem; border-radius:100px; margin-bottom:.85rem; }
    .svc-title { font-size:1.3rem; font-weight:700; color:var(--text-dark); margin-bottom:.6rem; }
    .svc-desc { font-size: 1rem; color:var(--gray); line-height:1.75; margin-bottom:.9rem; }
    .svc-tags { display:flex; gap:.35rem; flex-wrap:wrap; }
    .svc-tag { background:rgba(255,255,255,.72); border:1px solid rgba(8, 172, 103, .2); color:var(--text-mid); border-radius:6px; padding:.2rem .6rem; font-size:.8rem; font-weight:600; }
    .svc-link { display:inline-flex; align-items:center; gap:.35rem; color:var(--green-brand); font-size:.8rem; font-weight:600; margin-top:1.1rem; transition:gap .25s, color .25s; }
    .svc-card:hover .svc-link { gap:.6rem; color:#08ac67; }

    /* Highlight banner */
    .hl-banner {
      background:linear-gradient(145deg, #08ac67 0%, #068d54 35%, #08ac67 100%);
      border-radius:22px; padding:3.5rem 3rem; color:#fff; position:relative; overflow:hidden;
    }
    .hl-banner::before { content:''; position:absolute; top:-60px; right:-60px; width:260px; height:260px; background:radial-gradient(circle,rgba(120, 197, 151, .12),transparent); border-radius:50%; pointer-events:none; }
    .hl-banner::after { content:''; position:absolute; bottom:-40px; left:30%; width:180px; height:180px; background:radial-gradient(circle,rgba(255,255,255,.04),transparent); border-radius:50%; pointer-events:none; }
    .hl-content { position:relative; z-index:1; }
    /* Benefit card large */
    .benefit-card-large { transition:transform .3s, box-shadow .3s; }
    .benefit-card-large:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(8, 172, 103, .08); }
    .benefit-item i { font-size:1.1rem; vertical-align:middle; line-height:1; }
  

/* Extracted from services.html */

      .testimonial-wrapper {
        position: relative;
        padding: 0 50px;
        /* Leave space for buttons */
      }

      .testimonial-track {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        padding: 1rem 0 2rem 0;
        scroll-behavior: smooth;
      }

      .testimonial-track::-webkit-scrollbar {
        display: none;
        /* WebKit */
      }

      .t-card-wrapper {
        flex: 0 0 calc(33.333% - 1rem);
        scroll-snap-align: start;
        min-width: 320px;
      }

      @media (max-width: 991px) {
        .t-card-wrapper {
          flex: 0 0 calc(50% - 0.75rem);
        }
      }

      @media (max-width: 767px) {
        .t-card-wrapper {
          flex: 0 0 100%;
        }

        .testimonial-wrapper {
          padding: 0;
        }

        .nav-btn {
          display: none !important;
          /* Hide arrows on mobile */
        }
      }

      .t-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        height: 100%;
        border: 1px solid rgba(20, 92, 50, 0.05);
        border-top: 4px solid transparent;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid #78c597;
      }

      .t-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(20, 92, 50, 0.12);
        border-top: 4px solid var(--green-brand);
      }

      .t-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .t-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(201, 155, 56, 0.25);
        border: 3px solid #fff;
      }

      .t-info {
        flex-grow: 1;
      }

      .t-name {
        font-weight: 700;
        color: var(--navy);
        font-size: 1.05rem;
        margin-bottom: 0.1rem;
      }

      .t-role {
        font-size: 0.75rem;
        color: var(--gray);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .t-quote-icon {
        color: rgba(20, 92, 50, 0.03);
        font-size: 8rem;
        line-height: 1;
        position: absolute;
        right: 10px;
        bottom: -20px;
        z-index: 0;
        pointer-events: none;
      }

      .t-stars {
        color: #C99B38;
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        display: flex;
        gap: 2px;
      }

      .t-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--gray);
        font-style: italic;
        margin: 0;
        position: relative;
        z-index: 1;
      }

      /* Stylish Navigation Buttons */
      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #fff;
        border: 1px solid rgba(20, 92, 50, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        z-index: 10;
      }

      .nav-btn:hover {
        background: var(--green-brand);
        color: #fff;
        border-color: var(--green-brand);
        box-shadow: 0 8px 25px rgba(20, 92, 50, 0.2);
        transform: translateY(-50%) scale(1.05);
      }

      .nav-btn:active {
        transform: translateY(-50%) scale(0.95);
      }

      .nav-btn.left-btn {
        left: -15px;
      }

      .nav-btn.right-btn {
        right: -15px;
      }
    

.inline-css-1d5d38 {
  display:inline-block;line-height:1;
}

.inline-css-d75251 {
  background:var(--green-pale); border-radius:22px; border:1px solid rgba(8, 172, 103, .1);
}

.inline-css-29b271 {
  color:var(--green-brand); font-weight:700;
}

.inline-css-1e9c15 {
  font-size:1rem; color:var(--text-body);
}

.inline-css-c133eb {
  background:var(--white); border-radius:22px; border:1px solid var(--gray-light); box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.inline-css-c805ab {
  background:var(--off-white); border-radius:22px; border:1px solid var(--gray-light); box-shadow:0 10px 30px rgba(0,0,0,.04); display:flex; flex-wrap:wrap; gap:2rem; align-items:center;
}

.inline-css-566873 {
  flex:1; min-width:300px;
}

.inline-css-e90f4d {
  flex:1; min-width:300px; display:grid; grid-template-columns:repeat(auto-fit, minmax(140px, 1fr)); gap:1.5rem;
}

.inline-css-2ca28a {
  color:#fff;font-size:clamp(1.7rem,3.5vw,2.5rem);font-weight:700;margin:.5rem 0 1rem;
}

.inline-css-496285 {
  color:rgba(255,255,255,.5);font-size:.93rem;max-width:500px;
}


/* ============================================================
   ORGANIC SECTION CURVES
============================================================ */

.organic-wave-top, .organic-wave-bottom {
  position: relative;
  /* z-index needed so the pseudo elements overlap adjacent sections */
  z-index: 10;
}

/* Base style for pseudo elements */
.organic-wave-bottom::after,
.organic-wave-top::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px; /* height of the wave */
  background: inherit;
  z-index: 10;
  pointer-events: none; /* so it doesn't block clicks */
}

/* Bottom Curve (extends downwards) */
.organic-wave-bottom::after {
  bottom: -58px; /* Slightly less than height to prevent 1px gap */
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 C200,40 400,60 600,20 C800,-20 1000,50 1200,10 L1200,0 Z" /></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 C200,40 400,60 600,20 C800,-20 1000,50 1200,10 L1200,0 Z" /></svg>');
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/* Top Curve (extends upwards) */
.organic-wave-top::before {
  top: -58px;
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,60 C200,20 400,0 600,40 C800,80 1000,10 1200,50 L1200,60 Z" /></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,60 C200,20 400,0 600,40 C800,80 1000,10 1200,50 L1200,60 Z" /></svg>');
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/* Optional explicit colors if inherit fails */
.bg-wave-white { background-color: #ffffff; }
.bg-wave-pale { background-color: #fff; }
.bg-wave-brand { background-color: var(--green-brand); }
.bg-wave-gradient { background: linear-gradient(135deg, var(--green-dark), var(--green-brand)); }

/* Make sure sections with top/bottom waves have enough padding so content isn't overlapped */
.organic-wave-top {
  padding-top: 6rem !important; /* Increase from default to accommodate wave */
}
.organic-wave-bottom {
  padding-bottom: 6rem !important; 
}

/* ============================================================
   Interactive Hero Image Effects
============================================================ */
.interactive-image-wrapper {
  position: relative;
  display: inline-block;
  perspective: 1000px;
  cursor: pointer;
  transform-style: preserve-3d;
}
.interactive-image-wrapper .hero-main-img {
  transition: transform 0.2s ease-out, filter 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.interactive-image-wrapper:hover .hero-main-img {
  filter: drop-shadow(0 20px 30px rgba(8, 172, 103, 0.15));
}

.footer-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.footer-links li {
  list-style-type: none !important;
  margin-bottom: .6rem;
}

.footer-links a {
  color: #2c2c2c;
  font-size: 15px;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #058550;
  transform: translateX(5px);
}
.live-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 10;
  border: 1px solid rgba(8, 172, 103, 0.15);
  transition: transform 0.2s ease-out;
}
.live-badge i {
  color: var(--green-hero);
  font-size: 1.2rem;
}
.badge-top-left {
  top: 15%;
  left: -8%;
  animation-delay: 0s;
}
.badge-bottom-right {
  bottom: 20%;
  right: -8%;
  animation-delay: 2s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image-animated {
  animation: heroPulse 5s infinite ease-in-out;
  transform: translateX(8%) scale(1);
}

@keyframes heroPulse {
  0%, 100% { transform: translateX(8%) scale(1); filter: brightness(1); }
  50% { transform: translateX(8%) scale(1.03); filter: brightness(1.05); }
}

/* ============================================================
   CAREERS PAGE CUSTOM & CONSOLIDATED STYLES
============================================================ */
/* Responsive career vacancy card styling with smooth hover mechanics */
.career-card {
  background: var(--white, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 172, 103, 0.12);
  border-color: rgba(8, 172, 103, 0.2);
  border-left: 5px solid var(--green-brand, #08ac67);
}

/* Meta pill badge layout for location and work schedule tags */
.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(8, 172, 103, 0.12);
  color: var(--green-brand, #08ac67);
  margin-right: 8px;
  margin-bottom: 8px;
}

.job-badge-secondary {
  background: var(--green-pale, #e4f9ed);
  color: var(--text-dark, #0F1F16);
}

/* Culture feature box styling */
.culture-box {
  background: #f8fafe;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.culture-box:hover {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(8, 172, 103, 0.08);
  transform: translateY(-5px);
  border-color: rgba(8, 172, 103, 0.2);
}

.culture-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-brand, #08ac67);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(8, 172, 103, 0.3);
}

.culture-box h4 {
  color: var(--text-dark, #0F1F16);
  font-weight: 700;
}

.culture-box p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Interactive job details collapse styling */
.job-details-toggle {
  color: var(--text-dark, #0F1F16);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.job-details-toggle:hover {
  color: var(--green-brand, #08ac67);
}

/* Application form card design with premium dark forest green gradient */
.apply-card {
  background: linear-gradient(135deg, #0b2216 0%, #064729 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: #ffffff !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.apply-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(120, 197, 151, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #78c597 !important;
  box-shadow: 0 0 0 0.2rem rgba(120, 197, 151, 0.25) !important;
  color: #ffffff !important;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Ultra-Premium Dual-Axis Glowing Timeline & Interactive Showcase */
.timeline-container {
  position: relative;
  max-width: 1080px;
  margin: 2.5rem auto 1rem;
  padding: 0 0 1rem 0;
}

.timeline-spine {
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, var(--green-brand, #08ac67) 0%, rgba(8, 172, 103, 0.2) 100%);
  top: 15px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(8, 172, 103, 0.5);
  z-index: 1;
}

.timeline-row {
  position: relative;
  width: 50%;
  padding-bottom: 1.5rem;
  display: flex;
  z-index: 2;
}

.timeline-row + .timeline-row {
  margin-top: -4.5rem;
}

.timeline-row.left-side {
  left: 0;
  padding-right: 2.8rem;
  justify-content: flex-end;
}

.timeline-row.right-side {
  left: 50%;
  padding-left: 2.8rem;
  justify-content: flex-start;
}

.timeline-node {
  position: absolute;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2015 0%, #064729 100%);
  border: 3px solid #78c597;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 16px rgba(8, 172, 103, 0.4), 0 0 0 6px rgba(8, 172, 103, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.left-side .timeline-node {
  right: -24px;
}

.right-side .timeline-node {
  left: -24px;
}

.timeline-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9fdfb 100%);
  border: 1px solid rgba(8, 172, 103, 0.2);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  width: 100%;
  box-shadow: 0 12px 30px rgba(15, 31, 22, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: visible;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-brand, #08ac67), var(--green-mid, #78c597));
  border-radius: 20px 20px 0 0;
}

/* Connecting Arrow indicators to the center spine */
.left-side .timeline-card::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid rgba(8, 172, 103, 0.25);
}

.right-side .timeline-card::after {
  content: '';
  position: absolute;
  top: 36px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(8, 172, 103, 0.25);
}

.timeline-row:hover .timeline-node {
  background: linear-gradient(135deg, var(--green-brand, #08ac67) 0%, #056a3f 100%);
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.18) rotate(12deg);
  box-shadow: 0 0 28px rgba(8, 172, 103, 0.8), 0 0 0 10px rgba(8, 172, 103, 0.25);
}

.timeline-row:hover .timeline-card {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8, 172, 103, 0.14);
  border-color: rgba(8, 172, 103, 0.45);
  background: #ffffff;
}

.timeline-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(8, 172, 103, 0.12);
  color: var(--green-brand, #08ac67);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.timeline-row:hover .timeline-icon {
  background: var(--green-brand, #08ac67);
  color: #ffffff;
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(8, 172, 103, 0.3);
}

.timeline-badge-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--green-brand, #08ac67);
  background: rgba(8, 172, 103, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.timeline-card h3 {
  color: var(--text-dark, #0F1F16);
  font-weight: 700;
  font-size: 1.22rem !important;
}

.timeline-card p {
  color: #3A4D42;
  font-size: 1rem;
  line-height: 1.65;
}

/* Section layout & text helpers for careers page */
.careers-section-white {
  background-color: #ffffff;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.careers-section-gray {
  background-color: #f3f6f9;
  padding: 5rem 0;
}

.careers-intro-desc {
  max-width: 1050px;
  font-size: 1.12rem;
  line-height: 1.85;
  color: #3E5247;
}

.career-role-title {
  color: var(--text-dark, #0F1F16);
  font-weight: 700;
}

.career-role-desc {
  font-size: 1rem;
}

.btn-job-apply {
  background: var(--green-brand, #08ac67);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-job-apply:hover {
  background: var(--green-dark, #056a3f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 172, 103, 0.25);
}

.job-resp-title {
  color: var(--text-dark, #0F1F16);
  font-weight: 700;
}

.job-resp-list {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Application form styles */
.talent-pool-badge {
  background: rgba(120, 197, 151, 0.25);
  color: #78c597;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}

.apply-heading {
  color: #ffffff !important;
  font-weight: 700;
}

.apply-subtext {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
}

.apply-contact-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.apply-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(120, 197, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: #78c597;
  font-size: 1.3rem;
}

.apply-contact-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 600;
}

.apply-contact-val {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.career-form-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 2.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-form-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.career-form-submit {
  background: #08ac67;
  color: #ffffff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  width: 100%;
  box-shadow: 0 10px 25px rgba(8, 172, 103, 0.3);
  transition: all 0.3s ease;
}

.career-form-submit:hover {
  background: #068d54;
  color: #ffffff;
  transform: translateY(-2px);
}

.career-form-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Spontaneous application CTA section */
.spontaneous-section {
  background-color: #ffffff;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.spontaneous-title {
  color: #0F1F16;
  font-weight: 700;
}

.spontaneous-desc {
  max-width: 650px;
  color: #64748B;
  font-size: 1.05rem;
}

.btn-email-resume {
  background: #08ac67;
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(8, 172, 103, 0.25);
  transition: all 0.3s ease;
}

.btn-email-resume:hover {
  background: #068d54;
  transform: translateY(-2px);
}

.btn-wa-connect {
  background: #e4f9ed;
  color: #068d54 !important;
  border: 1px solid rgba(8, 172, 103, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-wa-connect:hover {
  background: #d0f5e0;
  transform: translateY(-2px);
}

/* Responsive scaling and single-column spine alignment for mobile/tablets */
@media (max-width: 991px) {
  .timeline-spine {
    left: 24px;
    transform: none;
  }
  .timeline-row {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 1.6rem;
  }
  .timeline-row + .timeline-row {
    margin-top: 0 !important;
  }
  .timeline-node {
    left: 0 !important;
    right: auto !important;
    top: 18px;
    width: 44px;
    height: 44px;
    font-size: 0.88rem;
  }
  .timeline-card {
    padding: 1.5rem 1.4rem;
  }
  .left-side .timeline-card::after,
  .right-side .timeline-card::after {
    top: 32px;
    left: -10px;
    right: auto;
    border-right: 10px solid rgba(8, 172, 103, 0.25);
    border-left: none;
  }
}

@media (max-width: 768px) {
  .apply-card {
    padding: 2.2rem 1.5rem;
  }
  .career-card {
    padding: 1.5rem;
  }
}