@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --green: #1a6b3c;
  --green-light: #2a8f52;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --cream: #faf7f2;
  --dark: #0f2318;
  --text: #2c3e30;
  --muted: #6b7c6e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Vortigra", serif;
}

.navbar {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.navbar.scrolled {
  position: fixed;
  background: #fff;
  border-bottom: 1px solid #eef2ee;
  box-shadow: 0 2px 16px rgba(26, 107, 60, 0.09);
  padding: 0px !important;
}

.navbar .container {
  min-height: 68px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.navbar-brand img {
  width: 302px !important;
}
.ekit-fancy-text-lists {
  position: relative;
  display: inline-block;
  min-width: 220px;
}

.ekit-fancy-text {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  color: #198267;
  font-style: italic;
}

.ekit-fancy-text.is-visible {
  opacity: 1;
  visibility: visible;
  position: relative;
}
/* Logo circle */
.logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition:
    border-color 0.35s,
    background 0.35s;
}

.navbar.scrolled .logo-wrap {
  border-color: var(--green);
  background: #fff;
}

.logo-inner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4401a, #b83010);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.logo-ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.35s;
}

.navbar.scrolled .logo-ring {
  border-color: rgba(26, 107, 60, 0.3);
}

.brand-text {
  line-height: 1.15;
}

.brand-text .top {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.35s;
}

.navbar.scrolled .brand-text .top {
  color: var(--dark);
}

.brand-text .sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.35s;
}

.navbar.scrolled .brand-text .sub {
  color: var(--muted);
}

.nav-link {
  color: #000000 !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 22px !important;
  transition: color 0.2s;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text) !important;
}

.navbar.scrolled .nav-link:hover {
  color: var(--green) !important;
}

/* keep hover white on transparent */
.nav-link:hover {
  color: var(--green) !important;
  opacity: 1.85;
}

.btn-quote {
  background: #004332;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
  border: 2px solid #004332;
}

.btn-quote:hover {
  background: var(--green);
  color: #fff !important;
  border-color: var(--green);
  transform: translateY(-1px);
}

.navbar.scrolled .btn-quote {
  background: var(--green);
  color: #fff !important;
  border-color: var(--green);
}

.navbar.scrolled .btn-quote:hover {
  background: var(--green-light);
}

.btn-quote i {
  font-size: 13px;
}

/* hero needs padding-top to sit under the absolute navbar */
.hero {
  padding-top: 68px;
}

.hero {
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 712px;
  height: 100vh;
  width: 100%;
}

/* decorative dots pattern top-right */
.hero-dots {
  position: absolute;
  top: 20px;
  right: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  opacity: 0.25;
}

.hero-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}

.hero-content {
  padding: 60px 0 0px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.18;
  color: #1a1815;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  color: #198267;
}

.hero-sub {
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  max-width: 438px;
  margin-bottom: 34px;
  opacity: 80%;
}

/* CTA buttons */
.btn-primary-green {
  background: #004332;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-green:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: #004332;
  border: 1px solid #004332;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-green:hover {
  background: rgba(6, 225, 149, 0.968);
  border-color: #fff;
  color: #fff;
}

/* family count pill */
.family-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}

.av-stack {
  display: flex;
}

