﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #0f3d22;
  --green: #1a6b3c;
  --green-mid: #2e8b57;
  --green-light: #eaf5ee;
  --green-pale: #f4faf6;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #4f4f4f;
  --border: #c2dece;
  --line: #d6ead e;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* â”€â”€ NAV â”€â”€ */
nav {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 96px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: none;
  border-bottom: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
}

.nav-logo img {
  height: 98px;
  width: auto;
  opacity: 1;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-logo-text strong {
  font-size: 1.25rem;
  font-family: Georgia, serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.2;
}

.nav-logo-text span {
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
  letter-spacing: 1.8px;
  color: var(--green-mid);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-mid);
}

/* â”€â”€ PAGE HERO BANNER â”€â”€ */
.page-hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  color: var(--white);
  padding: 80px 6% 70px;
}

.page-hero .inner {
  max-width: 860px;
}

.page-hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8ecfaa;
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #d4eedd;
  font-family: Arial, sans-serif;
  max-width: 720px;
}

/* â”€â”€ MAIN CONTENT â”€â”€ */
main {
  flex: 1;
}

.section {
  padding: 72px 6%;
}

.section.alt {
  background: var(--green-pale);
}

.section.tinted {
  background: var(--green-light);
}

.inner {
  max-width: 900px;
  margin: 0 auto;
  text-align:left;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-family: Arial, sans-serif;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: 1.85rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* â”€â”€ DIVIDER â”€â”€ */
.divider {
  width: 48px;
  height: 3px;
  background: var(--green-mid);
  margin: 1.2rem 0 2rem;
}

/* â”€â”€ INTRO STRIP â”€â”€ */
.intro-strip {
  background: var(--white);
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}

.intro-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.intro-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* LEFT */
.intro-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-mid);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 1.4rem;
}

.intro-heading {
  font-size: 2.8rem;
  font-family: Georgia, serif;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 0;
}

.intro-divider {
  width: 172px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px;
  margin: 1.4rem 0 1.8rem;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}


@media (max-width: 820px) {
  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-visual {
    max-width: 300px;
    margin: 0 auto;
  }

  .intro-heading {
    font-size: 2rem;
  }
}

/* â”€â”€ FEATURES SECTION â”€â”€ */
.features-section {
  padding: 100px 6%;
  background: var(--green-pale);
  position: relative;
  overflow: hidden;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-mid);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
}

.features-title {
  font-size: 2.4rem;
  font-family: Georgia, serif;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

.features-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Feature list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}

.feature-item:hover {
  background: var(--white);
}

.feature-item.active {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.10);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.feature-item.active .feature-icon-wrap {
  background: var(--green-mid);
  color: var(--white);
}

.feature-content h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-family: Georgia, serif;
}

.feature-content p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 0 0 0.8rem;
  display: none;
}

.feature-item.active .feature-content p {
  display: block;
}

.feature-progress-track {
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  overflow: hidden;
  display: none;
}

.feature-item.active .feature-progress-track {
  display: block;
}

.feature-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
  border-radius: 2px;
  transition: width 0.08s linear;
}

/* Image panel */
.features-image-wrap {
  position: relative;
}

.features-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(46, 139, 87, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.features-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: none;
  border-radius: 0;
}

.features-image-box img.active-img {
  display: block;
  animation: imgFadeIn 0.4s ease;
}

.features-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #0f3d22d9 0%, transparent 100%);
  padding: 2rem 1.5rem 1.2rem;
}

.features-image-overlay span {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8e6c0;
  font-family: Arial, sans-serif;
}

@media (max-width: 860px) {
  .features-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-title {
    font-size: 1.8rem;
  }
}

/* â”€â”€ PILLARS â”€â”€ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green-mid);
  padding: 2rem 1.8rem;
  border-radius: 3px;
}

.pillar-num {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--green-mid);
  font-family: Arial, sans-serif;
  margin-bottom: 0.8rem;
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.88rem;
  margin: 0;
}

/* â”€â”€ STAT STRIP â”€â”€ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 3rem;
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

/* â”€â”€ VALUES â”€â”€ */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.value {
  border-left: 4px solid var(--green-mid);
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-radius: 0 3px 3px 0;
}

