/* =====================================================
   SafeClean Agro Tech — Premium Redesign v2.0
   ===================================================== */

:root {
  /* === TRUST-GREEN AGRICULTURAL PALETTE === */
  --green-primary: #2e7d32;      /* Forest green — growth, reliability */
  --green-dark: #1b5e20;         /* Deep forest — premium, grounded */
  --green-mid: #388e3c;          /* Natural green */
  --green-light: #81c784;        /* Soft sage */
  --green-accent: #1565c0;       /* Trust blue — confidence, safety */
  --green-neon: #43a047;         /* Natural bright green */

  /* === LIGHT THEME SURFACES === */
  --dark-bg: #f4f9f5;            /* Page background — warm off-white */
  --dark-card: #ffffff;          /* Card surfaces */
  --dark-card2: #edf5ee;         /* Subtle tinted surface */
  --dark-card3: #e1f0e3;         /* Soft green surface */

  /* === GLASS & BORDERS === */
  --glass: rgba(46,125,50,0.05);
  --glass-border: rgba(46,125,50,0.14);

  /* === TYPOGRAPHY (dark on light) === */
  --text-white: #1a2e1c;         /* Primary text — near-black with green tint */
  --text-light: rgba(26,46,28,0.82);
  --text-muted: rgba(26,46,28,0.70);

  /* === GRADIENTS === */
  --gradient-hero: linear-gradient(150deg, #1b5e20 0%, #2e7d32 45%, #1a4a7a 100%);
  --gradient-green: linear-gradient(135deg, #2e7d32 0%, #1565c0 100%);
  --gradient-green2: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  --gradient-card: linear-gradient(135deg, rgba(46,125,50,0.05), rgba(21,101,192,0.03));

  /* === SHADOWS (softer for light theme) === */
  --shadow-glow: 0 4px 24px rgba(46,125,50,0.14);
  --shadow-card: 0 4px 28px rgba(0,0,0,0.07);

  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark-bg); color: var(--text-white);
  overflow-x: hidden; line-height: 1.6;
  position: relative;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--green-primary); border-radius: 3px; }
::selection { background: rgba(0,200,83,0.3); color: #fff; }

/* ======== SITE-WIDE LOGO WATERMARK — HIDDEN ======== */
.site-watermark { display: none; }
.watermark-img { display: none; }

/* ======== AGRICULTURAL VIBE OVERRIDES ======== */
/* Soften neon scan rings to earthy tones */
.fhc-photo-ring.rg1 { border-color: rgba(46,125,50,0.15); }
.fhc-photo-ring.rg2 { border-color: rgba(46,125,50,0.09); }
.fhc-photo-ring.rg3 { border-color: rgba(46,125,50,0.05); }
/* Warmer glow on holo overlay */
.fhc-holo-overlay {
  background: linear-gradient(135deg,
    rgba(76,175,80,0.04) 0%, transparent 50%,
    rgba(104,159,56,0.05) 100%);
}
/* Hide skill bars (removed from HTML but keep CSS clean) */
.fhc-skills { display: none; }

/* ======== LOADER ======== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #f4f9f5;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo-wrap {
  display: flex; flex-direction: column; align-items: center;
}

/* Logo zoom-in → zoom-out animation */
.loader-logo-img {
  width: 160px; height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(46,125,50,0.35));
  animation: logoZoomPulse 1.8s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes logoZoomPulse {
  0%   { transform: scale(0.82); opacity: 0.7; }
  45%  { transform: scale(1.08); opacity: 1;   }
  100% { transform: scale(0.82); opacity: 0.7; }
}

.loader-bar-wrap {
  width: 200px; height: 3px; background: rgba(46,125,50,0.12); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--gradient-green); border-radius: 2px;
  box-shadow: 0 0 12px var(--green-primary);
  transition: width 0.06s linear;
}
.loader-percent { color: var(--green-primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; margin-top: 4px; }

/* ======== NAVBAR ======== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46,125,50,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
#navbar.scrolled .nav-link {
  color: rgba(26,46,28,0.85);
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--green-primary);
}
#navbar.scrolled .logo-main {
  background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
#navbar.scrolled .logo-sub {
  color: var(--green-primary);
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
/* Logo image in navbar */
.logo-mark {
  width: 48px; height: 48px; border-radius: 12px;
  overflow: hidden;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.logo-mark svg { width: 24px; height: 24px; fill: #020d07; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Rajdhani', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: #ffffff; -webkit-text-fill-color: #ffffff;
}
.logo-sub { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 2.5px; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav-link {
  display: block; padding: 8px 16px;
  text-decoration: none; color: rgba(255,255,255,0.88);
  font-size: 0.88rem; font-weight: 500; border-radius: 8px;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gradient-green);
  border-radius: 1px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--gradient-green);
  color: #ffffff; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.84rem;
  white-space: nowrap; flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(46,125,50,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,0.45); }
.nav-cta svg { width: 16px; height: 16px; fill: #ffffff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 1px; transition: var(--transition);
}
#navbar.scrolled .hamburger span {
  background: var(--green-primary);
}