.av {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.av:first-child {
  margin-left: 0;
}

.av-1 {
  background: #2a8f52;
}

.av-2 {
  background: #c8922a;
}

.av-3 {
  background: #1a6b3c;
}

.av-4 {
  background: #6b4c0f;
}

.pill-text strong {
  font-size: 17px;
  color: var(--dark);
  display: block;
  font-weight: 800;
}

.pill-text span {
  font-size: 14px;
  color: #000000;
}

/* right side image area */

.hero-img-blob {
  width: 430px;
  max-width: 100%;
  height: 480px;
  border-radius: 55% 45% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(
    150deg,
    rgba(26, 107, 60, 0.13) 0%,
    rgba(200, 146, 42, 0.09) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  animation: blobPulse 7s ease-in-out infinite;
}

@keyframes blobPulse {
  0%,
  100% {
    border-radius: 55% 45% 50% 50% / 60% 60% 40% 40%;
  }

  50% {
    border-radius: 45% 55% 52% 48% / 50% 55% 45% 50%;
  }
}

.hero-couple-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(26, 107, 60, 0.4);
  text-align: center;
  padding: 30px;
}

.hero-couple-placeholder i {
  font-size: 7rem;
  display: block;
  margin-bottom: 12px;
}

.hero-couple-placeholder p {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  font-family: "Playfair Display", serif;
}

/* floating mini-cards */
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-float.fl-tl {
  top: 55px;
  left: -10px;
}

.hero-float.fl-br {
  bottom: 55px;
  right: -10px;
}

.fl-ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.fl-ic.g {
  background: rgba(26, 107, 60, 0.1);
  color: var(--green);
}

.fl-ic.o {
  background: rgba(200, 146, 42, 0.1);
  color: var(--gold);
}

.fl-v {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.fl-l {
  font-size: 11px;
  color: var(--muted);
}

.trust-strip {
  z-index: 999;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 24px #0000000d;
  border-radius: 20px;
  padding: 22px 0;
  position: relative;
  margin-top: -54px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid #e8ede9;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 107, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 20px;
}

.trust-text .tv {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.trust-text .tl {
  font-size: 12px;
  color: var(--muted);
}

section {
  padding: 90px 0;
}

.section-label {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #198267;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  color: #1a1815;
  line-height: 1.2;
  font-weight: 500;
}
.chapter-title {
  font-size: 26px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.section-titles {
  font-size: 28px;
  color: #1a1815;
  line-height: 1.2;
  font-weight: 500;
}
.header p {
  color: #fff;
}
.text-size-24 {
  font-size: 21px;
}
.section-title span {
  color: var(--green);
}

.section-titles {
  /* font-size: 30px; */
  /* color: #009688; */
  /* line-height: 1.2; */
  /* font-weight: 500; */
  /* margin-bottom: 19px; */
  /* margin-top: 21px; */
}

.about-video-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: url(../images/vc.png) center/cover no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-count {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.ov-title {
  font-size: 22px;
  font-weight: 600;
}

.ov-sub {
  font-size: 14px;
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.about-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgb(255 255 255);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 12px 18px;
  color: #000;
}

.about-overlay .ov-title {
  font-weight: 700;
  font-size: 14px;
}

.about-overlay .ov-sub {
  font-size: 12px;
  opacity: 0.8;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
}

.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 120px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 107, 60, 0.15);
  border-color: var(--green);
}

.plan-card.popular {
  color: #fff;
  border-color: transparent;
  /* UI Properties */
  background: transparent linear-gradient(180deg, #073a2f 0%, #209174 100%) 0%
    0% no-repeat padding-box;
  border-radius: 23px;
}

.plan-card.popular:hover {
  box-shadow: 0 16px 40px rgba(26, 107, 60, 0.4);
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-type {
  line-height: 45px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: inherit;
  margin-bottom: 18px;
  border-bottom: 2px solid #2091748f;
}

.plan-type.dark {
  color: var(--muted);
}

.plan-type.light {
  color: rgba(255, 255, 255, 0.7);
}

.plan-value {
  font-size: 32px;
  font-weight: 800;
  font-family: "Vortigra", serif;

  /* margin-bottom: 15px; */
}

.plan-value.dark {
  color: #1a1815;
}

.plan-value.light {
  color: #fff;
}

.plan-starting {
  font-size: 13px;
  margin-bottom: 4px;
}

.plan-starting.dark {
  color: var(--muted);
}

.plan-starting.light {
  color: rgba(255, 255, 255, 0.7);
}

.plan-amount {
  font-size: 26px;
  font-weight: 700;
  color: #198267;
  margin-bottom: 4px;
  font-family: "Vortigra", serif;
}

.plan-amount.dark {
  color: var(--green);
}

.plan-amount.light {
  color: var(--gold-light);
}

.plan-tenure {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-tenure.dark {
  color: var(--muted);
}

.plan-tenure.light {
  color: rgba(255, 255, 255, 0.7);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #00000024;
}

.plan-features li .chk {
  font-size: 15px;
}

.plan-features.dark li {
  color: var(--text);
}

.plan-features.dark li .chk {
  color: var(--green);
}

.plan-features.light li {
  color: rgba(255, 255, 255, 0.85);
}

.plan-features.light li .chk {
  color: var(--gold-light);
}

.btn-plan-dark {
  width: 100%;
  border-radius: 24px;
  padding: 12px;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-plan-dark:hover {
  background: var(--green);
  color: #fff;
}

.btn-plan-light {
  width: 100%;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-plan-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.4);
}

:root {
  --green: #2d7d6f;
  --green-light: #3aaa94;
  --dark: #1a1a1a;
  --muted: #6b7280;
  --border: #d1d5db;
}

.how-it-works {
  padding: 80px 20px;
}

.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.section-title {
  font-family: "Vortigra", serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 46px;
}
.section-title .accent {
  color: var(--green);
  font-style: italic;
}

.step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* dashed circle */
.step-badge {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
}
.step-badge .label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #004332;
  line-height: 1;
  margin-bottom: 6px;
}
.step-badge .number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #209174;
  line-height: 1;
}

/* icon + content */
.step-body {
}
.step-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.step-title span {
  color: var(--green);
}
.step-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 915px;
}

.connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px; /* aligns with badge center */
}
.connector-line {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--border);
}
.connector-line .line {
  width: 48px;
  height: 1.5px;
  background: var(--border);
}
.connector-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .connector {
    display: none;
  }
  .step-card {
    margin-bottom: 36px;
  }
  .step-desc {
    max-width: 100%;
  }
}

footer {
  background: #023b2e;
  padding: 60px 0 0;
  color: rgb(255 255 255 / 90%);
}

