:root{
  --green-900:#0b3d1a;
  --green-700:#146b2e;
  --green-600:#1b5f33;
  --green-100:#eaf6ee;

  --greybar:#d6ddd7;
  --ink:#0b1220;
  --muted:#5b6473;
  --border:#cfd7d1;

  --impact:#d29a2a;
  --radius:18px;

  --shadow: 0 12px 30px rgba(11,18,32,.08);
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--ink); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(1200px, 92%); margin:0 auto; }
.muted{ color: var(--muted); line-height:1.65; }

/* =========================
   TOP WELCOME STRIP (NEW)
========================= */
.top-welcome{
  background:#f3f4f6;
  border-bottom:1px solid #e5e7eb;
  font-size:13px;
  color:#374151;
  padding:8px 0;
}
.top-welcome-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.brand-highlight{
  color: var(--green-700);
  font-weight:800;
}
.welcome-right{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.welcome-item a:hover{
  text-decoration:underline;
}

/* =========================
   NAVBAR (CHANGED to WHITE)
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff; /* WHITE like FarmTech */
  border-bottom:1px solid #e5e7eb;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

/* Brand (bigger + FarmTech-like) */
.brand{
  display:flex;
  align-items:center;
  gap:3px;
}
.brand-large{ gap:14px; }

.brand-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:0;
  background:transparent;
  border:none;
}
.brand-logo-large{
  width: 86px;
  height:86px;
  border-radius:0;
  background: transparent;
  border: none;
}

.brand-stack{
  display:flex;
  flex-direction:column;
  line-height:1.0;
}

.brand-name{
  font-weight:900;
  font-size:14px;
  color: var(--green-900);
}
.brand-name-large{
  font-family: "Quire Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:900;
  font-size:16px;           /* smaller than before */
  color: var(--green-900);
  letter-spacing:.2px;
}
.brand-sub{
  font-size:12px;
  opacity:.9;
}
.brand-sub-large{
  font-family: "Quire Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:10px;           /* smaller */
  font-weight:800;
  color:#374151;
  letter-spacing:.3px;
  margin-top:3px;
}
/* Nav toggle */
.nav-toggle{
  display:none;
  font-size:20px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

/* Nav links */
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.nav-links-uppercase a{
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.5px;
}

.nav-links a{
  color:#374151;
  font-weight:700;
  opacity:1;
  padding:6px 4px;
  transition: .2s ease;
}
.nav-links a:hover{
  color: var(--green-700); /* hover turns green */
}

/* Active turns green */
.nav-links a.active{
  color: var(--green-700);
  font-weight:900;
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:700;
  padding:12px 18px;
  background: var(--green-700);
  color:#fff !important;
  border:none;
  box-shadow: 0 10px 22px rgba(20,107,46,.14);
}
.btn:hover{ filter: brightness(.97); }

.btn.ghost{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.25);
  box-shadow:none;
}

.nav-cta{
  background: var(--green-700);
  color:#fff !important;
  opacity:1 !important;
  box-shadow:none;
  padding:12px 16px;
  border-radius:14px;
}

/* =========================
   HERO (Slider)
========================= */
.hero{
  position:relative;
  height: calc(100vh - 74px);
  min-height:520px;
  overflow:hidden;
}

.hero-slides{ position:absolute; inset:0; }

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.03);
  transition: opacity .9s ease, transform 1.6s ease;
}
.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}

/* Green overlay */
.overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(11,61,26,.58) 0%,
    rgba(11,61,26,.58) 40%,
    rgba(11,61,26,.52) 100%
  );
}

/* Hero content */
.hero-center{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 0;
}

.hero-title{
  margin:0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height:1.05;
  color: rgba(255,255,255,.92);
}
.hero-title .impact{ color: var(--impact); }