/* ======== BTN SYSTEM ======== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 34px; background: var(--gradient-green);
  color: #ffffff; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,200,83,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,0.4); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine { 0%,100% { left: -100%; } 60% { left: 160%; } }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 34px;
  background: rgba(255,255,255,0.15); color: #ffffff;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: var(--transition);
  backdrop-filter: blur(8px); text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.28); transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.2); border-color: #ffffff;
}
/* btn-secondary inside non-hero contexts gets standard dark style */
.company-section .btn-secondary,
.purpose-section .btn-secondary,
.products-section .btn-secondary {
  background: transparent; color: var(--green-primary); border-color: var(--green-primary);
  text-shadow: none; backdrop-filter: none;
}
.company-section .btn-secondary:hover,
.purpose-section .btn-secondary:hover,
.products-section .btn-secondary:hover {
  background: rgba(46,125,50,0.1); box-shadow: 0 10px 32px rgba(46,125,50,0.3);
}

/* ======== HERO ======== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--gradient-hero);
}
/* Subtle organic radial lights — replace sci-fi particles */
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(21,101,192,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(46,125,50,0.2) 0%, transparent 70%);
  pointer-events: none;
}
/* Subtle leaf dot pattern */
.hero-section::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
#heroCanvas {
  display: none; /* Removed particle animation for clean agricultural look */
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  width: 100%; max-width: 1280px;
  padding: 130px 60px 90px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: left;
}
.hero-title { align-items: flex-start; }

/* ======== FARMER IMAGE ======== */
.hero-farmer-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: farmerFloat 4s ease-in-out infinite;
}
@keyframes farmerFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.farmer-halo {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(46,125,50,0.35) 0%, rgba(21,101,192,0.15) 50%, transparent 75%);
  animation: farmerHaloPulse 3.5s ease-in-out infinite;
  z-index: 0;
}
@keyframes farmerHaloPulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}
.farmer-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  z-index: 1; pointer-events: none;
}
.farmer-ring-1 {
  inset: -12px;
  animation: rotateCW 12s linear infinite;
  border-color: rgba(46,125,50,0.4);
  border-top-color: rgba(255,255,255,0.6);
}
.farmer-ring-2 {
  inset: -30px;
  animation: rotateCCW 18s linear infinite;
  border-color: rgba(21,101,192,0.25);
  border-bottom-color: rgba(255,255,255,0.3);
}
@keyframes rotateCW { to { transform: rotate(360deg); } }
@keyframes rotateCCW { to { transform: rotate(-360deg); } }
.farmer-img {
  position: relative; z-index: 2;
  width: 100%; max-width: 460px;
  height: 520px; object-fit: cover;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(46,125,50,0.35),
    0 0 100px rgba(46,125,50,0.15);
  filter: brightness(1.05) saturate(1.15);
  animation: farmImgPulse 5s ease-in-out infinite;
}
@keyframes farmImgPulse {
  0%,100% { box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(46,125,50,0.35), 0 0 100px rgba(46,125,50,0.15); }
  50% { box-shadow: 0 36px 90px rgba(0,0,0,0.55), 0 0 80px rgba(46,125,50,0.5), 0 0 140px rgba(46,125,50,0.25); }
}
.farmer-badge-float {
  position: absolute; bottom: -10px; left: -10px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px; padding: 10px 20px;
  color: #ffffff; font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: badgeFloat 3s ease-in-out infinite;
}
.farmer-badge-float svg { color: #ffd700; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}



.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; margin-bottom: 30px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.95);
  animation: fadeInDown 0.8s ease 0.4s both;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #a5d6a7;
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.6; } }

.hero-title {
  font-family: 'Rajdhani', sans-serif; line-height: 1.0; margin-bottom: 22px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-line-top {
  font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 4px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-line-brand {
  font-size: clamp(4rem, 12vw, 9rem); font-weight: 900; line-height: 0.9;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-line-sub {
  font-size: clamp(1rem, 3vw, 2rem); font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 8px;
  animation: fadeInUp 0.8s ease 1.0s both;
}

.hero-tagline {
  display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 6px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 1.2s both;
}
.tagline-pill {
  padding: 5px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px; color: rgba(255,255,255,0.95);
  font-size: 1.05rem; font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 0 36px;
  animation: fadeInUp 0.8s ease 1.4s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 1.6s both;
}

.hero-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px; padding: 16px 24px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease 1.8s both;
  flex-wrap: wrap; justify-content: flex-start;
}
.stat-item { text-align: center; padding: 0 16px; }
.stat-number {
  display: block;
  font-family: 'Rajdhani', sans-serif; font-size: 2.8rem; font-weight: 900;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  line-height: 1;
}
.stat-suffix { color: #a5d6a7; font-size: 1.8rem; font-weight: 900; }
.stat-label { display: block; color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 1.5px; margin-top: 2px; }
.stat-sep { width: 1px; height: 52px; background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; z-index: 2;
  animation: fadeIn 1.2s ease 2.2s both;
}
.scroll-track {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center; padding: 4px;
}
.scroll-dot {
  width: 4px; height: 8px; border-radius: 2px; background: var(--green-primary);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0; } }

/* ======== SECTION SYSTEM ======== */
.section-wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-primary); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--gradient-green); border-radius: 1px; }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--text-white); line-height: 1.15; margin-bottom: 14px;
}
.section-desc { color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.75; }
.section-rule {
  width: 72px; height: 3px; background: var(--gradient-green);
  border-radius: 2px; margin: 20px auto 0;
}
.section-header.left .section-rule { margin-left: 0; }

/* ======== COMPANY SECTION ======== */
.company-section { padding: 110px 0; background: var(--dark-bg); }

.company-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center;
}

.company-visual { position: relative; }

.company-card-3d {
  position: relative; padding: 40px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.company-card-3d:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg) translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-accent {
  position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: var(--gradient-green); opacity: 0; z-index: -1;
  transition: opacity 0.35s; filter: blur(22px);
}
.company-card-3d:hover .card-accent { opacity: 0.08; }