footer .foot-brand {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

footer .foot-tagline {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
  color: rgb(255 255 255 / 90%);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.foot-head {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: inherit;
  color: #fff;
  margin-bottom: 16px;
}

.foot-links {
  list-style: none;
  padding: 0;
}

.foot-links li {
  margin-bottom: 9px;
  font-size: 15px;
}

.foot-links a {
  color: rgb(255 255 255 / 89%);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.foot-links a:hover {
  color: var(--gold-light);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: rgb(255 255 255 / 84%);
}

.foot-bottom a {
  color: rgb(255 255 255 / 84%);
  text-decoration: none;
}

.foot-bottom a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .hero {
    min-height: min-content;
    padding: 60px 0 40px;
  }
  .trust-item {
    display: inline-grid;
    align-items: center;
    gap: 8px;
    padding: 17px 15px;
  }
  .trust-text .tv {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
  }
  .about-section .ps-5 {
    padding-left: 1rem !important;
  }
  .how-it-works {
    padding: 80px 0px;
  }
  .plan-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition:
      transform 0.25s,
      box-shadow 0.25s,
      border-color 0.25s;
    position: relative;
    text-align: center;
  }
  .px-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .hero-image-blob {
    width: 280px;
    height: 280px;
  }

  .hero-float-card {
    display: none;
  }

  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid #e8ede9;
  }

  .step-arrow {
    display: none !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.stat-card {
  background: #fff;
  padding: 16px 18px;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-card:hover {
  transform: translateY(-4px);
}
.stat-icon-wrap {
  width: 53px;
  height: 53px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.plan-features.light li {
  border-bottom: 1px solid #ffffff6e;
}

.stat-num {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.stat-lbl {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  margin-top: 5px;
  opacity: 80%;
}
.works {
  display: flex;
  align-items: center;
}
:root {
  --green: #2d7d6f;
  --dark: #1a1a1a;
  --muted: #6b7280;
}

.testi-section {
  background: linear-gradient(180deg, #fdf1e2, #ccebd5);
  padding: 72px 0 56px;
  overflow: hidden;
}

/*  Carousel Wrapper  */
.testi-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 1px 64px;
}

.testi-stage {
  overflow: hidden;
  width: 100%;
}

.testi-inner {
  display: flex;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-item {
  flex: 0 0 33.333%;
  padding: 16px 10px;
  box-sizing: border-box;
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s;
}

/* side cards: smaller, faded */
.testi-item {
  opacity: 0.75;
  transform: scale(0.9);
}

/* active centre card */
.testi-item.is-active {
  opacity: 1;
  transform: scale(1);
}
.testi-card img {
  width: 80px;
  height: 80px;
  border-radius: 50px;
}
/*  Card  */
.testi-card {
  background: #ffffff;
  border-radius: 52px;
  padding: 41px 35px 26px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  /* height: 100%; */
  /* display: flex; */
  flex-direction: column;
}

.testi-item.is-active .testi-card {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.13);
}

.quote-mark {
  font-size: 4.5rem;
  line-height: 0.8;
  color: #d0e8e3;
  font-family: Georgia, serif;
  user-select: none;
}

.stars {
  color: var(--green);
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 11px;
}

.testi-text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #000000;
  opacity: 80%;
  font-weight: 400;
  min-height: 172px;
}

.testi-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 18px;
}

.testi-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name {
  font-weight: 700;
  font-size: 18px;
  color: #004332;
  margin: 0;
}
.testi-loc {
  font-size: 15px;
  color: #000000;
  margin: 0;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: box-shadow 0.2s;
}
.testi-btn:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.testi-btn-prev {
  left: 28px;
}
.testi-btn-next {
  right: 20px;
}
.testi-btn svg {
  width: 18px;
  height: 18px;
  stroke: #555;
  fill: none;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5c5c5;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    border 0.3s,
    box-shadow 0.3s;
}
.testi-dot.active {
  background: #fff;
  border: 2.5px solid var(--green);
}

@media (max-width: 767px) {
  .testi-item {
    flex: 0 0 65%;
  }
  .testi-carousel-wrap {
    padding: 0 0px;
  }
  .testi-item {
    flex: 0 0 100.333%;
    padding: 16px 4px;
    box-sizing: border-box;
    transition:
      transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.55s;
  }
  .navbar-brand img {
    width: 220px !important;
  }
}
:root {
  --green: #2d7d6f;
  --green-dark: #1f5c52;
  --dark: #0f2620;
  --muted: #6b7280;
  --input-bg: #f9fafb;
  --border: #e5e7eb;
}

.connect-section {
  background: linear-gradient(
    135deg,
    #eef5ee59 0%,
    #f4f7f021 40%,
    #f0f5ec 100%
  );
  padding: 70px 10px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-title .accent {
  color: var(--green);
  font-style: italic;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.info-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.info-value {
  font-size: 0.88rem;
  color: #374151;
  margin: 0;
  line-height: 1.55;
}

.form-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.07);
}

.form-control {
  background: #f5f7f538;
  border: 1.5px solid var(--border);
  border-radius: 15px;
  padding: 14px 22px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  box-shadow: none;
  transition: border-color 0.25s;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 125, 111, 0.1);
  background: #fff;
}
.form-control::placeholder {
  color: #aab4b2;
}

textarea.form-control {
  border-radius: 18px;
  resize: none;
  min-height: 130px;
}

.btn-send {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-size: 0.97rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.25s,
    transform 0.2s;
  cursor: pointer;
}
.btn-send:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-send svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

@media (max-width: 991px) {
  .connect-section {
    padding: 50px 0px;
  }
  .form-card {
    padding: 28px 20px;
  }
  .section-title {
    font-size: 2rem;
  }
}
:root {
  --js-green: #1b6b45;
  --js-green-lt: #2a9461;
  --js-gold: #d4a017;
  --js-gold-lt: #f5c842;
  --js-dark: #0d1f17;
  --js-light: #f4f9f6;
  --js-white: #ffffff;
  --js-grey: #6b7c74;
  --js-border: #d6e8de;
  --ff-display: "Playfair Display", serif;
  --ff-body: "DM Sans", sans-serif;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-card: 0 8px 40px rgba(27, 107, 69, 0.1);
  --shadow-hover: 0 16px 56px rgba(27, 107, 69, 0.18);
}

.js-navbar {
  background: var(--js-white);
  box-shadow: 0 2px 20px rgba(27, 107, 69, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.js-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--js-green);
}

.js-navbar .brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--js-green), var(--js-green-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.js-navbar .nav-link {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--js-dark) !important;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.js-btn-quote {
  background: linear-gradient(135deg, var(--js-green), var(--js-green-lt));
  color: #fff !important;
  border-radius: 2rem;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.js-btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27, 107, 69, 0.3);
  color: #fff !important;
}

.js-breadcrumb-band {
  background: linear-gradient(
    135deg,
    var(--js-green) 0%,
    var(--js-green-lt) 100%
  );
  padding: 2.8rem 0 2.2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.js-breadcrumb-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.js-breadcrumb-band h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.js-breadcrumb-band .js-crumb {
  color: rgba(255, 255, 255, 0.988);
  font-size: 0.88rem;
}

.js-breadcrumb-band .js-crumb span {
  color: var(--js-gold-lt);
  font-weight: 600;
}

.js-about-section {
  padding: 5rem 0 4rem;
}

.js-video-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--js-green), var(--js-dark));
  box-shadow: var(--shadow-card);
}

.js-video-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.js-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
}

.js-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}

.js-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.35);
}

.js-quote-badge {
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--js-gold);
  backdrop-filter: blur(8px);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-style: italic;
  font-size: 0.88rem;
  font-family: var(--ff-display);
}

.js-about-content {
  padding-left: 1rem;
}