.hero-subtitle{
  margin:0 0 34px;
  color: rgba(255,255,255,.78);
  font-size:22px;
  line-height:1.55;
  max-width:980px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.hero-btn{
  min-width:220px;
  padding:14px 22px;
  border-radius:12px;
  font-size:16px;
}

.hero-btn.light{
  background:#efe9db !important;
  color:#0b1220 !important;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:none;
}

.hero-btn.ghost{
  background: rgba(255,255,255,.06) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(3px);
  box-shadow:none;
}
.hero-btn.ghost:hover{ background: rgba(255,255,255,.10) !important; }

/* Dots */
.hero-dots{
  position:absolute;
  left:0; right:0;
  bottom:18px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:6;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
  cursor:pointer;
}
.dot.is-active{
  background:#fff;
  border-color:#fff;
}
/* =========================
   FEATURE STRIP (Mustard card under slider)
========================= */
.feature-strip{
  background:#ffffff;
  padding: 44px 0 10px;
}

.feature-card{
  max-width: 980px;
  margin: 0 auto;
  background: #ffce18;            /* MUSTARD */
  border-radius: 18px;
  padding: 54px 56px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  text-align: center;
}

/* Title like screenshot */
.feature-title{
  margin: 0 0 20px;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: #0b1220;
}

/* Highlight part of title */
.feature-title span{
  color: #146b2e;                 /* InEcon green */
}

/* Paragraph style */
.feature-text{
  margin: 0 auto;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(11,18,32,.78);
}

/* Mobile */
@media (max-width: 640px){
  .feature-card{
    padding: 34px 18px;
    border-radius: 16px;
  }
  .feature-text{
    font-size: 16px;
  }
}
/* =========================
   INTERACTIVE INSIGHT SECTION
========================= */
.insight-section{
  position:relative;
  padding:100px 0;
  background:#fff;
  overflow:hidden;
}
.insight-wrapper{ position:relative; z-index:2; }

/* Shapes */
.shape{ position:absolute; z-index:1; pointer-events:none; }

.shape.mustard{
  width:380px;
  height:280px;
  background: var(--impact);
  top:40px;
  left:-60px;
  border-radius:24px;
  opacity:.12;
}
.shape.diagonal{
  width:600px;
  height:300px;
  background: var(--green-100);
  bottom:-120px;
  right:-120px;
  transform: rotate(-8deg);
  border-radius:40px;
}

/* Header */
.insight-header{
  max-width:780px;
  margin-bottom:60px;
}
.insight-header .kicker{
  display:inline-block;
  background: rgba(210,154,42,.12);
  color: var(--impact);
  font-weight:800;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:16px;
  font-size:12px;
  letter-spacing:.5px;
}
.insight-header h2{
  font-size:40px;
  margin:0 0 16px;
  line-height:1.2;
}
.insight-header .highlight{ color: var(--green-700); }
.insight-header p{
  font-size:18px;
  color: var(--muted);
  line-height:1.6;
}

/* Cards */
.insight-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
.insight-box{
  background:#ffffff;
  border-radius:28px;
  padding:40px 36px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: all .3s ease;
  border:1px solid rgba(0,0,0,.04);

  text-align:center;         /* center all */
  position:relative;
  overflow:hidden;
}
.insight-box::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,206,24,.55), rgba(255,206,24,.0) 60%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.insight-box:hover{
  background:#ffce18;                /* mustard */
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
  border-color: rgba(0,0,0,.10);
}
.insight-box:hover::before{
  opacity:1;
}
.insight-box .tag{
  font-size:13px;
  font-weight:900;
  color: var(--green-700);
  margin-bottom:12px;
  letter-spacing:.5px;
}
.insight-box h3{
  margin:0 0 16px;
  font-size:26px;
  font-weight:900;
  color:#0b1220;
}
.insight-box p{
  margin:0 auto;
  max-width:260px;     /* THIS makes it look premium */
  color: rgba(11,18,32,.75);
  line-height:1.7;
  font-size:17px;
}
.insight-box:hover{
  background:#ffce18;
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}
.insight-box:hover p{
  color: rgba(11,18,32,.86);
}/* CTA band */
.insight-cta{
  margin-top:80px;
  padding:36px;
  background: var(--green-900);
  color:#fff;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.insight-cta h3{ margin:0 0 8px; }
.insight-cta p{ margin:0; opacity:.85; }

.cta-mustard{
  background: var(--impact) !important;
  color:#0b1220 !important;
  box-shadow:none !important;
}

/* =========================
   FOOTER (Simple centered)
========================= */
.footer-simple{
  background:#2f6f4f;
  color:#fff;
  padding:70px 0;
  text-align:center;
}
.footer-simple-title{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:28px;
  font-weight:800;
  color:#fff;
}
.footer-simple-sub{
  margin:0 0 18px;
  font-size:18px;
  opacity:.92;
}
.footer-simple-copy{
  margin:0;
  opacity:.75;
  font-size:14px;
}

/* =========================
   LOADER
========================= */
.page-loader{
  position:fixed;
  inset:0;
  background: var(--green-700);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.loader-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:700;
}
.spinner{
  width:56px;
  height:56px;
  border-radius:50%;
  border:6px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  animation: spin 1s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }
.loader-text{ font-size:13px; opacity:.95; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .insight-grid{ grid-template-columns: 1fr; }
  .shape.diagonal{ display:none; }
}

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }

  .nav-links{
    display:none;
    width:100%;
    padding:10px 0 14px;
    border-top:1px solid rgba(0,0,0,.10);
    gap:14px;
  }
  .nav-links.is-open{ display:flex; }

  .hero-subtitle{ font-size:18px; }
  .hero-btn{ min-width:190px; }
}