.feature-icons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px;
}
.feat-icon-cell {
  background: #f0f7f2;
  border: 1px solid rgba(46,125,50,0.13);
  border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: var(--transition); cursor: default;
}
.feat-icon-cell:hover {
  background: rgba(0,200,83,0.12); border-color: var(--green-primary);
  transform: translateY(-4px);
}
.feat-icon-cell svg { width: 32px; height: 32px; color: var(--green-primary); }
.feat-icon-cell span { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-align: center; }

.company-badge {
  background: rgba(0,200,83,0.06); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 18px; text-align: center;
}
.badge-est {
  font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 900;
  background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.badge-name { color: rgba(26,46,28,0.72); font-size: 0.72rem; letter-spacing: 1px; margin-top: 2px; }

.founder-float, .cofounder-float {
  position: absolute;
  background: rgba(6,26,14,0.92);
  border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(14px); box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.founder-float { bottom: -24px; left: -24px; animation: floatA 3.5s ease-in-out infinite; }
.cofounder-float { top: -24px; right: -24px; animation: floatB 3.5s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.founder-float:hover, .cofounder-float:hover { transform: scale(1.05) !important; animation-play-state: paused; }

.founder-avatar-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.founder-avatar-icon svg { width: 22px; height: 22px; fill: #020d07; }
.founder-details strong { display: block; color: #ffffff; font-size: 0.9rem; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.founder-details em { display: block; color: #a5d6a7; font-size: 0.74rem; font-style: normal; }

.company-content .company-text { color: rgba(26,46,28,0.85); margin-bottom: 20px; line-height: 1.85; }
.company-content .company-text strong { color: var(--green-primary); }

.mission-block {
  display: flex; gap: 16px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 28px;
}
.mission-block .mis-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mission-block .mis-icon svg { width: 24px; height: 24px; color: var(--green-primary); }
.mission-block h4 { color: var(--green-primary); font-size: 0.9rem; margin-bottom: 6px; font-weight: 700; }
.mission-block p { color: rgba(26,46,28,0.82); font-size: 0.88rem; line-height: 1.7; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: rgba(0,200,83,0.07); border: 1px solid rgba(0,200,83,0.2);
  border-radius: 50px; color: var(--green-light); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition); cursor: default;
}
.chip svg { width: 14px; height: 14px; color: var(--green-primary); }
.chip:hover { background: rgba(0,200,83,0.15); border-color: var(--green-primary); }

/* ======== VALUES SECTION ======== */
.values-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff, #f4f9f5 50%, #ffffff);
  position: relative; overflow: hidden;
}
.values-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,200,83,0.07), transparent);
  pointer-events: none;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.value-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 34px;
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: default;
}
.value-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-card), 0 0 32px rgba(0,200,83,0.18);
}
.value-card:hover::after { opacity: 1; }

.value-num {
  font-family: 'Rajdhani', sans-serif; font-size: 4rem; font-weight: 900;
  color: transparent; line-height: 1; margin-bottom: 4px; position: relative; z-index: 1;
  -webkit-text-stroke: 1.5px rgba(46,125,50,0.35);
  text-stroke: 1.5px rgba(46,125,50,0.35);
  opacity: 0.7;
}
.value-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; z-index: 1;
  transition: var(--transition);
}
.value-card:hover .value-icon-wrap { background: rgba(0,200,83,0.2); border-color: var(--green-primary); }
.value-icon-wrap svg { width: 26px; height: 26px; color: var(--green-primary); }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; position: relative; z-index: 1; }
.value-card p { color: rgba(26,46,28,0.84); font-size: 0.88rem; line-height: 1.75; position: relative; z-index: 1; }

/* ======== PRODUCTS SECTION ======== */
.products-section { padding: 110px 0; background: var(--dark-bg); }

.product-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 52px;
}
.filter-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: transparent; border: 1px solid var(--glass-border);
  border-radius: 50px; color: rgba(26,46,28,0.80);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif;
}
.filter-btn svg { width: 14px; height: 14px; }
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-green); color: #020d07;
  border-color: transparent; box-shadow: 0 4px 22px rgba(0,200,83,0.4);
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px; margin-bottom: 64px;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card.hidden { display: none; }
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,200,83,0.5);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,200,83,0.15);
}

.product-img-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f8fdf9, #edf5ee);
  height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,26,14,0.7));
  pointer-events: none;
}

.product-category-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
}
.tag-fungicide { background: rgba(0,200,83,0.2); color: var(--green-light); border: 1px solid rgba(0,200,83,0.35); }
.tag-insecticide { background: rgba(255,107,107,0.12); color: #ff8a80; border: 1px solid rgba(255,107,107,0.25); }
.tag-herbicide { background: rgba(255,193,7,0.12); color: #ffd54f; border: 1px solid rgba(255,193,7,0.25); }

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: var(--text-white);
  margin-bottom: 8px; letter-spacing: 0.5px;
}
.product-desc { color: var(--text-light); font-size: 0.84rem; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.product-formula-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.product-formula-tags span {
  padding: 3px 10px;
  background: rgba(0,200,83,0.07); border: 1px solid rgba(0,200,83,0.15);
  border-radius: 50px; color: rgba(26,46,28,0.72); font-size: 0.7rem;
}
.product-view-btn {
  width: 100%; padding: 11px;
  background: transparent; border: 1px solid var(--green-primary);
  border-radius: 50px; color: var(--green-primary);
  font-weight: 700; font-size: 0.84rem;
  cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-view-btn svg { width: 14px; height: 14px; }
.product-view-btn:hover {
  background: var(--gradient-green); color: #020d07; border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,200,83,0.4);
}

.product-areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card {
  text-align: center; padding: 34px 22px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition);
}
.area-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,200,83,0.15);
}
.area-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 18px;
  background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.area-card:hover .area-icon-wrap { background: rgba(0,200,83,0.18); border-color: var(--green-primary); }