.js-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--js-green);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.js-section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--js-green);
  border-radius: 2px;
}

.js-about-content h2 {
  font-size: 46px;
  line-height: 1.25;
  color: var(--js-dark);
  margin-bottom: 1.2rem;
}

.js-about-content h2 span {
  color: var(--js-green);
}
p {
  color: #000;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 15px;
  opacity: 80%;
}
.js-about-content p {
  color: #000000;
  line-height: 1.8;
  font-size: 16px;
  opacity: 80%;
  max-width: 700px;
}
.js-stats-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.js-stat-chip {
  flex: 1;
  min-width: 110px;
  background: var(--js-white);
  border: 1.5px solid var(--js-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.js-stat-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.js-stat-chip .js-stat-num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--js-green);
  line-height: 1;
}

.js-stat-chip .js-stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--js-grey);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.js-stat-chip i {
  font-size: 1.4rem;
  color: var(--js-gold);
  margin-bottom: 0.3rem;
}

.js-timeline-section {
  padding: 5rem 0;
  background: var(--js-white);
}

.js-section-title {
  font-size: 2.4rem;
  color: var(--js-dark);
  margin-bottom: 0.5rem;
}

.js-section-title span {
  color: var(--js-green);
}

.js-section-sub {
  color: var(--js-grey);
  font-size: 0.95rem;
}

/* Timeline */
.js-timeline {
  position: relative;
  margin-top: 3.5rem;
}

.js-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--js-green), var(--js-gold));
  transform: translateX(-50%);
}

.js-tl-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.js-tl-item.js-tl-left {
  flex-direction: row-reverse;
}

.js-tl-card {
  width: calc(50% - 3rem);
  background: #f4f9f669;
  border: 1.5px solid var(--js-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.js-tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.js-leader-avatar-placeholder img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
}
.js-tl-item.js-tl-left .js-tl-card {
  margin-right: auto;
}

.js-tl-item.js-tl-right .js-tl-card {
  margin-left: auto;
}

.js-tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--js-green);
  border: 3px solid var(--js-white);
  box-shadow: 0 0 0 3px var(--js-green);
  z-index: 1;
}

.js-tl-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.8rem;
  background: var(--js-white);
  border: 1.5px solid var(--js-border);
  border-radius: 2rem;
  padding: 0.2rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--js-green);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(27, 107, 69, 0.08);
}

.js-tl-card .js-tl-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--js-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.js-tl-card h5 {
  font-size: 1.05rem;
  color: var(--js-dark);
  margin-bottom: 0.5rem;
}

.js-tl-card p {
  font-size: 14px;
  color: #1b1d1c;
  line-height: 1.65;
  margin: 0;
}
.js-tl-card .js-tl-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--js-green), var(--js-green-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.js-leadership-section {
  padding: 5rem 0;
  background: var(--js-light);
}

.js-leader-card {
  background: var(--js-white);
  border-radius: 9px;
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  border: 1.5px solid var(--js-border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.js-leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--js-green), var(--js-gold));
}

.js-leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.js-leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--js-white);
  box-shadow: 0 4px 20px rgba(27, 107, 69, 0.15);
  margin-bottom: 1.1rem;
}

.js-leader-avatar-placeholder {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  font-family: var(--ff-display);
  font-weight: 700;
  margin: 0 auto 1.1rem;
  border: 2px solid #038855;
  /* box-shadow: 0 4px 20px rgba(27, 107, 69, 0.15); */
}

.js-leader-card h4 {
  font-size: 22px;
  color: var(--js-dark);
  margin-bottom: 16px;
  font-family: "DM Sans";
}
.js-leader-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--js-green);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.js-leader-org {
  font-size: 14px;
  color: #000000;
  margin-bottom: 0.8rem;
}

.js-leader-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--js-green), var(--js-gold));
  border-radius: 2px;
  margin: 0 auto 0.8rem;
}

@media (max-width: 768px) {
  .js-timeline::before {
    left: 1.2rem;
  }

  .js-tl-item,
  .js-tl-item.js-tl-left {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3.5rem;
  }

  .js-tl-card,
  .js-tl-item.js-tl-left .js-tl-card,
  .js-tl-item.js-tl-right .js-tl-card {
    width: 100%;
    margin: 0;
  }

  .js-tl-dot {
    left: 1.2rem;
  }

  .js-tl-date {
    left: 1.2rem;
    transform: none;
    top: -1.8rem;
  }

  .js-about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .js-section-title {
    font-size: 1.8rem;
  }

  .js-about-content h2 {
    font-size: 1.6rem;
  }
}

:root {
  --cr-green: #1b6b45;
  --cr-green-lt: #2a9461;
  --cr-green-pale: #e8f5ee;
  --cr-gold: #d4a017;
  --cr-gold-lt: #f5c842;
  --cr-dark: #0d1f17;
  --cr-light: #f4f9f6;
  --cr-white: #ffffff;
  --cr-grey: #6b7c74;
  --cr-border: #d6e8de;
  --ff-display: "Playfair Display", serif;
  --ff-body: "DM Sans", sans-serif;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 4px 20px rgba(27, 107, 69, 0.07);
  --shadow-md: 0 8px 40px rgba(27, 107, 69, 0.11);
  --shadow-lg: 0 16px 56px rgba(27, 107, 69, 0.18);
}

.cr-hero {
  background: linear-gradient(
    135deg,
    var(--cr-green) 0%,
    var(--cr-green-lt) 60%,
    #3db874 100%
  );
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.cr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
}

.cr-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}

.cr-hero-content {
  position: relative;
}

.cr-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.cr-hero h1 span {
  color: var(--cr-gold-lt);
}

.cr-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cr-hero-crumb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.cr-hero-crumb span {
  color: var(--cr-gold-lt);
  font-weight: 600;
}

.cr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 0.45rem 1.1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cr-hero-badge i {
  color: var(--cr-gold-lt);
}