@media (max-width: 640px){
  .top-welcome-inner{ flex-direction:column; align-items:flex-start; }
}
/* Gradient keyword badge inside mustard card */
.feature-keyword{
  margin-top:30px;
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.5px;
  color:#ffffff;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.page-loader{
  position:fixed;
  inset:0;
  background: var(--green-700);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.loader-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:700;
}
.spinner{
  width:56px;
  height:56px;
  border-radius:50%;
  border:6px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  animation: spin 1s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }
.loader-text{ font-size:13px; opacity:.95; }
/* =========================
   ABOUT US HERO (FarmTech-style)
========================= */
.about-hero{
  background:#ffffff;
  padding: 34px 0 0;
}

.about-hero-inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:0;
  min-height: 620px;
  border-radius: 18px;
  overflow:hidden;
}

.about-hero-left{
  padding: 70px 64px;
  background:#ffffff;
}

.about-kicker{
  letter-spacing: .35em;
  font-size: 12px;
  color:#6b7280;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-title{
  margin:0;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  color:#1f2937;
}

.about-title-accent{
  color: var(--green-700);
}

.leaf-divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin: 18px 0 34px;
}

.leaf-divider .leaf{
  width:44px;
  height:28px;
  display:inline-block;
  background: var(--green-700);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath d='M52 6c-8 0-16 5-20 12C28 11 20 6 12 6 5 6 1 11 1 18c0 10 11 17 22 17 5 0 8-2 9-4 1 2 4 4 9 4 11 0 22-7 22-17 0-7-4-12-11-12z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath d='M52 6c-8 0-16 5-20 12C28 11 20 6 12 6 5 6 1 11 1 18c0 10 11 17 22 17 5 0 8-2 9-4 1 2 4 4 9 4 11 0 22-7 22-17 0-7-4-12-11-12z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity:.95;
}

.leaf-divider .line{
  height:1px;
  flex:1;
  background: linear-gradient(90deg, rgba(20,107,46,.35), rgba(20,107,46,0));
}

.about-copy{
  max-width: 640px;
  color:#4b5563;
  font-size: 18px;
  line-height: 1.85;
}

.about-copy p{
  margin:0 0 18px;
}

.about-actions{
  margin-top: 26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Right image takes full side */
.about-hero-right{
  position:relative;
  background:#0b3d1a;
}

.about-hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* small overlay wash for premium look */
.about-hero-right::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,61,26,.10), rgba(11,61,26,.22));
  pointer-events:none;
}

/* Responsive */
@media (max-width: 980px){
  .about-hero-inner{
    grid-template-columns: 1fr;
    min-height:auto;
  }
  .about-hero-left{
    padding: 44px 22px;
  }
  .about-hero-right{
    min-height: 320px;
  }
}
/* =========================
   MISSION + VISION
========================= */
.mv-section{
  padding: 70px 0;
  background: #f7f6f2;
}

.mv-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.mv-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* CARD */
.mv-card{
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 46px 36px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
  overflow: hidden;

  transform: translateY(0);
  transition: all .35s ease;
}

/* LEAF CORNER DECORATION */
.mv-card::before,
.mv-card::after{
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, rgba(16,94,58,0.08), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  transition: all .35s ease;
}

.mv-card::before{
  top: -30px;
  right: -30px;
}

.mv-card::after{
  bottom: -30px;
  left: -30px;
}

/* ICON */
.mv-icon{
  width: 82px;          /* BIGGER ICON */
  height: 82px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
}