.value h4 {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-family: Georgia, serif;
}

.value p {
  font-size: 0.86rem;
  margin: 0;
}

/* â”€â”€ TWO-COL LAYOUT â”€â”€ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* â”€â”€ VENTURE CARD â”€â”€ */
.venture-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

.venture-card-header {
  background: var(--green-dark);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.venture-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.badge {
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-family: Arial, sans-serif;
}

.venture-card-body {
  padding: 2rem;
}

.venture-card-body p {
  margin-bottom: 0;
}

.future-card {
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 1.5rem;
  background: var(--green-pale);
}

.future-card h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.future-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* â”€â”€ CONTACT â”€â”€ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  background: var(--white);
}

.contact-box h3 {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-box .detail {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: var(--green-mid);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* â”€â”€ FORM â”€â”€ */
.form-section {
  margin-top: 3rem;
}

.form-section h2 {
  margin-bottom: 0.4rem;
}

.form-section .divider {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-family: Arial, sans-serif;
}

input,
textarea,
select {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green-mid);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  text-decoration: none;
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 0.8rem 2.4rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-family: Arial, sans-serif;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--green-mid);
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: var(--green-dark);
  color: #8ecfaa;
  font-family: Arial, sans-serif;
  padding: 3rem 6% 0;
  border-top: 3px solid var(--green-mid);
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-family: Georgia, serif;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #6db88a;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.footer-legal {
  font-size: 0.75rem;
  line-height: 1.9;
  color: #6db88a;
}

.footer-legal a {
  color: #6db88a;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #8ecfaa;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #1e5c35;
  padding: 1.2rem 0;
  font-size: 0.73rem;
  color: #4d9966;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* â”€â”€ RESPONSIVE NAV â”€â”€ */
@media (max-width: 600px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

/* â”€â”€ SPLIT HERO â”€â”€ */
.hero-split {
  min-height: calc(100vh - 96px);
  background: url("public/hero_section_new.png") center center / cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 6%;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* LEFT */
.hero-left {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-family: Arial, sans-serif;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green-mid);
  flex-shrink: 0;
}

.hero-title {
  font-size: 3.2rem;
  font-family: Georgia, serif;
  color: #1e5c35;
  line-height: 1.15;
  margin-bottom: 1.6rem;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #1e5c35;
  font-family: Arial, sans-serif;
  max-width: 500px;
  margin-bottom: 2.4rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-outline {
  background: transparent !important;
  border: 1.5px solid var(--green-mid) !important;
  color: var(--green-dark) !important;
}

.btn-outline:hover {
  background: var(--green-light) !important;
  border-color: var(--green-dark) !important;
  color: var(--green-dark) !important;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: left;
}

.hero-stat-val {
  display: block;
  font-size: 1.5rem;
  font-family: Georgia, serif;
  color: var(--green-dark);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-family: Arial, sans-serif;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* RIGHT */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  background: transparent;
  display: block;
}

.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.hv-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hv-spin linear infinite;
}

.hv-ring-1 {
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(46, 139, 87, 0.2);
  animation-duration: 30s;
}

.hv-ring-2 {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(46, 139, 87, 0.3);
  animation-duration: 20s;
  animation-direction: reverse;
}

.hv-ring-3 {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(46, 139, 87, 0.45);
  animation-duration: 14s;
}

@keyframes hv-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hv-logo-box {
  width: 140px;
  height: 140px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 8px 40px rgba(46, 139, 87, 0.12), 0 2px 12px rgba(46, 139, 87, 0.08);
}

.hv-logo-box img {
  width: 90px;
  height: auto;
  opacity: 0.88;
}

.hv-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-mid);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(46, 139, 87, 0.1);
}

.hv-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

.hv-card-1 {
  top: 6%;
  left: 50%;
  animation: hv-float-c 4s ease-in-out infinite;
}