.area-icon-wrap svg { width: 32px; height: 32px; color: var(--green-primary); }
.area-card h3 { color: var(--text-white); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.area-card p { color: rgba(26,46,28,0.84); font-size: 0.84rem; line-height: 1.6; }

/* ======== R&D SECTION ======== */
.rd-section { padding: 110px 0; position: relative; overflow: hidden; }
.rd-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a2010, #0d2e18);
}
.rd-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(46,125,50,0.18), transparent);
}
.rd-section .section-wrap { position: relative; z-index: 1; }
.rd-section .section-title { color: #ffffff; }
.rd-section .section-desc { color: rgba(255,255,255,0.78); }
.rd-section .section-eyebrow { color: #81c784; }

.rd-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.rd-steps::before {
  content: ''; position: absolute; top: 52px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--green-primary), rgba(0,200,83,0.15));
  z-index: 0;
}

.rd-step { text-align: center; position: relative; z-index: 1; }
.rd-step-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.rd-step:hover .rd-step-icon-wrap {
  background: rgba(46,125,50,0.3); border-color: #81c784;
  box-shadow: 0 6px 28px rgba(46,125,50,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.rd-step-icon-wrap svg { width: 32px; height: 32px; color: #81c784; }
.rd-step-num {
  position: absolute; top: -10px; right: calc(50% - 40px);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gradient-green); color: #ffffff;
  font-size: 0.65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(46,125,50,0.5);
}
.rd-step-content {
  padding: 22px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); transition: var(--transition);
}
.rd-step:hover .rd-step-content { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); }
.rd-step-content h3 { color: #ffffff; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.rd-step-content p { color: rgba(255,255,255,0.75); font-size: 0.83rem; line-height: 1.65; }

/* ======== PURPOSE / PARTNERSHIP ======== */
.purpose-section { padding: 110px 0; background: var(--dark-bg); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.purpose-block, .partner-block {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 48px 42px;
}
.purpose-block p, .partner-block p { color: rgba(26,46,28,0.84); line-height: 1.82; margin-bottom: 10px; }
.purpose-block .btn-primary { margin-top: 24px; }

.partner-list { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.partner-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(0,200,83,0.04); border: 1px solid rgba(0,200,83,0.14);
  border-radius: 10px; color: var(--text-light); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition); cursor: default;
}
.partner-item svg { width: 18px; height: 18px; color: var(--green-primary); flex-shrink: 0; }
.partner-item:hover { border-color: var(--green-primary); color: var(--green-light); background: rgba(0,200,83,0.09); transform: translateX(6px); }

/* ======== CONTACT SECTION ======== */
.contact-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f4f9f5, #ffffff);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,200,83,0.07), transparent);
  pointer-events: none;
}
.contact-section .section-wrap { position: relative; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; align-items: start; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--gradient-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 22px; transition: var(--transition);
}
.contact-card:hover { border-color: var(--green-primary); transform: translateX(5px); }
.contact-icon-box {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-box svg { width: 22px; height: 22px; color: var(--green-primary); }
.contact-card h4 { color: var(--green-accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 4px; }
.contact-card p { color: rgba(26,46,28,0.82); font-size: 0.88rem; line-height: 1.7; }
.contact-card a { color: var(--green-primary); text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: var(--transition); }
.contact-card a:hover { color: var(--green-light); }

.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--gradient-card); border: 1px solid var(--glass-border);
  border-radius: 12px; color: rgba(26,46,28,0.85); text-decoration: none;
  font-size: 0.84rem; font-weight: 600; transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--green-primary); color: var(--green-primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,200,83,0.2); }

/* CONTACT FORM */
.contact-form-box {
  background: var(--gradient-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 42px;
}
.form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--text-white); margin-bottom: 30px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { color: var(--text-light); font-size: 0.83rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  background: rgba(0,200,83,0.04); border: 1px solid rgba(0,200,83,0.18);
  border-radius: 12px; color: var(--text-white); font-size: 0.88rem;
  font-family: 'Outfit', sans-serif; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-primary); background: rgba(0,200,83,0.07);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.14);
}
.form-group select option { background: #ffffff; color: #1a2e1c; }
.form-group textarea { resize: vertical; min-height: 114px; }
.form-submit { width: 100%; font-size: 0.95rem; }
.form-success {
  background: rgba(0,200,83,0.09); border: 1px solid rgba(0,200,83,0.3);
  border-radius: 12px; padding: 16px; color: var(--green-light);
  text-align: center; font-weight: 600; font-size: 0.88rem;
  display: none; animation: fadeInUp 0.4s ease;
}

/* ======== FOOTER ======== */
.footer { background: #1b5e20; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 64px 28px;
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 60px;
}
.footer-brand-desc { color: rgba(255,255,255,0.82); font-size: 0.84rem; line-height: 1.75; max-width: 310px; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.18);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition);
}
.footer-social-btn svg { width: 18px; height: 18px; color: var(--green-accent); }
.footer-social-btn:hover { background: var(--gradient-green); border-color: transparent; }
.footer-social-btn:hover svg { color: #020d07; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: var(--green-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.84rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-primary); padding-left: 4px; }
.footer-contact-list li { color: rgba(255,255,255,0.85); font-size: 0.84rem; line-height: 1.75; margin-bottom: 10px; }
.footer-contact-list a { color: rgba(255,255,255,0.85); text-decoration: none; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--green-primary); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  max-width: 1320px; margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.79rem; }