/* Hero Stats Bar */
.cr-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cr-hero-stat {
  color: rgba(255, 255, 255, 0.9);
}

.cr-hero-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cr-hero-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero right illustration box */
.cr-hero-illustration {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cr-illus-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  transition: background 0.25s;
}

.cr-illus-row:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cr-illus-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cr-illus-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.cr-illus-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.77rem;
}

.cr-why-section {
  padding: 5rem 0;
  background: var(--cr-white);
}

.cr-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cr-green);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.cr-section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cr-green);
  border-radius: 2px;
}

.cr-section-title {
  font-size: 2.2rem;
  color: var(--cr-dark);
  margin-bottom: 0.5rem;
}

.cr-section-title span {
  color: var(--cr-green);
}

.cr-section-sub {
  color: var(--cr-grey);
  font-size: 0.95rem;
  max-width: 500px;
}

.cr-perk-card {
  background: var(--cr-light);
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.cr-perk-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cr-green), var(--cr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.cr-perk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cr-green);
}

.cr-perk-card:hover::after {
  transform: scaleX(1);
}

.cr-perk-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cr-green), var(--cr-green-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 20px rgba(27, 107, 69, 0.25);
}

.cr-perk-card h5 {
  font-size: 1rem;
  color: var(--cr-dark);
  margin-bottom: 0.45rem;
}

.cr-perk-card p {
  font-size: 0.85rem;
  color: var(--cr-grey);
  line-height: 1.65;
  margin: 0;
}
.cr-jobs-section {
  padding: 5rem 0;
  background: var(--cr-light);
}

/* Filter tabs */
.cr-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.cr-filter-btn {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-border);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cr-grey);
  cursor: pointer;
  transition: all 0.2s;
}

.cr-filter-btn:hover,
.cr-filter-btn.cr-active {
  background: var(--cr-green);
  border-color: var(--cr-green);
  color: #fff;
}

/* Job Card */
.cr-job-card {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.cr-job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cr-green);
}

.cr-job-card.cr-job-featured {
  border-color: var(--cr-green);
  background: linear-gradient(135deg, #fff 85%, var(--cr-green-pale) 100%);
}

.cr-job-featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(90deg, var(--cr-green), var(--cr-green-lt));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.cr-job-dept-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.cr-job-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 0.4rem;
}

.cr-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cr-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cr-green-pale);
  color: var(--cr-green);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
}

.cr-job-tag.cr-tag-gold {
  background: #fdf6e3;
  color: #a07010;
}

.cr-job-tag.cr-tag-blue {
  background: #e8f0fe;
  color: #1a56db;
}

.cr-job-desc {
  font-size: 0.85rem;
  color: var(--cr-grey);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.cr-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--cr-green), var(--cr-green-lt));
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cr-btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 107, 69, 0.3);
  color: #fff;
}

.cr-btn-apply-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--cr-green);
  border: 1.5px solid var(--cr-green);
  border-radius: 2rem;
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cr-btn-apply-outline:hover {
  background: var(--cr-green);
  color: #fff;
}

.cr-apply-section {
  padding: 5rem 0;
  background: var(--cr-white);
}

.cr-form-wrapper {
  background: var(--cr-light);
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.cr-form-title {
  font-size: 1.5rem;
  color: var(--cr-dark);
  margin-bottom: 0.3rem;
}

.cr-form-sub {
  color: var(--cr-grey);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.text-danger {
  --bs-text-opacity: 1;
  color: #ff5722 !important;
  font-size: 13px;
}
.text-success {
  --bs-text-opacity: 1;
  color: #ffc107 !important;
}
.cr-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cr-dark);
  margin-bottom: 0.4rem;
}
.form-label {
  color: #ffffffcf;
  font-size: 14px;
}
.cr-form-control {
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-family: var(--ff-body);
  background: var(--cr-white);
  color: var(--cr-dark);
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.cr-form-control:focus {
  border-color: var(--cr-green);
  box-shadow: 0 0 0 3px rgba(27, 107, 69, 0.1);
}

.cr-form-control::placeholder {
  color: #aab8b2;
}

.cr-upload-area {
  border: 2px dashed var(--cr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  background: var(--cr-white);
}

.cr-upload-area:hover {
  border-color: var(--cr-green);
  background: var(--cr-green-pale);
}

.cr-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cr-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--cr-green);
  font-size: 1.4rem;
}

.cr-upload-area p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--cr-grey);
}

.cr-upload-area strong {
  color: var(--cr-green);
}

.cr-btn-submit {
  background: linear-gradient(135deg, var(--cr-green), var(--cr-green-lt));
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  width: 100%;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cr-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 107, 69, 0.3);
}

/* Info sidebar */
.cr-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cr-info-box {
  background: var(--cr-light);
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.cr-info-box h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cr-info-box h6 i {
  color: var(--cr-green);
}

.cr-process-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.cr-process-step:last-child {
  margin-bottom: 0;
}

.cr-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-green), var(--cr-green-lt));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-process-step strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cr-dark);
  margin-bottom: 0.15rem;
}

.cr-process-step span {
  font-size: 0.78rem;
  color: var(--cr-grey);
}

.cr-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--cr-grey);
  margin-bottom: 0.6rem;
}

.cr-contact-item:last-child {
  margin-bottom: 0;
}

.cr-contact-item i {
  color: var(--cr-green);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cr-hero h1 {
    font-size: 2rem;
  }

  .cr-section-title {
    font-size: 1.75rem;
  }

  .cr-form-wrapper {
    padding: 1.8rem 1.2rem;
  }

  .cr-hero-stats {
    gap: 1.2rem;
  }
}

@keyframes cr-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cr-animate {
  animation: cr-fadeUp 0.6s ease both;
}

.cr-delay-1 {
  animation-delay: 0.1s;
}

.cr-delay-2 {
  animation-delay: 0.2s;
}