.hv-card-2 {
  bottom: 12%;
  left: 0%;
  animation: hv-float 5s ease-in-out infinite 0.8s;
}

.hv-card-3 {
  bottom: 12%;
  right: 0%;
  animation: hv-float 4.5s ease-in-out infinite 1.4s;
}

@keyframes hv-float-c {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes hv-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 6% 60px;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    background: transparent;
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@keyframes imgFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

/* INTRO RIGHT - full image & animations */
.intro-strip-right {
  display: flex;
  align-items: stretch;
}

.intro-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-full-img {
  width: 50%;
  max-width: 460px;
  height: auto;
  min-height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 10%;
  display: block;
  z-index: 5;
  filter: drop-shadow(0 15px 35px rgba(15, 61, 34, 0.12));
  transition: transform 0.3s ease;
}

.intro-img-wrap:hover .intro-full-img {
  transform: translateY(-5px);
}

/* Background animated gradient blob */
.intro-blob-bg {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.12) 0%, rgba(26, 107, 60, 0.04) 50%, transparent 75%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(10px);
  z-index: 1;
  animation: introBlob 12s ease-in-out infinite alternate;
}

/* Spinning text circle SVG */
.intro-text-ring-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  height: 540px;
  z-index: 2;
  pointer-events: none;
}

.intro-text-circle {
  width: 100%;
  height: 100%;
  animation: introRotate 25s linear infinite;
  overflow: visible;
}

.intro-text-circle path {
  fill: none;
}

.intro-text-circle text {
  fill: rgba(46, 139, 87, 0.28);
  font-family: Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

/* Floating interactive badges */
.intro-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(15, 61, 34, 0.08);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
}

.intro-badge:hover {
  transform: scale(1.05) !important;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(15, 61, 34, 0.15);
  border-color: var(--green-mid);
}

.intro-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 8px var(--green-mid);
  display: inline-block;
}

.intro-badge .badge-dot {
  animation: badgePulse 2s infinite ease-in-out;
}

.intro-badge .badge-txt {
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  color: var(--green-dark);
  font-weight: bold;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Positioning badges around center */
.intro-badge.badge-1 {
  top: 15%;
  left: -5%;
  animation: introFloat 6s ease-in-out infinite;
}

.intro-badge.badge-2 {
  bottom: 20%;
  left: -8%;
  animation: introFloat 5.5s ease-in-out infinite 1.2s;
}

.intro-badge.badge-3 {
  top: 40%;
  right: -5%;
  animation: introFloat 7s ease-in-out infinite 0.5s;
}

/* Keyframes */
@keyframes introRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes introBlob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }

  50% {
    border-radius: 50% 60% 50% 50% / 40% 60% 50% 60%;
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(360deg) scale(1);
  }
}

@keyframes introFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Adaptive mobile layout overrides */
@media (max-width: 1024px) {
  .intro-text-ring-wrap {
    width: 460px;
    height: 460px;
  }
}

@media (max-width: 820px) {
  .intro-text-ring-wrap {
    width: 380px;
    height: 380px;
  }

  .intro-badge.badge-1 {
    left: 0%;
    top: 5%;
  }

  .intro-badge.badge-2 {
    left: -5%;
    bottom: 10%;
  }

  .intro-badge.badge-3 {
    right: -2%;
    top: 35%;
  }
}

@media (max-width: 580px) {
  .intro-text-ring-wrap {
    display: none;
  }

  .intro-blob-bg {
    display: none;
  }

  .intro-badge {
    position: static;
    margin: 0.5rem auto;
    width: fit-content;
    animation: none !important;
  }

  .intro-img-wrap {
    flex-direction: column;
    gap: 0.8rem;
  }

  .intro-full-img {
    max-width: 100%;
    min-height: auto;
  }
}

.intro-img-tab {
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 12px 12px 0;
  padding: 0.8rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 4px 4px 20px rgba(15, 61, 34, 0.12);
  z-index: 2;
  min-width: 90px;
}