/* ======== MODAL ======== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  position: relative; background: #ffffff;
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 0; max-width: 680px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow-card);
  transform: scale(0.9) translateY(24px); transition: var(--transition);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
  color: var(--text-white); font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.modal-close:hover { background: rgba(255,70,70,0.2); border-color: rgba(255,70,70,0.3); }
.modal-img-wrap {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, #f8fdf9, #edf5ee);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
.modal-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 24px; }
.modal-body { padding: 30px 34px 34px; }
.modal-cat-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px;
}
.modal-product-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--text-white); margin-bottom: 14px;
}
.modal-product-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.modal-spec {
  background: rgba(0,200,83,0.05); border: 1px solid rgba(0,200,83,0.14);
  border-radius: 12px; padding: 16px;
}
.modal-spec label { display: block; color: var(--green-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 5px; }
.modal-spec span { color: var(--text-white); font-size: 0.88rem; font-weight: 600; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ======== FLOATING BUTTONS ======== */
.float-bar {
  position: fixed; bottom: 100px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateX(16px);
  transition: var(--transition);
}
.float-bar.show { opacity: 1; visibility: visible; transform: translateX(0); }

.float-btn-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.84rem;
  white-space: nowrap; box-shadow: var(--shadow-card);
  transition: var(--transition);
  animation: floatBounce 2.2s ease-in-out infinite;
}
.float-btn-item:nth-child(2) { animation-delay: 0.6s; }
.float-btn-item:hover { animation-play-state: paused; transform: translateX(-4px) scale(1.06); }

@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.float-call { background: var(--gradient-green); color: #ffffff; }
.float-call:hover { box-shadow: 0 10px 36px rgba(0,200,83,0.6); }
.float-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; }
.float-wa:hover { box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.float-btn-item svg { width: 18px; height: 18px; }

/* ======== BACK TO TOP ======== */
.back-top {
  position: fixed; bottom: 32px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-green); border: none;
  color: #020d07; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(0,200,83,0.45);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: var(--transition);
}
.back-top svg { width: 22px; height: 22px; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,200,83,0.65); }

/* ======== FOUNDER AVATAR PHOTO (floating in About card) ======== */
.founder-avatar-photo {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--green-primary);
  box-shadow: 0 0 12px rgba(0,200,83,0.4);
}
.founder-avatar-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FOUNDERS SECTION — ELITE REDESIGN
   ============================================================ */
.founders-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f4f9f5 0%, #ffffff 50%, #f4f9f5 100%);
}

/* ---- Particle canvas ---- */
.founders-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ---- Ambient orbs ---- */
.founders-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); z-index: 0;
}
.founders-orb.orb-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
  top: -100px; left: -200px;
  /* orb animation removed */
}
.founders-orb.orb-b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,233,182,0.1) 0%, transparent 70%);
  bottom: 0; right: -150px;
  /* orb animation removed */
}
.founders-orb.orb-c {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  /* orb animation removed */
}
@keyframes orbFloat1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(25px) scale(0.95); }
}

.founders-section .section-wrap { position: relative; z-index: 1; }

/* ---- Title highlight ---- */
.founders-title .title-highlight {
  background: var(--gradient-green);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Founder Hero Card ---- */
.founder-hero-card {
  margin-bottom: 72px;
  background: #ffffff;
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 28px;
  padding: 52px 56px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.founder-hero-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 28px;
  background: radial-gradient(ellipse 50% 40% at 10% 0%, rgba(46,125,50,0.04), transparent);
  pointer-events: none;
}
.founder-hero-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.fhc-reverse::before {
  background: radial-gradient(ellipse 50% 40% at 90% 0%, rgba(21,101,192,0.04), transparent);
}

.fhc-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center;
}
.fhc-reverse .fhc-layout { grid-template-columns: 1fr 380px; }
.fhc-reverse .fhc-info  { order: 1; }
.fhc-reverse .fhc-visual { order: 2; }

/* ===== PHOTO STAGE ===== */
.fhc-visual { display: flex; justify-content: center; }

.fhc-photo-stage {
  position: relative; width: 320px; height: 400px;
  transform-style: preserve-3d;
  cursor: default;
}
.fhc-photo-stage:hover .fhc-photo-frame {
  transform: perspective(700px) rotateY(-6deg) rotateX(4deg) translateY(-10px) scale(1.02);
  box-shadow: 28px 48px 90px rgba(0,0,0,0.75), 0 0 80px rgba(0,200,83,0.25);
}
.fhc-stage-teal:hover .fhc-photo-frame {
  box-shadow: 28px 48px 90px rgba(0,0,0,0.75), 0 0 80px rgba(29,233,182,0.25);
}