.cr-delay-3 {
  animation-delay: 0.3s;
}

.cr-delay-4 {
  animation-delay: 0.4s;
}

.cr-delay-5 {
  animation-delay: 0.5s;
}

.cr-delay-6 {
  animation-delay: 0.6s;
}
:root {
  --gold: #b8882a;
  --gold-light: #d4a84b;
  --gold-pale: #fdf6e3;
  --dark: #0d1117;
  --dark-2: #161c27;
  --dark-3: #1e2636;
  --cream: #f9f5ee;
  --green: #1a6b4a;
  --green-pale: #e8f5ee;
  --text: #2c3242;
  --muted: #6b7280;
  --border: #e5e0d6;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.cn-hero {
  background: linear-gradient(
    135deg,
    var(--cr-green) 0%,
    var(--cr-green-lt) 60%,
    #3db874 100%
  );
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.cn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(184, 136, 42, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cn-hero-watermark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 11rem;
  font-weight: 700;
  color: rgba(184, 136, 42, 0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.cn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 136, 42, 0.15);
  border: 1px solid rgba(184, 136, 42, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.cn-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.cn-hero h1 span {
  color: var(--gold-light);
}
.cn-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 1.8rem;
}
.cn-hero-crumb {
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.cn-hero-crumb span {
  color: #ff9800;
}

/* Hero stats */
.cn-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cn-hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #fba424;
  line-height: 1;
}
.cn-hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero illustration cards */
.cn-hero-illustration {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 136, 42, 0.2);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cn-illus-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cn-illus-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
}
.cn-illus-text strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.cn-illus-text span {
  font-size: 14px;
  color: rgb(255 255 255 / 82%);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ CONTACT INFO CARDS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.cn-info-section {
  padding: 5rem 0;
  background: #f9f5ee99;
}
.cn-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #009688;
  margin-bottom: 0.8rem;
}
.cn-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #009688;
  border-radius: 2px;
}
.cn-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cn-section-title span {
  color: #e9a53a;
}
.cn-section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.cn-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.cn-info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.cn-info-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(184, 136, 42, 0.12);
  transform: translateY(-4px);
}
.cn-info-card:hover::before {
  transform: scaleX(1);
}
.cn-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(184, 136, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.cn-info-card h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.cn-info-card p {
  font-size: 0.9rem;
  color: #0d0f13;
  line-height: 1.65;
  margin: 0;
}
.cn-info-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.cn-info-card a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ CONTACT FORM SECTION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.cn-form-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--cr-green) 0%,
    var(--cr-green-lt) 60%,
    #3db874 100%
  );
  position: relative;
  overflow: hidden;
}
.cn-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(184, 136, 42, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.cn-form-section .cn-eyebrow {
  color: #e5ac32;
}
.cn-form-section .cn-eyebrow::before {
  background: var(--gold-light);
}
.cn-form-section .cn-section-title {
  color: #fff;
}
.cn-form-section .cn-section-sub {
  color: rgb(255 255 255 / 98%);
}

/* Form card */
.cn-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgb(219 158 38 / 95%);
  border-radius: 12px;
  padding: 2.5rem;
}
.cn-form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgb(255 255 255 / 86%);
  font-weight: 500;
  margin-bottom: 0.45rem;
  display: block;
}
.cn-form-control {
  width: 100%;
  background: rgb(255 255 255 / 22%);
  border: 1px solid rgb(255 255 255 / 39%);
  color: #fff;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.cn-form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  color: #fff;
}
.cn-form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.cn-form-control option {
  background: #1a2030;
  color: #fff;
}
textarea.cn-form-control {
  resize: none;
}

.cn-btn-submit {
  background: linear-gradient(135deg, #e9a114, #e5a41b);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.cn-btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.cn-btn-submit:active {
  transform: translateY(0);
}

#cn-success {
  display: none;
  margin-top: 1rem;
  background: rgba(26, 107, 74, 0.2);
  border: 1px solid var(--green);
  color: #5cc99a;
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  text-align: center;
}

/* Sidebar */
.cn-sidebar-box {
  background: rgb(255 255 255 / 18%);
  border: 1px solid rgba(184, 136, 42, 0.2);
  border-radius: 10px;
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.cn-sidebar-box h6 {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 1.05rem;
  color: #f1b027;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cn-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.87rem;
  color: rgb(255 255 255 / 93%);
  line-height: 1.55;
}
.cn-contact-item i {
  color: #efaa13;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.cn-contact-item a {
  color: rgb(255 255 255 / 93%);
  text-decoration: none;
}
.cn-contact-item a:hover {
  color: var(--gold-light);
}

/* Social */
.cn-social-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.cn-social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #ffc107;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.cn-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MAP ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.cn-map-section {
  height: 300px;
  position: relative;
}
.cn-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(50%) sepia(10%);
}
.cn-map-pill {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  background: var(--dark);
  border: 1px solid rgba(184, 136, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}
.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 136, 42, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
/* Animate */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cn-animate {
  animation: fadeUp 0.6s ease both;
}
.cn-delay-1 {
  animation-delay: 0.1s;
}
.cn-delay-2 {
  animation-delay: 0.2s;
}
.cn-delay-3 {
  animation-delay: 0.35s;
}
.cn-delay-4 {
  animation-delay: 0.5s;
}
:root {
  --green: #1a5c3a;
  --green-mid: #1e7045;
  --green-light: #e8f5ee;
  --green-pale: #f0faf5;
  --gold: #c8960a;
  --gold-light: #f0b429;
  --gold-pale: #fdf6e3;
  --text: #1a2636;
  --muted: #5a6478;
  --border: #e0ead6;
  --cream: #f8faf6;
  --white: #ffffff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
}

/* â•â• HERO STRIP â•â• */
.fq-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.fq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(26, 92, 58, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.fq-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fq-hero-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.fq-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.fq-hero h1 span {
  color: var(--green);
}
.fq-hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* â•â• EXPLAINER DIAGRAM â•â• */
.fq-explainer {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.fq-exp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.fq-exp-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* diagram grid */
.fq-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  align-items: center;
}
.fq-diag-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.fq-diag-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 16px rgba(26, 92, 58, 0.12);
}
.fq-diag-node strong {
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 700;
}
.fq-diag-node span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fq-diag-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  text-align: center;
}
.fq-diag-center .fq-diag-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.fq-arrow {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--green);
  font-size: 1.3rem;
}
.fq-arrow-line {
  width: 60px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.fq-diag-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
}