.intro-img-tab img {
  width: 44px;
  height: auto;
}

.intro-img-tab span {
  font-size: 0.62rem;
  font-family: Arial, sans-serif;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.4;
}

/* Hero image background text overrides */
.hero-split .eyebrow,
.hero-split .hero-eyebrow {
  color: #7ecfa0;
}

.hero-split .hero-eyebrow::before {
  background: #7ecfa0;
}

.hero-split .hero-title {
  color: #0f3d22d9;
}

.hero-split .hero-desc {
  color: #c8e6d4;
}

.hero-split .btn-outline {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
}

.hero-split .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
}

/* Nav overlay on hero */
nav .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Push hero content down so it clears the nav */
.hero-split {
  padding-top: calc(96px + 10px);
  min-height: 100vh;
  align-items: flex-start;
}

/* Restore white nav on non-hero pages */
body:not(:has(.hero-split)) nav {
  position: sticky;
  background: var(--white);
}

body:not(:has(.hero-split)) nav .nav-links a {
  color: var(--green-dark);
}

body:not(:has(.hero-split)) nav .nav-links a:hover,
body:not(:has(.hero-split)) nav .nav-links a.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}

/* ── OUTLINE BUTTON FIX on hero ── */
.hero-split .btn-outline {
  border: 2px solid var(--green-mid) !important;
  color: var(--green-mid) !important;
  background: transparent !important;
}

.hero-split .btn-outline:hover {
  background: var(--green-mid) !important;
  color: #ffffff !important;
  border-color: var(--green-mid) !important;
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  background: url("") center center / cover no-repeat;
}

.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
  filter: drop-shadow(0 -4px 12px rgba(15, 61, 34, 0.10));
}

/* ── NAV BRAND TITLE ── */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav-brand-main {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

.nav-brand-main::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), transparent);
  margin-top: 2px;
  border-radius: 2px;
}

.nav-brand-sub {
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7ecfa0;
}

body:not(:has(.hero-split)) .nav-brand-main {
  color: var(--green-dark);
}

body:not(:has(.hero-split)) .nav-brand-main::after {
  background: linear-gradient(90deg, var(--green-mid), transparent);
}

body:not(:has(.hero-split)) .nav-brand-sub {
  color: var(--green-mid);
}

/* Wave inside hero */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* Hero desc same color as title */
.hero-split .hero-desc {
  color: var(--green-mid) !important;
}

.brand-section{
    padding:100px 20px;
}

.brand-section .inner{
    max-width:1200px;
    margin:auto;
}

/* Center Brand Spotlight */

.spotlight-tag{
    display:table;
    margin:0 auto 55px;
}

/* Card */

.brand-card{

    position:relative;

    background:#ffffff;

    border-radius:28px;

    padding:80px 60px 60px;

    box-shadow:0 35px 60px rgba(10,10,10,0.35);

    overflow:visible;

}

/* Floating Title */

.brand-name{

    position:absolute;

    top:-30px;

    left:50%;

    transform:translateX(-50%);

    background:#1874B2;

    color:#fff;

    padding:16px 50px;

    border-radius:50px;

    font-size:32px;

    font-weight:700;

    white-space:nowrap;

    box-shadow:0 15px 30px rgba(20,20,20,.35);

}

/* Layout */

.brand-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

/* Left */

.brand-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.brand-image img{

    width:100%;

    max-width:380px;

    object-fit:contain;

}

/* Right */

.brand-info{

    flex:1;

}

.brand-info p{

    font-size:18px;

    line-height:1.9;

    color:#556b5f;

    margin-bottom:35px;

}

/* Button */