/* Rings */
.fhc-photo-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.fhc-photo-ring.rg1 {
  inset: -18px;
  border: 1.5px solid rgba(0,200,83,0.22);
  animation: fhcRingRotate 10s linear infinite;
}
.fhc-photo-ring.rg2 {
  inset: -36px;
  border: 1px dashed rgba(0,200,83,0.13);
  animation: fhcRingRotate 16s linear infinite reverse;
}
.fhc-photo-ring.rg3 {
  inset: -56px;
  border: 1px solid rgba(29,233,182,0.07);
  animation: fhcRingRotate 24s linear infinite;
}
@keyframes fhcRingRotate { to { transform: rotate(360deg); } }

/* Holographic overlay */
.fhc-holo-overlay {
  position: absolute; inset: 0; z-index: 3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
    rgba(0,255,136,0.04) 0%, transparent 40%,
    rgba(0,200,83,0.06) 60%, transparent 100%);
  pointer-events: none;
  animation: holoShift 5s ease-in-out infinite alternate;
}
.holo-teal {
  background: linear-gradient(135deg,
    rgba(29,233,182,0.05) 0%, transparent 40%,
    rgba(0,200,83,0.04) 60%, transparent 100%);
}
@keyframes holoShift {
  0%   { opacity: 0.6; background-position: 0% 50%; }
  100% { opacity: 1;   background-position: 100% 50%; }
}

/* Photo frame */
.fhc-photo-frame {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f7f2;
  border: 1px solid rgba(46,125,50,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.45s ease;
  z-index: 2;
}

.fhc-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.55s ease;
  filter: brightness(0.95) contrast(1.06);
}
.fhc-photo-stage:hover .fhc-photo-img { transform: scale(1.05); }

/* Shimmer */
.fhc-photo-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0,200,83,0.05) 0%, transparent 35%,
    transparent 65%, rgba(0,200,83,0.1) 100%);
}
.shimmer-teal {
  background: linear-gradient(180deg,
    rgba(29,233,182,0.06) 0%, transparent 35%,
    transparent 65%, rgba(29,233,182,0.1) 100%);
}

/* Frame outer glow (replaces scan beam) */
.fhc-frame-glow {
  position: absolute; inset: -8px; border-radius: 24px; z-index: 1;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(0,200,83,0);
  pointer-events: none;
  transition: box-shadow 0.6s ease;
}
.fhc-photo-stage:hover .fhc-frame-glow {
  box-shadow: 0 0 40px 4px rgba(0,200,83,0.28);
}
.glow-teal { }
.fhc-photo-stage:hover .glow-teal {
  box-shadow: 0 0 40px 4px rgba(29,233,182,0.25);
}

/* One-time reveal veil — slides down when section enters viewport */
.fhc-reveal-veil {
  position: absolute; inset: 0; z-index: 10;
  background: #f4f9f5;
  transform-origin: top;
  transition: transform 0.9s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
}
/* When section is entered, veil slides off */
.founders-section.fhc-entered .fhc-reveal-veil {
  transform: scaleY(0);
}

/* Corner brackets */
.fhc-corner {
  position: absolute; width: 24px; height: 24px; z-index: 5;
  pointer-events: none;
}
.fhc-corner::before, .fhc-corner::after {
  content: ''; position: absolute;
  background: var(--green-primary);
  box-shadow: none;
  border-radius: 1px;
}
.fhc-corner::before { width: 100%; height: 2.5px; top: 0; left: 0; }
.fhc-corner::after  { width: 2.5px; height: 100%; top: 0; left: 0; }
.fhc-corner.fc-tl { top: -1px; left: -1px; }
.fhc-corner.fc-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.fhc-corner.fc-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.fhc-corner.fc-br { bottom: -1px; right: -1px; transform: scale(-1); }

/* ===== ONE-TIME ENTRY ANIMATIONS (fire once when section scrolls in) ===== */
/* Header slides down */
.fhc-entry-header {
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s;
}
.founders-section.fhc-entered .fhc-entry-header {
  opacity: 1; transform: translateY(0);
}
/* Card 1 slides from left */
.fhc-entry-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.85s ease 0.3s, transform 0.85s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.founders-section.fhc-entered .fhc-entry-left {
  opacity: 1; transform: translateX(0);
}
/* Card 2 slides from right */
.fhc-entry-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.85s ease 0.55s, transform 0.85s cubic-bezier(0.4,0,0.2,1) 0.55s;
}
.founders-section.fhc-entered .fhc-entry-right {
  opacity: 1; transform: translateX(0);
}
/* Divider fades + scales in */
.fhc-entry-divider {
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.6s ease 0.45s, transform 0.6s cubic-bezier(0.4,0,0.2,1) 0.45s;
}
.founders-section.fhc-entered .fhc-entry-divider {
  opacity: 1; transform: scaleX(1);
}
/* Corner brackets draw-in on entry */
.fhc-corner::before {
  width: 100%; height: 2.5px; top: 0; left: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease 0.9s;
}
.fhc-corner::after {
  width: 2.5px; height: 100%; top: 0; left: 0;
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s ease 1s;
}
.founders-section.fhc-entered .fhc-corner::before { transform: scaleX(1); }
.founders-section.fhc-entered .fhc-corner::after  { transform: scaleY(1); }

/* ID chip */
.fhc-id-chip {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  display: flex; align-items: center; gap: 7px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(46,125,50,0.25);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 2px;
  color: var(--green-primary);
  white-space: nowrap;
}
.fhc-id-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 8px var(--green-primary);
  animation: none;
}
.chip-teal { border-color: rgba(29,233,182,0.35); color: var(--green-accent); }
.dot-teal  { background: var(--green-accent); box-shadow: 0 0 8px var(--green-accent); }
@keyframes chipPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }

/* Floating stat pills */
.fhc-stat-pill {
  position: absolute; z-index: 6;
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: rgba(2,13,7,0.9);
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  font-size: 0.72rem; font-weight: 700; color: var(--green-light);
  white-space: nowrap;
  animation: pillFloat 4s ease-in-out infinite;
}
.fhc-stat-pill svg { width: 13px; height: 13px; color: var(--green-primary); }
.pill-top  { top: 20px;  left: -28px; animation-delay: 0s; }
.pill-bottom { bottom: 56px; right: -28px; animation-delay: 2s; }
.pill-teal { border-color: rgba(29,233,182,0.3); color: var(--green-accent); }
.pill-teal svg { color: var(--green-accent); }
@keyframes pillFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ===== INFO COLUMN ===== */
.fhc-info { display: flex; flex-direction: column; gap: 0; }

.fhc-role-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.25);
  color: var(--green-accent); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px;
  width: fit-content;
}
.role-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-primary); box-shadow: 0 0 6px var(--green-primary);
  animation: chipPulse 2s ease-in-out infinite;
}

.fhc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 900;
  color: var(--text-white); line-height: 1.1; margin-bottom: 14px;
}

.fhc-name-rule {
  width: 80px; height: 3px;
  background: var(--gradient-green); border-radius: 2px;
  margin-bottom: 22px;
  box-shadow: 0 0 16px rgba(0,200,83,0.55);
  animation: ruleGlow 3s ease-in-out infinite alternate;
}
@keyframes ruleGlow {
  0%   { box-shadow: 0 0 10px rgba(0,200,83,0.4); }
  100% { box-shadow: 0 0 24px rgba(0,200,83,0.8); }
}

/* Quote */
.fhc-quote {
  position: relative;
  padding: 18px 22px 18px 52px;
  margin-bottom: 22px;
  background: rgba(0,200,83,0.05);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 12px 12px 0;
  color: var(--green-light); font-style: italic; font-size: 0.92rem; line-height: 1.75;
  box-shadow: inset 0 0 30px rgba(0,200,83,0.03);
}
.quote-icon {
  position: absolute; left: 14px; top: 14px;
  width: 20px; height: 20px;
  color: rgba(0,200,83,0.4);
}

/* Bios */
.fhc-bios { margin-bottom: 22px; }
.fhc-bio {
  color: var(--text-light); line-height: 1.88; font-size: 0.91rem;
  margin-bottom: 12px;
}
.fhc-bio:last-child { margin-bottom: 0; }

/* Skill bars */
.fhc-skills { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.fhc-skill-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 12px;
}
.skill-label { color: var(--text-light); font-size: 0.81rem; font-weight: 600; }
.skill-track {
  width: 140px; height: 5px;
  background: rgba(0,200,83,0.1); border-radius: 3px;
  overflow: hidden; position: relative;
}
.skill-fill {
  height: 100%; width: 0%; border-radius: 3px;
  background: var(--gradient-green);
  box-shadow: 0 0 8px rgba(0,200,83,0.5);
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skill-pct { color: var(--green-accent); font-size: 0.75rem; font-weight: 800; min-width: 36px; text-align: right; }

/* Badges */
.fhc-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.fhc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: rgba(0,200,83,0.06); border: 1px solid rgba(0,200,83,0.18);
  border-radius: 50px; color: var(--green-light); font-size: 0.8rem; font-weight: 600;
  transition: var(--transition); cursor: default;
}
.fhc-badge svg { color: var(--green-primary); flex-shrink: 0; }
.fhc-badge:hover {
  background: rgba(0,200,83,0.14); border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,83,0.18);
}

/* ===== DIVIDER LINE ===== */
.founders-divider-line {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 0 72px;
}
.fdl-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.3), transparent);
}
.fdl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-primary); flex-shrink: 0;
  box-shadow: 0 0 8px var(--green-primary);
}
.fdl-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: iconSpin 20s linear infinite;
}
.fdl-icon svg { width: 20px; height: 20px; color: var(--green-primary); }
@keyframes iconSpin { to { transform: rotate(360deg); } }

/* ---- Old founder card kept for backwards compat (hidden) ---- */
.founders-grid { display: none; }
.founder-card  { display: none; }