/* TITLE */
.mv-title{
  position: relative;
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  display: inline-block;
  z-index: 2;
}

/* SOFT ANIMATED UNDERLINE */
.mv-title::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #ffce18;
  border-radius: 6px;
  transform: translateX(-50%);
  transition: width .35s ease;
}

/* TEXT */
.mv-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* HOVER EFFECT */
.mv-card:hover{
  background: #ffce18;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18);
  transform: translateY(-10px);
}

/* ICON GLOW ON HOVER */
.mv-card:hover .mv-icon{
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(255, 206, 24, 0.7));
}

/* Animate underline */
.mv-card:hover .mv-title::after{
  width: 60%;
}

/* Text contrast on mustard */
.mv-card:hover .mv-title,
.mv-card:hover .mv-text{
  color: #111827;
}

/* Stronger leaf glow on hover */
.mv-card:hover::before,
.mv-card:hover::after{
  background: radial-gradient(circle at center, rgba(255,206,24,0.25), transparent 70%);
}

/* Responsive */
@media (max-width: 900px){
  .mv-grid{
    grid-template-columns: 1fr;
  }
  .mv-card{
    padding: 38px 28px;
  }
  .mv-title{
    font-size: 26px;
  }
}
/* =========================
   VALUES SLIDER (Premium)
========================= */
.values-section{
  padding: 70px 0 90px;
  background: #f7f6f2;
}

.values-header{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.values-kicker{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
  color: #ffce18;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 206, 24, 0.14);
  border: 1px solid rgba(255, 206, 24, 0.35);
}

.values-title{
  margin: 14px 0 10px;
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
}

.values-accent{ color: #105e3a; }

.values-subtitle{
  margin: 0 auto;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

/* slider */
.values-slider{
  position: relative;
  margin-top: 22px;
}

.values-viewport{
  overflow: hidden;
  padding: 18px 0 12px;
}

/* Infinite marquee animation */
.values-track{
  display: flex;
  gap: 26px;
  align-items: center;
  width: max-content;
  will-change: transform;

  --marquee-distance: 1200px;
  --marquee-duration: 18s;
  animation: valuesMarquee var(--marquee-duration) linear infinite;
}

@keyframes valuesMarquee{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-distance)),0,0); }
}