.brand-btn{

    display:inline-block;

    background:#1874B2;

    color:#ffff;

    padding:15px 34px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.brand-btn:hover{

    background:red;

    transform:translateY(-3px);

}

/* Mobile */

@media(max-width:900px){

.brand-card{

    padding:90px 30px 40px;

}

.brand-wrapper{

    flex-direction:column;

    text-align:center;

    gap:30px;

}

.brand-name{

    font-size:22px;

    padding:14px 28px;

    width:90%;

    white-space:normal;

}

.brand-image img{

    max-width:320px;

}

}
.page-hero{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Replace with your image */
    background: url("public/about_hero.png") center center/cover no-repeat;
}
.page-hero-venture{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Replace with your image */
    background: url("public/venture_hero.png") center center/cover no-repeat;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(9,35,23,0.82) 0%,
        rgba(12,56,37,0.65) 40%,
        rgba(12,56,37,0.25) 100%
    );
}

.page-hero .inner{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 120px 30px;
}

.page-hero .eyebrow{
    color:#8ecfaa;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:18px;
}

.page-hero h1{
    color:#fff;
    font-size:4rem;
    line-height:1.1;
    margin-bottom:24px;
}

.page-hero p{
    color:rgba(255,255,255,.9);
    max-width:650px;
    font-size:1.15rem;
    line-height:1.8;
}

@media (max-width:768px){

.page-hero{
    min-height:420px;
}

.page-hero h1{
    font-size:2.6rem;
}

.page-hero p{
    font-size:1rem;
}

}
/* Values Section */

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:50px;
}

.value-card{
    background:#ffffff;
    border:2px solid #2e7d32;
    border-radius:18px;
    padding:30px 24px;
    text-align:center;
    transition:all .35s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

.value-card h4{
    font-size:1.25rem;
    color:#14532d;
    margin-bottom:15px;
    font-weight:700;
}

.value-card p{
    color:#555;
    line-height:1.7;
    font-size:.98rem;
}

/* Hover Effect */
.value-card:hover{
    transform:translateY(-10px) scale(1.05);
    border-color:#14532d;
    box-shadow:10 18px 40px rgba(46,125,50,.18);
}

/* Optional top accent animation */
.value-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:#14532d;
    transition:.35s ease;
}

.value-card:hover::before{
    width:100%;
}

/* Tablet */
@media (max-width:992px){
    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .values-grid{
        grid-template-columns:1fr;
    }

    .value-card{
        padding:24px;
    }
}
.company-structure{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    background:#f4f7f5;
}

.structure-card{
    width:100%;
    max-width:900px;
    background:#14532d;
    color:#fff;
    padding:45px 30px;
    text-align:center;
    border-radius:18px;
    border:2px solid rgba(52,168,83,.35);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.structure-card:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:#34a853;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.structure-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
        rgba(52,168,83,.08),
        transparent 45%);
    opacity:0;
    transition:.4s;
}

.structure-card:hover::before{
    opacity:1;
}