/* ======== REVEAL ANIMATIONS ======== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* ======== KEYFRAMES ======== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; padding: 120px 40px 80px; gap: 40px; text-align: center; }
  .hero-content { text-align: center; }
  .hero-title { align-items: center; }
  .hero-tagline { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-farmer-wrap { max-width: 360px; margin: 0 auto; }
  .farmer-img { height: 380px; }
  .farmer-badge-float { font-size: 0.76rem; padding: 8px 14px; }
  .company-grid { grid-template-columns: 1fr; gap: 40px; }
  .company-visual { max-width: 480px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .product-areas { grid-template-columns: repeat(2,1fr); }
  .rd-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .rd-steps::before { display: none; }
  .purpose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(3,1fr); }
  .founder-card, .founder-card.reverse { grid-template-columns: 1fr; gap: 40px; }
  .founder-card.reverse .founder-photo-wrap { order: 0; }
  .founder-card.reverse .founder-info { order: 0; }
  .founder-photo-wrap { width: 280px; height: 340px; }
  /* New hero cards */
  .founder-hero-card { padding: 36px 32px; }
  .fhc-layout { grid-template-columns: 1fr; gap: 40px; }
  .fhc-reverse .fhc-layout { grid-template-columns: 1fr; }
  .fhc-reverse .fhc-info  { order: 2; }
  .fhc-reverse .fhc-visual { order: 1; }
  .fhc-photo-stage { width: 280px; height: 360px; }
  .fhc-visual { justify-content: center; padding: 40px 0 20px; }
  .pill-top  { left: -14px; }
  .pill-bottom { right: -14px; }
}
@media (max-width: 768px) {
  .hero-farmer-wrap { display: none; }
  .hero-layout { padding: 100px 28px 70px; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #ffffff; border-left: 1px solid rgba(46,125,50,0.12);
    flex-direction: column; justify-content: center; padding: 80px 32px; gap: 8px;
    transition: right 0.3s ease; z-index: 5;
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  }
  .nav-menu .nav-link { color: rgba(26,46,28,0.88); }
  .nav-menu.open { right: 0; }
  .nav-link { padding: 12px 0; font-size: 1.1rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-areas { grid-template-columns: 1fr; }
  .rd-steps { grid-template-columns: 1fr; }
  .purpose-block, .partner-block { padding: 28px 22px; }
  .contact-form-box { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-box { max-height: 90vh; }
  .modal-specs { grid-template-columns: 1fr; }
  .modal-body { padding: 22px 20px 26px; }
  .founder-photo-wrap { width: 260px; height: 320px; }
  .founders-grid { gap: 50px; }
  /* New hero cards */
  .founder-hero-card { padding: 28px 22px; border-radius: 20px; }
  .fhc-photo-stage { width: 240px; height: 310px; }
  .fhc-stat-pill { display: none; }
  .skill-track { width: 100px; }
  .fhc-bios .fhc-bio { font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 240px; }
  .float-btn-item .float-label { display: none; }
  .float-btn-item { padding: 14px; border-radius: 50%; }
  .founder-photo-wrap { width: 220px; height: 280px; }
  .fhc-photo-stage { width: 210px; height: 280px; }
  .fhc-name { font-size: 1.7rem; }
  .fhc-quote { padding: 14px 16px 14px 44px; font-size: 0.86rem; }
  .fhc-skill-row { grid-template-columns: 1fr; gap: 4px; }
  .skill-track { width: 100%; }
  .skill-pct { text-align: left; }
}

/* ===== LIGHT THEME — FINAL OVERRIDES ===== */
/* Force clean white founder cards */
.founder-hero-card,
.founder-hero-card .fhc-layout {
  background: transparent !important;
}
.fhc-entry-left,
.fhc-entry-right {
  background: #ffffff !important;
  border: 1px solid rgba(46,125,50,0.12) !important;
}
/* Ensure all text in founder cards is dark */
.fhc-name { color: #1a2e1c !important; }
.fhc-bio { color: rgba(26,46,28,0.88) !important; }
.fhc-role-tag { color: var(--green-primary) !important; }
.role-dot { background: var(--green-primary) !important; }
.fhc-quote { color: var(--green-primary) !important; border-left-color: var(--green-primary) !important; }

/* Section title dark for light bg */
.section-title:not(.hero-section .section-title, .rd-section .section-title) { color: #1a2e1c !important; }
.section-desc:not(.hero-section .section-desc, .rd-section .section-desc) { color: rgba(26,46,28,0.85) !important; font-size: 1rem; }

/* Founders section light BG absolutely */
.founders-section {
  background: #f4f9f5 !important;
}
.founders-divider-line .fdl-line {
  background: rgba(46,125,50,0.18) !important;
}
.fdl-dot { background: var(--green-primary) !important; }

/* Products section */
.products-section { background: #f4f9f5; }
.product-card { background: #ffffff !important; border: 1px solid rgba(46,125,50,0.1) !important; }
.product-name { color: #1a2e1c !important; }
.product-category { color: var(--green-primary) !important; }
.product-desc { color: rgba(26,46,28,0.82) !important; }

/* Values cards */
.value-card { background: #ffffff !important; }
.value-title { color: #1a2e1c !important; }
.value-desc { color: rgba(26,46,28,0.82) !important; }

/* RD cards */
.rd-step { background: #ffffff !important; }
.rd-step h3, .rd-step-title { color: #1a2e1c !important; }
.rd-step p, .rd-step-desc { color: rgba(26,46,28,0.82) !important; }

/* Contact form */
.contact-form-box { background: #ffffff !important; box-shadow: 0 4px 28px rgba(0,0,0,0.07) !important; }
.form-group label { color: rgba(26,46,28,0.85) !important; }
.form-group input, .form-group select, .form-group textarea {
  color: #1a2e1c !important;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(26,46,28,0.4) !important; }

/* Partnership cards */
.purpose-block, .partner-block { background: #ffffff !important; }
.purpose-title, .partner-name { color: #1a2e1c !important; }
.purpose-desc, .partner-desc { color: rgba(26,46,28,0.82) !important; }

/* Company card */
.company-card-3d { background: #ffffff !important; }
.feat-icon-cell svg { stroke: var(--green-primary) !important; }
.feat-icon-label { color: rgba(26,46,28,0.85) !important; }
/* Footer text visibility boost */
.footer-col-heading, .footer-col h4,
.footer-links h4, .footer-links .footer-heading { color: rgba(255,255,255,0.95) !important; }
.footer-col ul li a { color: rgba(255,255,255,0.82) !important; }
.footer-contact-list li,
.footer-contact-list a { color: rgba(255,255,255,0.82) !important; }
.footer-copy, .footer-bottom p { color: rgba(255,255,255,0.60) !important; }