/* bid cards */
.fq-bid-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.fq-bid-card {
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-align: center;
}
.fq-bid-1 {
  background: var(--green);
  color: #fff;
}
.fq-bid-2 {
  background: var(--green-mid);
  color: #fff;
}
.fq-bid-winner {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: 0.5rem;
}
.fq-bid-winner .winner-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fq-bid-winner h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.fq-bid-winner p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.fq-step-list {
  list-style: none;
  padding: 0;
}
.fq-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
}
.fq-step-list li:last-child {
  border-bottom: none;
}
.fq-step-list li i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* â•â• FAQ BODY â•â• */
.fq-body {
  padding: 5rem 0 5rem;
  background: var(--white);
}

/* Sidebar tabs */
.fq-sidebar {
  position: sticky;
  top: 3.5rem;
}
.fq-tab-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 0 0.6rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.fq-tab-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0.65rem 1rem;
  border-radius: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  margin-bottom: 0.3rem;
}
.fq-tab-btn:hover {
  background: var(--green-light);
  color: var(--green);
}
.fq-tab-btn.active {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

/* FAQ Section heading */
.fq-section-head {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--green-light);
  letter-spacing: -0.01em;
}

/* Accordion overrides */
.fq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
  background: transparent;
}
.fq-accordion .accordion-button {
  background: transparent;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 1rem 0.5rem 1rem 0;
  box-shadow: none;
  border-radius: 0 !important;
}
.fq-accordion .accordion-button:not(.collapsed) {
  color: var(--green);
  background: transparent;
  font-weight: 600;
}
.fq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231a5c3a' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.fq-accordion .accordion-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 0.5rem 1.2rem;
}

/* FAQ section blocks */
.fq-block {
  margin-bottom: 3.5rem;
}
.fq-block:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .fq-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fq-diag-center {
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem 0;
  }
  .fq-arrow {
    transform: rotate(90deg);
  }
}
.document-container {
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.header {
  background: #1a3c5e;
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
}
.header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.content {
  padding: 2rem;
  line-height: 1.8;
}
.section-title {
  color: #1a3c5e;
  /* border-bottom: 2px solid #dee2e6; */
  padding-bottom: 0.75rem;
  margin: 2rem 0 1.25rem 0;
}
.subsection {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.clause {
  margin-bottom: 1.25rem;
}
.legal-text {
  font-size: 1.05rem;
  text-align: justify;
}
.section-number {
  font-weight: bold;
  color: #1a3c5e;
}
:root {
  --brand-green: #1b4332;
  --brand-gold: #c8972a;
  --accent: #2d6a4f;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e0e0e0;
  --bg-section: #fafafa;
  --sidebar-link: #1b4332;
}

/* â”€â”€ PAGE HEADER â”€â”€ */
.pp-hero {
  background: #fff;
  border-bottom: 2px solid var(--border);
  padding: 52px 0 32px;
}
.pp-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 6px;
}
.pp-hero .last-modified {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.pp-hero .last-modified span {
  font-weight: 600;
  color: var(--brand-gold);
}

/* â”€â”€ LAYOUT â”€â”€ */
.pp-body {
  padding: 48px 0 80px;
}

/* â”€â”€ SIDEBAR â”€â”€ */
.pp-sidebar {
  position: sticky;
  top: 24px;
}
.pp-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pp-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pp-nav li {
  margin-bottom: 4px;
}
.pp-nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-green);
  text-decoration: none;
  padding: 7px 12px;
  border-left: 3px solid transparent;
  border-radius: 0 4px 4px 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.pp-nav a:hover,
.pp-nav a.active {
  background: rgba(27, 67, 50, 0.07);
  border-left-color: var(--brand-gold);
  color: var(--brand-green);
}

/* â”€â”€ CONTENT â”€â”€ */
.pp-content section {
  margin-bottom: -54px;
  scroll-margin-top: 80px;
  padding-bottom: 7px;
}
.pp-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}
.pp-content h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-green);
  margin: 22px 0 8px;
}
.pp-content p {
  font-size: 14.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}
.pp-content ol,
.pp-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.pp-content li {
  font-size: 14.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 6px;
}
.pp-content li strong {
  color: var(--brand-green);
}

/* bullet style for ul */
.pp-content ul li {
  list-style: none;
  padding-left: 4px;
  position: relative;
}
.pp-content ul li::before {
  content: "â†’";
  position: absolute;
  left: -18px;
  color: var(--brand-gold);
  font-size: 13px;
}

/* â”€â”€ HIGHLIGHT BOX â”€â”€ */
.info-callout {
  background: rgba(200, 151, 42, 0.07);
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* â”€â”€ CONTACT BLOCK â”€â”€ */
.contact-block {
  background: var(--brand-green);
  color: #fff;
  border-radius: 8px;
  padding: 28px 32px;
}
.contact-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.contact-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.contact-block a {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
}
.contact-block a:hover {
  text-decoration: underline;
}

/* â”€â”€ PROGRESS DOTS â”€â”€ */
.section-marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  margin-right: 8px;
  vertical-align: middle;
}
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1a5c3a;
  --bs-btn-border-color: #1a5c3a;
  padding: 12px 23px;
}
/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 768px) {
  .navbar {
    background: white;
  }
  .pp-sidebar {
    display: none;
  }
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: rgb(247 12 12) !important;
}
@media (max-width: 991px) {
  .cr-job-card {
    padding: 1.6rem 8px;
  }
  .hero h1 {
    font-size: 34px;
  }
  br {
    display: none;
  }
  .btn-quote {
    margin-bottom: 19px;
  }
}
/* Event Card Hover Effects */
.event-card {
  transition: all 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.event-card img {
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.08);
}