/* fade edges */
.values-fade{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.values-fade-left{
  left: 0;
  background: linear-gradient(90deg, #f7f6f2 25%, rgba(247,246,242,0));
}

.values-fade-right{
  right: 0;
  background: linear-gradient(270deg, #f7f6f2 25%, rgba(247,246,242,0));
}

/* chips */
.value-chip{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform: scale(0.90);
  opacity: 0.68;
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.value-chip .value-name{
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  white-space: nowrap;
}

/* icon */
.value-ic{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffce18;
}
.value-ic svg{ width: 26px; height: 26px; }

/* center highlight (keeps changing while sliding) */
.value-chip.is-center{
  transform: scale(1.22);
  opacity: 1;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

/* keep it smooth on mobile */
@media (max-width: 900px){
  .values-title{ font-size: 28px; }
  .values-fade{ width: 70px; }
  .value-chip{ padding: 16px 22px; }
  .value-chip .value-name{ font-size: 18px; }
}
/* =========================
   OUR SERVICES (Alternating)
========================= */
/* =========================
   SERVICES (Video-style)
========================= */
.svx-section{
  padding: 70px 0 95px;
  background: #f7f6f2;
}

.svx-header{
  max-width: 980px;
  margin: 0 auto 26px;
}

.svx-kicker{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
  color: #ffce18;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 206, 24, 0.14);
  border: 1px solid rgba(255, 206, 24, 0.35);
}

.svx-title{
  margin: 14px 0 10px;
  font-size: 42px;
  font-weight: 950;
  color: #0f172a;
}

.svx-row{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.svx-row:first-of-type{ border-top: none; }

.svx-reverse .svx-text{ order: 2; }
.svx-reverse .svx-media{ order: 1; }

.svx-text{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.svx-mini{
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  color: #105e3a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svx-h{
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 950;
  color: #0f172a;
  display: inline-block;
  position: relative;
}

.svx-h::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 62%;
  height: 3px;
  background: #ffce18;
  border-radius: 999px;
}

.svx-p{
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.svx-p2{ margin-top: 16px; }

/* “leaf bullet” tiles (no icons) */
.svx-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 16px;
  margin-top: 20px;
}

.svx-item{
  position: relative;
  padding-left: 18px;
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.55;
}

.svx-item::before{
  content:"";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #ffce18;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(255,206,24,0.18);
}

/* image block */
.svx-media{
  position: relative;
}

.svx-img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  transition: transform .4s ease, box-shadow .4s ease;
}

.svx-row:hover .svx-img{
  transform: translateY(-8px);
  box-shadow: 0 38px 110px rgba(15, 23, 42, 0.22);
}

/* CTA */
.svx-cta{
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.svx-cta-title{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.svx-cta-sub{
  margin: 6px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 980px){
  .svx-title{ font-size: 32px; }
  .svx-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .svx-reverse .svx-text,
  .svx-reverse .svx-media{
    order: unset;
  }
  .svx-img{ height: 340px; }
  .svx-grid{ grid-template-columns: 1fr; }
  .svx-cta{ flex-direction: column; align-items: flex-start; }
}
/* Services main title centered */
.svx-header.centered{
  text-align: center;
  margin: 0 auto 34px;
}

.svx-title-main{
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: .06em;
  color: #0f172a;
}
/* =========================
   COMMUNITY PAGE (refined)
========================= */
/* =========================
   COMMUNITY PAGE (Final)
========================= */
.comms-hero{
  padding: 70px 0 95px;
  background: #f7f6f2;
}

.comms-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.comms-kicker{
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  color: #ffce18;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.comms-title{
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 950;
  color: #0f172a;
}

.comms-block{
  margin-top: 22px;
}

.comms-subhead{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.comms-text{
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: #475569;
  max-width: 650px;
}

/* What we do list: normal font */
.comms-list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.comms-list li{
  position: relative;
  padding-left: 18px;
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.65;
}

.comms-list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #ffce18;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(255,206,24,0.18);
}

/* image */
.comms-imgwrap{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.comms-img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* Lower area */
.comms-lower{
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

/* WHY IT MATTERS container (like screenshot) */
.comms-why-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 26px;
  padding: 34px 34px 32px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.comms-why-title{
  margin: 0;
  font-size: 34px;
  font-weight: 950;
  color: #0f172a;
}

.comms-why-line{
  height: 3px;
  width: 100%;
  background: rgba(15,23,42,0.10);
  border-radius: 999px;
  margin: 16px 0 18px;
}

.comms-why-text{
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  max-width: 1050px;
}

/* HOW IT'S FUNDED - One container + list inside */
.comms-funded-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 26px;
  padding: 26px 26px 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(10px);

  /* 2-axis floating motion */
  animation: fundedFloat2Axis 4.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes fundedFloat2Axis{
  0%   { transform: translate3d(0,0,0); }
  25%  { transform: translate3d(10px,-10px,0); }
  50%  { transform: translate3d(0,-16px,0); }
  75%  { transform: translate3d(-10px,-10px,0); }
  100% { transform: translate3d(0,0,0); }
}

.comms-funded-head{
  margin-bottom: 16px;
}

.comms-funded-title{
  font-size: 22px;
  font-weight: 950;
  color: #0f172a;
  margin: 0;
}

.comms-funded-sub{
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* list inside funded card */
.comms-funded-list{
  display: grid;
  gap: 14px;
}

/* list items hover: border green + shadow mustard */
.comms-funded-item{
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 18px;
  padding: 18px 18px 18px 56px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

/* left leaf marker (not icon-looking) */
.comms-funded-item::before{
  content:"";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #ffce18;
  border-radius: 0 50% 50% 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 0 3px rgba(255,206,24,0.18);
}

.comms-funded-item:hover{
  border-color: rgba(16, 94, 58, 0.55);
  box-shadow: 0 26px 70px rgba(255, 206, 24, 0.35);
  transform: translateY(-3px);
}

/* responsive */
@media (max-width: 980px){
  .comms-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .comms-title{ font-size: 36px; }
  .comms-img{ height: 360px; }
  .comms-why-title{ font-size: 26px; }
  .comms-why-card{ padding: 26px 22px; }
  .comms-funded-card{ padding: 22px; }
  .comms-funded-item{ padding-left: 52px; }
}
/* Why It Matters - image left layout */
.comms-why-inner{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}

.comms-why-media{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.comms-why-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.comms-why-card:hover .comms-why-img{
  transform: scale(1.05);
}

.comms-why-content{
  display: flex;
  flex-direction: column;
}

/* responsive */
@media (max-width: 980px){
  .comms-why-inner{
    grid-template-columns: 1fr;
  }

.comms-why-img{
  width: 100%;
  height: 220px;
  object-fit: cover;

  /* 👇 This keeps the upper part (face) visible */
  object-position: 50% 15%;

  display: block;
  transition: transform .4s ease;
}
}
/* Floating keyword on right image */
.comms-image-keyword{
  position: absolute;
  bottom: 22px;
  left: 22px;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 999px;

  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;

  color: #105e3a;

  box-shadow: 0 18px 55px rgba(15,23,42,0.18);
  backdrop-filter: blur(8px);

  animation: keywordFloat 4s ease-in-out infinite;
}

@keyframes keywordFloat{
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(0,-8px,0); }
  100% { transform: translate3d(0,0,0); }
}
/* =========================
   IMPACT PAGE (Creative Dashboard)
   Classes: impact2-*
========================= */

.impact2-pagehead{
  background:#fff;
  padding: 44px 0 18px;
}
.impact2-pagehead-inner{
  text-align:center;
}
.impact2-kicker{
  display:inline-block;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: #7b7b7b;
  margin-bottom: 10px;
}
.impact2-title{
  margin: 0;
  font-weight: 950;
  line-height: 1.05;
  font-size: clamp(34px, 5vw, 64px);
  color: #0b1220;
}

/* Fallback divider if you don’t already have it */
.leaf-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-top: 18px;
}
.leaf-divider .leaf{
  width: 22px;
  height: 12px;
  border-radius: 999px;
  background: var(--mustard, #ffce18);
  display:inline-block;
}
.leaf-divider .line{
  height: 1px;
  width: min(760px, 85%);
  background: rgba(15, 23, 42, .16);
  display:inline-block;
}

.impact2-hero{
  background: var(--green, #245c45);
  color: #fff;
  padding: 42px 0 56px;
}

.impact2-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

/* LEFT WHITE PANEL */
.impact2-leftpanel{
  background: rgba(255,255,255,0.96);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  color: #0b1220;
}

.impact2-panel-head{
  margin-bottom: 14px;
}

.impact2-panel-title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.impact2-panel-sub{
  margin: 0;
  color: rgba(11,18,32,0.72);
  font-weight: 650;
  line-height: 1.4;
}

/* GOALS LIST */
.impact2-goals-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.impact2-goal{
  display:flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(36,92,69,0.06);
  border: 1px solid rgba(36,92,69,0.14);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.impact2-goal:hover{
  transform: translateY(-2px);
  background: rgba(36,92,69,0.075);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
}

.impact2-goal-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,206,24,0.26);
  color: #1f4f3c;
  flex: 0 0 auto;
}
.impact2-goal-ico svg{ width: 22px; height: 22px; }

.impact2-goal-title{
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  color: #0b1220;
}
.impact2-goal-sub{
  font-size: 13px;
  font-weight: 650;
  margin-top: 4px;
  color: rgba(11,18,32,0.70);
  line-height: 1.35;
}

/* METRICS CHIPS */
.impact2-metrics-block{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, .10);
}

.impact2-metrics-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.impact2-metrics-title{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.impact2-metrics-tag{
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(36,92,69,0.10);
  border: 1px solid rgba(36,92,69,0.16);
  color: rgba(31,79,60,0.95);
}

.impact2-metrics-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.impact2-chip{
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(36,92,69,0.08);
  border: 1px solid rgba(36,92,69,0.14);
  color: rgba(11,18,32,0.86);
}

/* RIGHT PANEL */
.impact2-righttitle{
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.impact2-metrics-panel{
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  padding: 22px;
}

.impact2-metric-row{
  padding: 14px 0;
}

.impact2-metric-title{
  font-size: 24px;
  font-weight: 950;
}

.impact2-metric-sub{
  font-size: 15px;
  font-weight: 650;
  color: rgba(255,255,255,0.84);
  margin-top: 6px;
}

.impact2-meter{
  height: 12px;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  overflow:hidden;
  margin-top: 10px;
}

.impact2-meter-bar{
  display:block;
  height: 100%;
  width: 0%;
  background: var(--mustard, #ffce18);
  border-radius: 999px;
  transition: width 1200ms cubic-bezier(.2,.9,.2,1);
}

.impact2-metric-note{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 14px;
  font-weight: 650;
  color: rgba(255,255,255,0.84);
}

/* STATS BELOW */
.impact2-stats{
  background:#fff;
  padding: 34px 0 56px;
}
.impact2-stats-inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact2-stat{
  border: 1px solid #e9eef3;
  border-radius: 18px;
  padding: 18px;
  background:#fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
}
.impact2-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 206, 24, .18);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
  color: #1f4f3c;
}
.impact2-icon svg{ width: 24px; height: 24px; }

.impact2-stat-label{
  font-weight: 850;
  color:#52616b;
  margin-bottom: 6px;
}
.impact2-stat-value{
  font-size: 28px;
  font-weight: 950;
  color:#0b1220;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .impact2-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px){
  .impact2-stats-inner{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px){
  .impact2-stats-inner{
    grid-template-columns: 1fr;
  }
  .impact2-panel-title,
  .impact2-righttitle{
    font-size: 30px;
  }
}
/* =========================
   AI & INNOVATION PAGE (ai2-*)
========================= */

.ai2-hero{
  background: #fbfaf7; /* light warm background like screenshot */
  padding: 56px 0 70px;
}

.ai2-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

/* Left image card */
.ai2-media{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
  background: #fff;
}

.ai2-img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* Right content */
.ai2-kicker{
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #d39b13; /* mustard-ish label */
  margin-bottom: 12px;
}

.ai2-title{
  margin: 0 0 14px;
  font-weight: 950;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  color: #0b1220;
  font-family: Georgia, "Times New Roman", serif; /* similar elegant title feel */
}

.ai2-lead{
  margin: 0 0 22px;
  color: rgba(11,18,32,.72);
  font-weight: 650;
  font-size: 18px;
  line-height: 1.6;
  max-width: 56ch;
}

/* Feature tiles 2x2 */
.ai2-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.ai2-card{
  background: rgba(11,18,32,0.03);
  border: 1px solid rgba(11,18,32,0.06);
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ai2-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, .10);
}

.ai2-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 92, 69, 0.08);
  color: #1f4f3c;
  flex: 0 0 auto;
}

.ai2-ico svg{
  width: 18px;
  height: 18px;
}

.ai2-card-text{
  font-weight: 800;
  color: #0b1220;
  font-size: 16px;
}

/* Closing paragraph */
.ai2-foot{
  margin: 0;
  color: rgba(11,18,32,.72);
  font-weight: 650;
  font-size: 17px;
  line-height: 1.65;
  max-width: 60ch;
}

/* Responsive */
@media (max-width: 980px){
  .ai2-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ai2-img{
    height: 420px;
  }
}

@media (max-width: 560px){
  .ai2-cards{
    grid-template-columns: 1fr;
  }
}
/* =========================
   AI PAGE HEADER — About-style heading
========================= */

.ai2-head{
  margin-bottom: 18px;
}

.ai2-kicker2{
  display:inline-block;
  font-weight: 850;
  letter-spacing: .32em;         /* spaced like the screenshot */
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(11,18,32,.55);
  margin-bottom: 16px;
}

.ai2-title2{
  margin: 0;
  font-weight: 950;
  line-height: 0.95;
  font-size: clamp(46px, 5.2vw, 88px);  /* big, like your screenshot */
  letter-spacing: -0.03em;
}

.ai2-title2-green{
  color: #126b2a; /* strong brand green */
  display:block;
}

.ai2-title2-dark{
  color: #1a2433; /* dark navy/charcoal */
  display:block;
}

/* Divider: mustard “leaf” + long line */
.ai2-divider{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-top: 18px;
}

.ai2-divider-leaf{
  width: 26px;
  height: 14px;
  background: #ffce18;
  border-radius: 999px;
  position: relative;
  display:inline-block;
}

/* make it look like a little leaf / double blob */
.ai2-divider-leaf::after{
  content:"";
  position:absolute;
  right:-10px;
  top:0;
  width: 18px;
  height: 14px;
  background: #ffce18;
  border-radius: 999px;
  opacity: .95;
}

.ai2-divider-line{
  height: 1px;
  flex: 1;
  background: rgba(15, 23, 42, .16);
}