.structure-card h2{
    margin:0;
    font-size:2rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.subtitle{
    margin-top:10px;
    font-size:1.05rem;
    color:#d7d7d7;
}

.subtitle span{
    color:#fff;
    text-decoration:underline;
}

.connector{
    margin:22px auto;
    width:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.line{
    width:3px;
    height:24px;
    background:#fff;
}

.arrow{
    width:0;
    height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:16px solid #fff;
}

.structure-card h3{
    margin:10px 0;
    color:#fff;
    font-size:1.8rem;
    font-weight:700;
    text-transform:uppercase;
}

.brand-info{
    color:#d7d7d7;
    font-size:1rem;
}

.brand-info span{
    color:#fff;
    text-decoration:underline;
}

.brand-info a{
    color:#d7d7d7;
    text-decoration:none;
    transition:.3s;
}

.brand-info a:hover{
    color:#fff;
}

@media(max-width:768px){

    .structure-card{
        padding:35px 20px;
    }

    .structure-card h2{
        font-size:1.6rem;
    }

    .structure-card h3{
        font-size:1.35rem;
    }

    .subtitle,
    .brand-info{
        font-size:.95rem;
        line-height:1.7;
    }
}
.structure-content{
    max-width:900px;
    margin:0 auto;
    /* text-align:center; */
}

.structure-content p{
    font-size:1.05rem;
    line-height:1.9;
    color:#5a5a5a;
    margin-bottom:18px;
}

/* Landscape Card */

.landscape-card{
    max-width:900px;
    margin:60px auto 0;
    background:#14532d;
    color:#fff;
    border:2px solid rgba(52,168,83,.35);
    border-radius:18px;
    padding:45px 40px;
    text-align:center;
    transition:all .35s ease;
}

.landscape-card:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.landscape-card h2{
    margin:0;
    font-size:2rem;
    text-transform:uppercase;
    color:#fff
}

.subtitle{
    margin:12px 0 24px;
    color:#d7d7d7;
}

.subtitle span{
    color:#fff;
    text-decoration:underline;
}

.connector{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin:25px 0;
}

.line{
    width:3px;
    height:24px;
    background:#fff;
}

.arrow{
    width:0;
    height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:15px solid #fff;
}

.landscape-card h3{
    color:#fff;
    font-size:1.7rem;
    margin-bottom:15px;
    text-transform:uppercase;
}

.brand-info{
    color:#d7d7d7;
    line-height:1.7;
}

.brand-info span{
    color:#fff;
    text-decoration:underline;
}

.brand-info a{
    color:#d7d7d7;
    text-decoration:none;
}

.brand-info a:hover{
    color:#fff;
}

@media(max-width:768px){

    .landscape-card{
        padding:35px 25px;
    }

    .landscape-card h2{
        font-size:1.5rem;
    }

    .landscape-card h3{
        font-size:1.3rem;
    }
}
.structure-card{
    position: relative;
    z-index: 1;
}

.brand-info a{
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.page-hero-venture{
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url("public/venture_hero.png") no-repeat right center;
    background-size: cover;
}

.page-hero-venture .inner{
    width: 100%;
}

.hero-content{
    max-width: 300px;
    /* text-align: left; */
    padding: 10px 0px;
}

.hero-content .eyebrow{
    margin-bottom: 15px;
}

.hero-content h1{
    font-size: clamp(2.0rem, 4vw, 4.5rem);
    /* margin-bottom: 20px; */
    /* line-height: 1.15; */
}

.hero-content p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
.hero-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.hero-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:16px;
    color:#55616d;
    font-size:1.05rem;
    line-height:1.7;
}

.hero-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    color:#2E7D32;
    font-size:1rem;
    font-weight:700;
}

.contact-hero{
    background-image:
        linear-gradient(
            to right,
            #2e7d327d 0%,
            rgba(255,255,255,0.90) 45%,
            rgba(255,255,255,0.35) 70%,
            rgba(255,255,255,0.10) 100%
        ),
        url("public/contact_hero.png");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}
/* Card */

.venture-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #dfe6ee;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* Header */

.venture-card-header{
    background:linear-gradient(135deg,#1874B2,#0F5F95);
    color:#fff;
    padding:28px 35px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* Logo + Title */

.venture-title{
    display:flex;
    align-items:center;
    gap:18px;
}

.venture-logo{
    width:60px;
    height:60px;
    object-fit:contain;
    background:#fff;
    border-radius:14px;
    padding:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.venture-title h3{
    margin:0;
    font-size:1.7rem;
    color:#fff;
}

.venture-subtitle{
    margin-top:5px;
    color:rgba(255,255,255,.75);
}

/* Status Badge */

.venture-status{
    background:#EF2225;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 8px 20px rgba(239,34,37,.35);
}

/* Body */

.venture-card-body{
    padding:40px;
}

/* Visit Button */

.venture-card .btn{
    background:#1874B2;
    color:#fff;
    border:none;
    transition:.3s;
}

.venture-card .btn:hover{
    background:#EF2225;
    transform:translateY(-3px);
}

/* Table */

.venture-card table td:last-child{
    color:#1874B2;
    font-weight:600;
}

.venture-card table tr{
    transition:.3s;
}

.venture-card table tr:hover{
    background:#f7fbff;
}

.btn-venture{
    background:#1874B2;
    color:#fff;
    border:none;
    transition:.3s;
    padding:15px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}