.card-title {
  transition: color 0.3s ease;
}

.event-card:hover .card-title {
  color: #0d6efd; /* Bootstrap primary color */
}

/* Optional: Dark overlay on hover */
.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.event-card:hover::after {
  opacity: 1;
} /* Image Fitting in Event Cards */
.event-card img {
  width: 100%;
  height: 368px; /* Fixed height - you can change this */
  object-fit: cover; /* Best for fitting images nicely */
  object-position: center; /* Centers the image */
  transition: transform 0.5s ease;
}

.card-text {
  color: #023b2e;
}
.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
  font-size: 18px;
  font-weight: 600;
}
.event-card:hover img {
  transform: scale(1.08);
}
.text-primary {
  color: #023b2e !important;
}
/* Card Hover Effect */
.event-card {
  transition: all 0.4s ease;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}
.founder-info h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
}
.fs-7 {
  font-size: 14px;
}
/* ── Highlight Box ── */
.highlight-box {
  margin: 3rem 0 1.5rem;
  padding: 2rem 2.5rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  text-align: center;
}

.hl-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}

.hl-main {
  /* font-family: "Playfair Display", serif; */
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.hl-main span {
  color: var(--gold);
}

.hl-lines {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 2.2;
  margin-bottom: 1rem;
}

.hl-lines strong {
  font-size: 14.5px;
  color: var(--text-primary);
  font-weight: 700;
  display: block;
}

.hl-focus {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── Achievements Grid ── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 1.5rem 0 0;
}

.ach-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 13px 15px;
  font-size: 15px;
  color: #131211;
  line-height: normal;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.ach-card:hover {
  border-color: var(--gold);
}

.ach-card i {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .js-timeline::before {
    left: 18px;
  }

  .js-tl-item,
  .js-tl-right {
    flex-direction: row !important;
  }

  .js-tl-card {
    width: calc(100% - 52px);
    margin-left: 52px !important;
    margin-right: 0 !important;
  }

  .js-tl-dot {
    left: 18px;
    transform: none;
  }

  .js-tl-date {
    display: none;
  }

  .js-tl-eyebrow::before {
    content: attr(data-year) " · ";
  }
}
:root {
  --gold: #c8a84b;
  --gold-light: #f5e9c2;
  --gold-dark: #9a7a2e;
  --text-primary: #1a1a1a;
  --text-secondary: #5f5e5a;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6f0;
  --border-light: rgba(0, 0, 0, 0.1);
  --radius-md: 8px;
  --radius-lg: 14px;
}

/* ── Section Wrapper ── */
.js-timeline-section {
  padding: 4rem 0 5rem;
}

/* ── Section Header ── */
.text-center {
  text-align: center;
}

.js-section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 11px; */
  /* letter-spacing: 3.5px; */
  text-transform: uppercase;
  /* color: var(--gold); */
  /* font-weight: 700; */
  margin-bottom: 0.6rem;
}

.js-section-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.js-section-title span {
  /* color: var(--gold); */
}

.js-section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.4px;
  margin-bottom: 3rem;
}

/* ── Timeline Container ── */
.js-timeline {
  position: relative;
  padding: 1rem 0;
}

.js-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 8%,
    var(--gold) 92%,
    transparent 100%
  );
  transform: translateX(-50%);
}

/* ── Timeline Item ── */
.js-tl-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
  position: relative;
}

.js-tl-left {
  flex-direction: row;
}
.js-tl-right {
  flex-direction: row-reverse;
}

/* ── Card ── */
.js-tl-card {
  width: 44%;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.js-tl-left .js-tl-card {
  margin-right: auto;
}
.js-tl-right .js-tl-card {
  margin-left: auto;
}

.js-tl-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.12);
}

/* future card variant */
.js-tl-card.future {
  border-color: var(--gold);
  background: var(--bg-secondary);
}

/* ── Card inner elements ── */
.js-tl-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  margin-bottom: 0.65rem;
}

.js-tl-eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.js-tl-card h5 {
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.js-tl-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ── Centre Dot ── */
.js-tl-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-secondary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  flex-shrink: 0;
}
.plan-btn:hover,
.plan-card.popular .plan-btn {
  background: var(--gold);
  color: #fff;
}
.plan-btn {
  display: block;
  width: 100%;
  margin-top: 1.2rem;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--gold);
  background: #c8a84b;
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s;
}
/* ── Why Choose Section ── */
.why-section {
  background: #16201f;
  padding: 3rem 0 2.5rem;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid rgba(200, 168, 75, 0.15);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 168, 75, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 22px;
  color: var(--gold);
}

.why-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Plans Table ── */
.plans-table-section {
  background: var(--dark-bg);
  padding: 3rem 0;
}

.plans-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 75, 0.2);
}

.plans-table thead tr th {
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
}

.plans-table thead tr th:first-child {
  text-align: left;
}

.plans-table tbody tr {
  transition: background 0.15s;
}

.plans-table tbody tr:nth-child(odd) {
  background: var(--dark-card);
}
.plans-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.plans-table tbody tr:hover {
  background: rgba(200, 168, 75, 0.08);
}

.plans-table tbody td {
  font-size: 15px;
  color: var(--text-light);
  padding: 14px 20px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(200, 168, 75, 0.08);
}

.plans-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--gold);
}

.tenure-pill {
  display: inline-block;
  background: rgb(139 195 74 / 12%);
  color: #009688;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

/* responsive */
@media (max-width: 768px) {
  .plan-value {
    font-size: 22px;
  }
  .plans-table td,
  .plans-table th {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
