/* Early Green — Main Stylesheet
   Generated from header.php inline styles
   Fonts and Bootstrap loaded via CDN in header.php
*/


/* ============================================================
   DESIGN SYSTEM — Early Green
   ============================================================ */
:root{
  --eg-white:   #fffefc !important;
  --eg-green:   #0e8745;
  --eg-forest:  #235934;
  --eg-ink:     #0f2318;
  --eg-body:    #51635a;
  --eg-mint:    #eff7f2;
  --eg-line:    #dcece3;
  --eg-white:   #ffffff;
  --eg-gold:    #d9a326;
  --grad:       linear-gradient(120deg,#0e8745 0%,#235934 100%);
  --radius-leaf: 26px 4px 26px 4px;        /* signature leaf-cut */
  --radius-card: 30px 6px 30px 6px;        /* unified card / panel radius */
  --ink-on-pastel: #1e3d29;                /* single ink used on all pastel surfaces */
  /* pastel palette (from brand reference) */
  --p-green:  #b4dc87;
  --p-peach:  #edca7c;
  --p-lav:    #d2a7ee;
  --p-pink:   #f19fb2;
  --p-teal:   #86d2e2;
  --p-orange: #efb271;
  --p-bg:     #e5f2d4;
  --shadow-sm:  0 6px 20px rgba(15,35,24,.07);
  --shadow-lg:  0 24px 60px rgba(15,35,24,.14);
  --ease:       cubic-bezier(.22,.72,.24,1);
}

*{ -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Rubik',sans-serif;
  color:var(--eg-body);
  background:var(--eg-white);
  font-size:1rem; line-height:1.75;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{ font-family:'Poppins',sans-serif; color:var(--eg-ink); font-weight:700; line-height:1.25; }
a{ text-decoration:none; transition:.3s var(--ease); }
img{ max-width:100%; }
::selection{ background:var(--eg-green); color:#fff; }

.container{ max-width:1240px; }

/* ============================================================
   SPARK BRAND IDENTITY SYSTEM
   The 4-pointed star from the Early Green logo — expressed
   consistently at every scale across the page.
   ============================================================ */

/* Core spark SVG — reused as CSS mask or inline */
:root{
  --spark-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 C12 2 13.4 7.6 18 12 C13.4 16.4 12 22 12 22 C12 22 10.6 16.4 6 12 C10.6 7.6 12 2 12 2Z' fill='%230e8745'/%3E%3C/svg%3E");
  --spark-svg-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 C12 2 13.4 7.6 18 12 C13.4 16.4 12 22 12 22 C12 22 10.6 16.4 6 12 C10.6 7.6 12 2 12 2Z' fill='%23ffffff'/%3E%3C/svg%3E");
  --spark-svg-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 C12 2 13.4 7.6 18 12 C13.4 16.4 12 22 12 22 C12 22 10.6 16.4 6 12 C10.6 7.6 12 2 12 2Z' fill='%23d9a326'/%3E%3C/svg%3E");
}

/* 1. Eyebrow lines — spark dot at center on centered eyebrows */
.eg-eyebrow::before{
  content:""; width:28px; height:2px; background:var(--eg-green); border-radius:2px; flex-shrink:0;
}
.eg-eyebrow.center::before{ width:28px; }
.eg-eyebrow.center::after{
  content:""; width:28px; height:2px; background:var(--eg-green); border-radius:2px; flex-shrink:0;
}
/* spark dot between lines — only for centered eyebrows */
.eg-eyebrow.center{
  gap:0;
}
.eg-eyebrow.center::before{ margin-right:.5rem; }
.eg-eyebrow.center::after{  margin-left:.5rem;  }
.eg-eyebrow.center .spark-dot{
  display:inline-block; width:10px; height:10px;
  background:var(--spark-svg) center/contain no-repeat;
  flex-shrink:0;
}

/* 2. Decorative ambient sparks — positioned absolutely in sections */
.spark-deco{
  position:absolute; pointer-events:none; z-index:0;
  background:var(--spark-svg) center/contain no-repeat;
  opacity:.12;
  animation:sparkPulse 6s ease-in-out infinite alternate;
}
.spark-deco.white{ background:var(--spark-svg-white); opacity:.18; }
.spark-deco.gold{  background:var(--spark-svg-gold);  opacity:.25; }
@keyframes sparkPulse{
  from{ transform:scale(1) rotate(0deg); opacity:.10; }
  to{   transform:scale(1.18) rotate(12deg); opacity:.20; }
}

/* 3. Stat card watermark spark */
.stat-card{ position:relative; overflow:hidden; }
.stat-card::after{
  content:""; position:absolute; right:-18px; bottom:-22px;
  width:100px; height:100px;
  background:var(--spark-svg) center/contain no-repeat;
  opacity:.12; pointer-events:none;
}

/* 4. Hero carousel indicators — spark shape */
.eg-hero .carousel-indicators [data-bs-target]{
  width:10px !important; height:10px !important; border-radius:0 !important;
  background:rgba(255,255,255,.45) !important; border:0 !important;
  clip-path:polygon(50% 0%,58% 42%,100% 50%,58% 58%,50% 100%,42% 58%,0% 50%,42% 42%) !important;
  transition:.35s var(--ease) !important;
}
.eg-hero .carousel-indicators .active{
  background:#7ee2a8 !important; width:14px !important; height:14px !important;
}

/* 5. Section heading accent — spark before .grad-text */
.spark-before{
  display:inline-flex; align-items:center; gap:.5rem;
}
.spark-before::before{
  content:""; display:none;
}

/* 6. Divider spark — used between section pairs */
.spark-divider{
  display:flex; align-items:center; justify-content:center; gap:1rem;
  margin:0 auto; padding:2.4rem 0 0;
}
.spark-divider::before, .spark-divider::after{
  content:""; flex:1; max-width:80px; height:1px; background:var(--eg-line);
}
.spark-divider .spark-icon{
  width:22px; height:22px; display:block; flex-shrink:0;
  background:var(--spark-svg) center/contain no-repeat;
}

/* 7. Why-card spark shimmer on icon */
.why-card .ic::after{
  content:""; position:absolute; top:-4px; right:-4px;
  width:16px; height:16px;
  background:var(--spark-svg) center/contain no-repeat;
  opacity:0; transition:.4s var(--ease);
}
.why-card .ic{ position:relative; }
.why-card:hover .ic::after{ opacity:.9; }

/* 8. Footer spark beside brand */
.footer-spark{
  display:inline-block; width:14px; height:14px; margin:0 .4rem;
  background:var(--spark-svg-white) center/contain no-repeat;
  opacity:.55; vertical-align:middle;
}

/* 9. Sector strip item spark separator */
.sector-item .spark-sep{
  display:inline-block; width:8px; height:8px; margin-left:.5rem;
  background:var(--spark-svg) center/contain no-repeat; opacity:.5;
}

/* ---------- utilities ---------- */
.eg-eyebrow{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:'Poppins',sans-serif; font-weight:600;
  font-size:.78rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--eg-green);
}
.section{ padding:104px 0; }
.section-tint{ background:var(--p-bg); }
.display-title{ font-size:clamp(1.9rem,3.4vw,2.7rem); font-weight:700; letter-spacing:-.01em; }
.lead-copy{ font-size:1.06rem; max-width:640px; }

/* ---------- buttons ---------- */
.btn-eg, .btn-eg-outline, .btn-eg-white{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:.92rem;
  padding:.9rem 1.9rem; border-radius:var(--radius-leaf);
  display:inline-flex; align-items:center; gap:.55rem;
  position:relative; overflow:hidden; border:2px solid transparent;
  transition:.4s var(--ease);
}
.btn-eg{ background:var(--grad); color:#fff; }
.btn-eg::after{
  content:""; position:absolute; inset:0; background:#fff; opacity:0;
  transition:.4s var(--ease);
}
.btn-eg:hover{ color:#fff; transform:translateY(-3px); box-shadow:0 14px 30px rgba(14,135,69,.35); }
.btn-eg:hover::after{ opacity:.12; }
.btn-eg-outline{ border-color:var(--eg-green); color:var(--eg-green); background:transparent; }
.btn-eg-outline:hover{ background:var(--eg-green); color:#fff; transform:translateY(-3px); box-shadow:0 14px 30px rgba(14,135,69,.25); }
.btn-eg-white{ background:#fff; color:var(--eg-forest); }
.btn-eg-white:hover{ background:var(--eg-gold); color:#fff; transform:translateY(-3px); }
.btn-eg i, .btn-eg-outline i, .btn-eg-white i{ transition:transform .35s var(--ease); }
.btn-eg:hover i, .btn-eg-outline:hover i, .btn-eg-white:hover i{ transform:translateX(5px); }

/* ---------- topbar ---------- */
.eg-topbar{
  background:var(--eg-forest); color:#dff0e5; font-size:.84rem;
  padding:.5rem 0;
}
.eg-topbar a{ color:#dff0e5; }
.eg-topbar a:hover{ color:#fff; }
.eg-topbar .divider{ opacity:.3; margin:0 .9rem; }
.eg-topbar .badge-cert{
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  font-weight:500; font-size:.72rem; letter-spacing:.08em;
  padding:.25rem .7rem; border-radius:30px;
}
.eg-topbar .social a{
  width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%; background:rgba(255,255,255,.1); margin-left:.35rem; font-size:.75rem;
}
.eg-topbar .social a:hover{ background:var(--eg-green); transform:translateY(-2px); }

/* ---------- navbar ---------- */
.eg-nav{
  background:#fff; padding:.9rem 0; position:sticky; top:0; z-index:1030;
  transition:.35s var(--ease); border-bottom:1px solid transparent;
}
.eg-nav.scrolled{ box-shadow:0 10px 40px rgba(15,35,24,.1); padding:.55rem 0; border-color:var(--eg-line); }
.eg-nav .navbar-brand img{ height:56px; transition:.35s var(--ease); }
.eg-nav.scrolled .navbar-brand img{ height:46px; }
.eg-nav .nav-link{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:.92rem;
  color:var(--eg-ink); padding:.55rem 1.05rem !important; position:relative;
}
.eg-nav .nav-link::after{
  content:""; position:absolute; left:1.05rem; right:100%; bottom:.2rem;
  height:2px; background:var(--eg-green); transition:right .35s var(--ease);
}
.eg-nav .nav-link:hover, .eg-nav .nav-link.active{ color:var(--eg-green); }
.eg-nav .nav-link:hover::after, .eg-nav .nav-link.active::after{ right:1.05rem; }
.eg-nav .dropdown-menu{
  border:0; border-radius:18px 4px 18px 4px; box-shadow:var(--shadow-lg);
  padding:.6rem; margin-top:.75rem; min-width:250px;
}
.eg-nav .dropdown-item{
  font-weight:500; font-size:.9rem; border-radius:12px 3px 12px 3px;
  padding:.55rem .9rem; color:var(--eg-ink); display:flex; align-items:center; gap:.6rem;
}
.eg-nav .dropdown-item i{ color:var(--eg-green); font-size:.8rem; }
.eg-nav .dropdown-item:hover{ background:var(--eg-mint); color:var(--eg-green); padding-left:1.15rem; }

/* open submenu on hover (desktop) */
@media (min-width:992px){
  .eg-nav .dropdown .dropdown-menu{
    display:block; opacity:0; visibility:hidden; transform:translateY(14px);
    transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    margin-top:0; padding-top:.6rem;
  }
  .eg-nav .dropdown::after{                /* invisible hover bridge */
    content:""; position:absolute; left:0; right:0; top:100%; height:14px;
  }
  .eg-nav .dropdown:hover > .dropdown-menu,
  .eg-nav .dropdown:focus-within > .dropdown-menu{
    opacity:1; visibility:visible; transform:translateY(0);
  }
  .eg-nav .dropdown-toggle::after{ transition:transform .3s var(--ease); }
  .eg-nav .dropdown:hover > .dropdown-toggle::after{ transform:rotate(180deg); }
}

/* ---------- hero slider ---------- */
.eg-hero{ position:relative; }
.eg-hero .carousel-item{
  min-height:0; aspect-ratio:1920/915; max-height:95vh;
  display:flex; align-items:center; position:relative;
  overflow:hidden;
}
.eg-hero .slide-bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  z-index:0;
}
/* Make the banner anchor cover the full slide area */
.eg-hero .carousel-item > a{
  position:absolute; inset:0; z-index:1; cursor:pointer; display:block;
}
.eg-hero .carousel-item::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(10,32,19,.92) 0%, rgba(14,80,42,.78) 45%, rgba(14,135,69,.18) 100%);
  display:none;
}
.eg-hero .carousel-item::after{ display:none; }
.eg-hero .hero-content{ position:relative; z-index:2; padding:130px 0 150px; max-width:660px; display:none; }
.eg-hero .hero-tag{
  display:inline-flex; align-items:center; gap:.55rem;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22);
  color:#cfeeda; backdrop-filter:blur(6px);
  font-family:'Poppins',sans-serif; font-weight:500; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase;
  padding:.45rem 1.1rem; border-radius:40px; margin-bottom:1.4rem;
}
.eg-hero .hero-tag i{ color:var(--eg-gold); }
.eg-hero h1{
  color:#fff; font-size:clamp(2.2rem,4.6vw,3.6rem); font-weight:800; letter-spacing:-.015em;
  margin-bottom:1.25rem;
}
.eg-hero h1 .accent{ color:#7ee2a8; position:relative; white-space:nowrap; }
.eg-hero h1 .accent svg{ position:absolute; left:0; bottom:-10px; width:100%; height:14px; }
.eg-hero p{ color:#d9eadf; font-size:1.08rem; max-width:540px; margin-bottom:2.2rem; }

/* staged entrance per active slide */
.eg-hero .hero-content > *{ opacity:0; transform:translateY(26px); }
.eg-hero .carousel-item.active .hero-content > *{
  animation:heroUp .8s var(--ease) forwards;
}
.eg-hero .carousel-item.active .hero-content > *:nth-child(1){ animation-delay:.1s }
.eg-hero .carousel-item.active .hero-content > *:nth-child(2){ animation-delay:.22s }
.eg-hero .carousel-item.active .hero-content > *:nth-child(3){ animation-delay:.34s }
.eg-hero .carousel-item.active .hero-content > *:nth-child(4){ animation-delay:.46s }
@keyframes heroUp{ to{ opacity:1; transform:none; } }

.eg-hero .carousel-indicators{ margin-bottom:2.2rem; z-index:5; }
.eg-hero .carousel-indicators [data-bs-target]{
  width:34px; height:4px; border-radius:4px; background:rgba(255,255,255,.4); border:0;
  transition:.35s var(--ease);
}
.eg-hero .carousel-indicators .active{ background:#7ee2a8; width:52px; }

.eg-hero .carousel-control-prev, .eg-hero .carousel-control-next{
  width:auto; z-index:5; opacity:1;
}
.eg-hero .ctrl{
  width:52px; height:52px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.05rem;
  backdrop-filter:blur(6px); transition:.35s var(--ease); margin:0 1.4rem;
}
.eg-hero .ctrl:hover{ background:var(--eg-green); border-color:var(--eg-green); transform:scale(1.08); }

/* floating trust chip — anchored on about image */
.about-media .hero-chip{
  position:absolute; right:calc(0.0rem + 10px); bottom:26px; z-index:4;
  background:rgba(255,255,255,.97); border-radius:var(--radius-leaf);
  padding:1.1rem 1.5rem; display:flex; gap:.95rem; align-items:center;
  box-shadow:var(--shadow-lg); animation:floatY 5s ease-in-out infinite;
}
.hero-chip .ic{
  width:52px; height:52px; border-radius:16px 3px 16px 3px; background:var(--eg-mint);
  display:flex; align-items:center; justify-content:center; color:var(--eg-green); font-size:1.4rem;
}
.hero-chip strong{ font-family:'Poppins',sans-serif; color:var(--eg-ink); display:block; font-size:1.05rem; line-height:1.2; }
.hero-chip span{ font-size:.8rem; }
@keyframes floatY{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-14px) } }

/* hero bottom wave */
.hero-wave{ position:absolute; left:0; right:0; bottom:-1px; z-index:3; line-height:0; display:none; }
.hero-wave svg{ width:100%; height:70px; display:block; }

/* ---------- hero responsiveness ---------- */
@media (max-width:991px){
  .eg-hero .ctrl{ width:42px; height:42px; font-size:.9rem; margin:0 .7rem; }
  .eg-hero .carousel-indicators{ margin-bottom:1rem; }
  .eg-hero .carousel-indicators [data-bs-target]{ width:24px; height:3px; }
  .eg-hero .carousel-indicators .active{ width:38px; }
}
@media (max-width:575px){
  .eg-hero .carousel-item{ aspect-ratio:16/8; max-height:none; }
  .eg-hero .ctrl{ width:34px; height:34px; font-size:.8rem; margin:0 .45rem; }
  .eg-hero .carousel-indicators{ margin-bottom:.6rem; }
}

/* ---------- sector strip ---------- */
.sector-strip{ padding:34px 0; border-bottom:1px solid var(--eg-line); overflow:hidden; }
.sector-track{ display:flex; gap:3.5rem; width:max-content; animation:marquee 30s linear infinite; }
.sector-strip:hover .sector-track{ animation-play-state:paused; }
.sector-item{
  display:flex; align-items:center; gap:.7rem; font-family:'Poppins',sans-serif;
  font-weight:600; font-size:.95rem; color:var(--eg-forest); white-space:nowrap;
}
.sector-item i{
  width:40px; height:40px; border-radius:12px 3px 12px 3px; background:var(--eg-mint);
  display:flex; align-items:center; justify-content:center; color:var(--eg-green); font-size:1.05rem;
}
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* ---------- about ---------- */
.about-media{ position:relative; padding-right:2.2rem; }
.about-media .main-img{
  border-radius:34px 6px 34px 6px; width:100%; height:613px; object-fit:cover; box-shadow:var(--shadow-lg);
}
.about-media .sub-img{
  position:absolute; right:0; bottom:-46px; width:46%; border-radius:26px 5px 26px 5px;
  border:8px solid #fff; box-shadow:var(--shadow-lg); height:230px; object-fit:cover;
  display:none;
}
.about-badge{
  position:absolute; left:-18px; top:34px; background:var(--grad); color:#fff;
  border-radius:var(--radius-leaf); padding:1.05rem 1.4rem; box-shadow:0 16px 40px rgba(14,135,69,.4);
}
.about-badge strong{ font-family:'Poppins',sans-serif; font-size:1.7rem; display:block; line-height:1; }
.about-badge span{ font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; opacity:.9; }
.about-check{ list-style:none; padding:0; margin:1.6rem 0 2rem; }
.about-check li{
  display:flex; gap:.8rem; align-items:flex-start; margin-bottom:.9rem; font-weight:500; color:var(--eg-ink);
}
.about-check li i{
  color:var(--eg-green); background:var(--eg-mint); min-width:26px; height:26px; border-radius:8px 2px 8px 2px;
  display:flex; align-items:center; justify-content:center; font-size:.8rem; margin-top:.2rem;
}
.founder-line{ display:flex; align-items:center; gap:1rem; padding-top:1.6rem; border-top:1px solid var(--eg-line); }
.founder-line .ic{
  width:54px; height:54px; border-radius:16px 3px 16px 3px; background:var(--eg-mint);
  display:flex; align-items:center; justify-content:center; color:var(--eg-green); font-size:1.5rem;
}
.founder-line strong{ font-family:'Poppins',sans-serif; color:var(--eg-ink); display:block; }
.founder-line small{ font-size:.83rem; }

/* ---------- product cards ---------- */
.product-card{
  background:#fff; border:1px solid var(--eg-line); border-radius:var(--radius-leaf);
  overflow:hidden; height:100%; position:relative; transition:.45s var(--ease);
}
.product-card .thumb{
  background:var(--eg-mint);
  height:190px; position:relative; overflow:hidden;
}
.product-card .thumb img{
  width:100%; height:100%; object-fit:cover; transition:.55s var(--ease);
}
.product-card .cat{
  display:none;
  position:absolute; top:14px; left:14px; background:#fff; color:var(--eg-forest);
  font-family:'Poppins',sans-serif; font-weight:600; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase;
  padding:.3rem .75rem; border-radius:30px; box-shadow:var(--shadow-sm); z-index:2;
}
.product-card .body{ padding:1.5rem 1.6rem 1.7rem; }
.product-card h3{ font-size:1.12rem; margin-bottom:.5rem; transition:.3s; }
.product-card p{ font-size:.9rem; margin-bottom:1.1rem; }
.product-card .link{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:.85rem; color:var(--eg-green);
  display:inline-flex; align-items:center; gap:.4rem;
}
.product-card .link i{ transition:transform .35s var(--ease); }
.product-card::before{                     /* baseline sweep */
  content:""; position:absolute; left:0; bottom:0; height:4px; width:0;
  transition:width .5s var(--ease); z-index:3;
}
.product-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.product-card:hover::before{ width:100%; }
.product-card:hover .thumb img{ transform:scale(1.08); }
.product-card:hover h3{ color:var(--eg-green); }
.product-card:hover .link i{ transform:translateX(5px); }

/* ---------- why choose ---------- */
.why-card{
  background:#fff; border-radius:var(--radius-leaf); border:1px solid var(--eg-line);
  padding:2.1rem 1.9rem; height:100%; transition:.45s var(--ease); position:relative; overflow:hidden;
}
.why-card .ic{
  width:60px; height:60px; border-radius:18px 4px 18px 4px; background:var(--eg-mint);
  color:var(--eg-green); font-size:1.6rem; display:flex; align-items:center; justify-content:center;
  margin-bottom:1.3rem; transition:.45s var(--ease);
}
.why-card h3{ font-size:1.1rem; margin-bottom:.6rem; }
.why-card p{ font-size:.9rem; margin:0; }
.why-card::after{
  content:""; position:absolute; right:-40px; top:-40px; width:110px; height:110px;
  border-radius:50%; background:var(--eg-mint); opacity:0; transition:.5s var(--ease); z-index:0;
}
.why-card > *{ position:relative; z-index:1; }
.why-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.why-card:hover::after{ opacity:1; transform:scale(1.4); }
.why-card:hover .ic{ background:var(--grad); color:#fff; transform:rotate(-6deg) scale(1.06); }

/* ---------- process ---------- */
.step-card{ text-align:center; position:relative; padding:0 1rem; }
.step-card .num{
  width:88px; height:88px; margin:0 auto 1.4rem; border-radius:28px 6px 28px 6px;
  background:#fff; border:2px dashed var(--eg-green); color:var(--eg-green);
  display:flex; align-items:center; justify-content:center; font-size:2rem;
  position:relative; transition:.45s var(--ease);
}
.step-card .num .badge-step{
  position:absolute; top:-10px; right:-10px; width:30px; height:30px; border-radius:50%;
  background:var(--grad); color:#fff; font-family:'Poppins',sans-serif; font-weight:600; font-size:.8rem;
  display:flex; align-items:center; justify-content:center; border:3px solid #fff;
}
.step-card:hover .num{ background:var(--grad); color:#fff; border-color:transparent; transform:translateY(-6px); box-shadow:0 16px 34px rgba(14,135,69,.3); }
.step-card h3{ font-size:1.08rem; margin-bottom:.5rem; }
.step-card p{ font-size:.9rem; }
.step-connector{
  position:absolute; top:44px; left:calc(50% + 60px); width:calc(100% - 120px); height:2px;
  background-image:linear-gradient(90deg, var(--eg-green) 55%, transparent 45%);
  background-size:14px 2px; opacity:.5;
}
.step-col:last-child .step-connector{ display:none; }

/* ---------- stats: pastel cards ---------- */
.stat-card{
  border-radius:var(--radius-card); padding:2.2rem 2rem; height:100%;
  transition:.45s var(--ease);
}
.stat-card .ic{
  width:66px; height:66px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; color:var(--ink-on-pastel); margin-bottom:1.6rem;
  box-shadow:0 8px 22px rgba(15,35,24,.08);
}
.stat-card .val{
  font-family:'Poppins',sans-serif; font-weight:800; color:var(--ink-on-pastel);
  font-size:clamp(2rem,3.4vw,2.9rem); line-height:1;
}
.stat-card .val small{ font-size:70%; font-weight:700; }
.stat-card .lbl{ margin-top:.6rem; font-size:.95rem; color:var(--ink-on-pastel); opacity:.85; }
.stat-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.bg-p-green{ background:var(--p-green); } .bg-p-peach{ background:var(--p-peach); }
.bg-p-lav{ background:var(--p-lav); }     .bg-p-pink{ background:var(--p-pink); }
.bg-p-teal{ background:var(--p-teal); }   .bg-p-orange{ background:var(--p-orange); }

/* ---------- category circle slider ---------- */
.eg-slider{ position:relative; }
.eg-viewport{ overflow:hidden; margin:0 -12px; padding:14px 0 18px; }
.eg-track{ display:flex; transition:transform .65s var(--ease); will-change:transform; }
.eg-slide{ padding:0 12px; }
.cat-item{ text-align:center; display:block; }
.cat-circle{
  width:min(100%, 172px); aspect-ratio:1/1; margin:0 auto 1.1rem; border-radius:50%;
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
  transition:.45s var(--ease);
}
.cat-circle img{ max-width:62%; max-height:70%; object-fit:contain; transition:.45s var(--ease); filter:drop-shadow(0 10px 12px rgba(15,35,24,.18)); }
.cat-item h3{ font-size:.98rem; font-weight:600; color:var(--eg-ink); transition:.3s; }
.cat-item:hover .cat-circle{ transform:translateY(-8px) scale(1.04); }
.cat-item:hover .cat-circle img{ transform:scale(1.1); }
.cat-item:hover h3{ color:var(--eg-green); }
/* rotating pastel gradients — one formula, one ink */
.eg-slide:nth-child(6n+1) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-green) 52%, color-mix(in srgb, var(--p-green) 76%, var(--ink-on-pastel) 24%) 100%); }
.eg-slide:nth-child(6n+2) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-peach) 52%, color-mix(in srgb, var(--p-peach) 76%, var(--ink-on-pastel) 24%) 100%); }
.eg-slide:nth-child(6n+3) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-lav) 52%, color-mix(in srgb, var(--p-lav) 76%, var(--ink-on-pastel) 24%) 100%); }
.eg-slide:nth-child(6n+4) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-pink) 52%, color-mix(in srgb, var(--p-pink) 76%, var(--ink-on-pastel) 24%) 100%); }
.eg-slide:nth-child(6n+5) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-orange) 52%, color-mix(in srgb, var(--p-orange) 76%, var(--ink-on-pastel) 24%) 100%); }
.eg-slide:nth-child(6n+6) .cat-circle{ background:radial-gradient(circle at 32% 26%, #ffffffb3 0%, var(--p-teal) 52%, color-mix(in srgb, var(--p-teal) 76%, var(--ink-on-pastel) 24%) 100%); }

.cat-slider .eg-slide{ flex:0 0 16.6667%; max-width:16.6667%; }
@media (max-width:1199px){ .cat-slider .eg-slide{ flex:0 0 20%; max-width:20%; } }
@media (max-width:991px){ .cat-slider .eg-slide{ flex:0 0 25%; max-width:25%; } }
@media (max-width:767px){ .cat-slider .eg-slide{ flex:0 0 33.3334%; max-width:33.3334%; } }
@media (max-width:575px){ .cat-slider .eg-slide{ flex:0 0 50%; max-width:50%; } }

/* slider arrows */
.eg-arrows{ display:flex; justify-content:center; gap:.6rem; margin-top:1.6rem; }
.eg-arrow{
  width:46px; height:46px; border-radius:14px 3px 14px 3px; border:2px solid var(--eg-green);
  background:#fff; color:var(--eg-green); font-size:1rem;
  display:flex; align-items:center; justify-content:center; transition:.35s var(--ease);
}
.eg-arrow:hover{ background:var(--eg-green); color:#fff; transform:translateY(-3px); box-shadow:0 12px 26px rgba(14,135,69,.28); }

/* ---------- product sliders (new launches / best sellers) ---------- */
.shop-slider .eg-slide{ flex:0 0 25%; max-width:25%; }
@media (max-width:1199px){ .shop-slider .eg-slide{ flex:0 0 33.3334%; max-width:33.3334%; } }
@media (max-width:991px){ .shop-slider .eg-slide{ flex:0 0 50%; max-width:50%; } }
@media (max-width:575px){ .shop-slider .eg-slide{ flex:0 0 100%; max-width:100%; } }
.shop-card{
  background:#fff; border:1px solid var(--eg-line); border-radius:var(--radius-leaf);
  overflow:hidden; height:100%; position:relative; transition:.45s var(--ease);
}
.shop-card .thumb{
  height:220px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.shop-card .thumb img{ max-height:170px; max-width:78%; object-fit:contain; transition:.5s var(--ease); filter:drop-shadow(0 14px 16px rgba(15,35,24,.16)); }
.shop-card .flag{
  position:absolute; top:14px; left:14px; z-index:2;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
  color:#fff; padding:.32rem .8rem; border-radius:30px;
}
.flag-new{ background:var(--eg-green); }
.flag-best{ background:var(--eg-gold); }
.shop-card .body{ padding:1.35rem 1.4rem 1.5rem; }
.shop-card h3{ font-size:1.05rem; margin-bottom:.45rem; transition:.3s; }
.shop-card p{ font-size:.87rem; margin-bottom:1rem; }
.shop-card .row-cta{ display:flex; align-items:center; gap:.9rem; }
.shop-card .link{ font-family:'Poppins',sans-serif; font-weight:600; font-size:.84rem; color:var(--eg-green); display:inline-flex; align-items:center; gap:.4rem; }
.shop-card .link i{ transition:transform .35s var(--ease); }
.shop-card .wa{ color:#25d366; font-size:1.25rem; margin-left:auto; transition:.3s var(--ease); }
.shop-card .wa:hover{ transform:scale(1.18); }
.shop-card::before{ content:""; position:absolute; left:0; bottom:0; height:4px; width:0; background:var(--grad); transition:width .5s var(--ease); z-index:3; }
.shop-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.shop-card:hover::before{ width:100%; }
.shop-card:hover .thumb img{ transform:scale(1.09); }
.shop-card:hover h3{ color:var(--eg-green); }
.shop-card:hover .link i{ transform:translateX(5px); }
/* pastel thumb backgrounds — same rotation order as categories */
.shop-slider .eg-slide:nth-child(6n+1) .thumb{ background:var(--p-green); }
.shop-slider .eg-slide:nth-child(6n+2) .thumb{ background:var(--p-peach); }
.shop-slider .eg-slide:nth-child(6n+3) .thumb{ background:var(--p-lav); }
.shop-slider .eg-slide:nth-child(6n+4) .thumb{ background:var(--p-pink); }
.shop-slider .eg-slide:nth-child(6n+5) .thumb{ background:var(--p-orange); }
.shop-slider .eg-slide:nth-child(6n+6) .thumb{ background:var(--p-teal); }

/* ---------- franchise & distribution ---------- */
.fd-panel{
  border-radius:var(--radius-card); overflow:hidden; height:100%;
  position:relative; display:flex; flex-direction:column;
}
.fd-panel .fd-img{
  width:100%; aspect-ratio:4/3; object-fit:cover;
  transition:.6s var(--ease);
}
.fd-panel:hover .fd-img{ transform:scale(1.05); }
.fd-panel .fd-img-wrap{ overflow:hidden; flex-shrink:0; }
.fd-body{
  padding:2.2rem 2.2rem 2.4rem; flex:1; display:flex; flex-direction:column;
}
.fd-body .fd-icon{
  width:58px; height:58px; border-radius:18px 4px 18px 4px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1.3rem; flex-shrink:0;
}
.fd-body h3{ font-size:1.32rem; margin-bottom:.7rem; }
.fd-body p{ font-size:.92rem; flex:1; margin-bottom:1.6rem; }
.fd-features{ list-style:none; padding:0; margin:0 0 1.8rem; }
.fd-features li{
  display:flex; align-items:flex-start; gap:.7rem; font-size:.9rem;
  margin-bottom:.7rem; color:var(--eg-ink); font-weight:500;
}
.fd-features li i{ color:var(--eg-green); margin-top:.18rem; flex-shrink:0; }

/* panel 1 — franchise: lighter peach */
.fd-panel.franchise{ background:#fef0d8; }
.fd-panel.franchise .fd-icon{ background:var(--eg-forest); color:#fff; }
.fd-panel.franchise h3, .fd-panel.franchise p{ color:var(--ink-on-pastel); }

/* panel 2 — distribution: lighter teal */
.fd-panel.distribution{ background:#d8f2f7; }
.fd-panel.distribution .fd-icon{ background:var(--eg-forest); color:#fff; }
.fd-panel.distribution h3, .fd-panel.distribution p{ color:var(--ink-on-pastel); }

/* hover lift */
.fd-panel:hover{ box-shadow:var(--shadow-lg); transform:translateY(-8px); }
.diff-panel{
  background:var(--p-bg); border-radius:34px 8px 34px 8px; padding:4rem 3.6rem 3rem; position:relative; overflow:hidden;
}
.diff-panel h2{ font-size:clamp(1.8rem,3vw,2.5rem); }
.diff-panel .lead-copy{ font-size:1.04rem; }
.diff-panel .diff-img{
  position:absolute; right:3.4rem; top:41%; transform:translateY(-72%);
  width:240px; max-width:32%; border-radius:26px 5px 26px 5px;
  box-shadow:var(--shadow-lg); border:6px solid #fff;
}
.diff-badges{
  background:var(--p-green); border-radius:20px 5px 20px 5px; padding:1.6rem 1.4rem; margin-top:2.6rem;
  display:flex; flex-wrap:wrap; position:relative; z-index:1;
}
.diff-badge{
  flex:1 1 0; min-width:170px; display:flex; align-items:center; gap:.8rem;
  padding:.5rem 1.2rem; border-right:1px solid rgba(35,89,52,.16);
}
.diff-badge:last-child{ border-right:0; }
.diff-badge i{ font-size:1.5rem; color:var(--eg-green); }
.diff-badge span{ font-family:'Poppins',sans-serif; font-weight:600; font-size:.86rem; color:var(--eg-ink); line-height:1.35; }
@media (max-width:991px){
  .diff-panel{ padding:2.6rem 1.8rem 2rem; }
  .diff-panel .diff-img{ position:static; transform:none; width:100%; max-width:100%; margin-top:1.6rem; }
  .diff-badge{ flex:1 1 45%; border-right:0; padding:.6rem .4rem; }
}

/* ---------- assurance: pastel cards (same language as stat cards) ---------- */
.assure-card{
  border-radius:var(--radius-card); text-align:center; height:100%;
  padding:2.6rem 1.6rem 2.1rem; position:relative; overflow:hidden;
  transition:.45s var(--ease);
}
.assure-card::before{
  content:""; position:absolute; width:110px; height:110px; border-radius:50%;
  border:2px dashed rgba(255,255,255,.6); left:50%; top:31px; transform:translateX(-50%);
  transition:.6s var(--ease);
}
.assure-card .ic{
  width:88px; height:88px; margin:0 auto 1.4rem; border-radius:50%;
  background:#fff; display:flex; align-items:center; justify-content:center;
  font-size:2rem; color:var(--ink-on-pastel); position:relative; z-index:1;
  box-shadow:0 8px 22px rgba(15,35,24,.08); transition:.45s var(--ease);
}
.assure-card h3{ font-size:1.1rem; margin-bottom:.55rem; position:relative; z-index:1; color:var(--ink-on-pastel); }
.assure-card p{ font-size:.9rem; margin:0; color:var(--ink-on-pastel); opacity:.85; position:relative; z-index:1; }
.assure-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.assure-card:hover::before{ transform:translateX(-50%) rotate(120deg); }
.assure-card:hover .ic{ transform:scale(1.06); }

/* ---------- pastel accents across sections (uniform ink) ---------- */
#why .row > div:nth-child(6n+1) .why-card .ic{ background:var(--p-green); }
#why .row > div:nth-child(6n+2) .why-card .ic{ background:var(--p-peach); }
#why .row > div:nth-child(6n+3) .why-card .ic{ background:var(--p-lav); }
#why .row > div:nth-child(6n+4) .why-card .ic{ background:var(--p-pink); }
#why .row > div:nth-child(6n+5) .why-card .ic{ background:var(--p-orange); }
#why .row > div:nth-child(6n+6) .why-card .ic{ background:var(--p-teal); }
#why .why-card .ic{ color:var(--ink-on-pastel); }
#why .why-card:hover .ic{ background:var(--grad); color:#fff; }
#why .row > div:nth-child(6n+1) .why-card::after{ background:var(--p-green); opacity:0; }
#why .row > div:nth-child(6n+2) .why-card::after{ background:var(--p-peach); opacity:0; }
#why .row > div:nth-child(6n+3) .why-card::after{ background:var(--p-lav); opacity:0; }
#why .row > div:nth-child(6n+4) .why-card::after{ background:var(--p-pink); opacity:0; }
#why .row > div:nth-child(6n+5) .why-card::after{ background:var(--p-orange); opacity:0; }
#why .row > div:nth-child(6n+6) .why-card::after{ background:var(--p-teal); opacity:0; }

.step-col:nth-child(1) .num{ background:var(--p-green); border-color:transparent; color:var(--ink-on-pastel); }
.step-col:nth-child(2) .num{ background:var(--p-peach); border-color:transparent; color:var(--ink-on-pastel); }
.step-col:nth-child(3) .num{ background:var(--p-lav);   border-color:transparent; color:var(--ink-on-pastel); }

.eg-accordion .accordion-button:not(.collapsed){ color:var(--eg-forest); background:var(--p-bg); }
.founder-line .ic{ background:var(--p-green); color:var(--ink-on-pastel); }
.about-badge{ background:linear-gradient(120deg, var(--eg-green), var(--eg-forest)); }

/* ---------- youtube shorts (dark section) ---------- */
.shorts-section{
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(14,135,69,.22), transparent 65%),
    radial-gradient(700px 380px at 8% 100%, rgba(126,226,168,.1), transparent 60%),
    #0c1f14;
}
.eyebrow-light{ color:#7ee2a8; }
.eyebrow-light::before, .visible .eyebrow-light::before{ background:#7ee2a8; }
.accent-light{ color:#7ee2a8; }
.arrow-light{ background:transparent; border-color:rgba(255,255,255,.4); color:#fff; }
.arrow-light:hover{ background:var(--eg-green); border-color:var(--eg-green); }
.shorts-slider .eg-slide{ flex:0 0 20%; max-width:20%; }
@media (max-width:1199px){ .shorts-slider .eg-slide{ flex:0 0 25%; max-width:25%; } }
@media (max-width:991px){ .shorts-slider .eg-slide{ flex:0 0 33.3334%; max-width:33.3334%; } }
@media (max-width:575px){ .shorts-slider .eg-slide{ flex:0 0 60%; max-width:60%; } }
.short-card{
  position:relative; border-radius:22px 5px 22px 5px; overflow:hidden; aspect-ratio:9/16;
  background:#12251a; border:1px solid rgba(255,255,255,.1);
  box-shadow:0 16px 40px rgba(0,0,0,.4); transition:.45s var(--ease); cursor:pointer;
}
.short-card iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; z-index:2; }
.short-card .poster{ position:absolute; inset:0; }
.short-card .poster img{
  width:100%; height:100%; object-fit:cover; transition:.5s var(--ease);
}
.short-card .poster::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(12,31,20,0) 45%, rgba(12,31,20,.55) 100%);
}
.short-card .poster .play{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2;
  width:58px; height:58px; border-radius:50%; background:rgba(255,255,255,.18);
  border:2px solid rgba(255,255,255,.55); backdrop-filter:blur(5px);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:#fff;
  transition:.35s var(--ease);
}
.short-card:hover{ transform:translateY(-8px); border-color:rgba(126,226,168,.5); box-shadow:0 24px 60px rgba(0,0,0,.55); }
.short-card:hover .poster img{ transform:scale(1.07); }
.short-card:hover .poster .play{ background:var(--eg-green); border-color:var(--eg-green); transform:translate(-50%,-50%) scale(1.12); }

/* ---------- testimonials ---------- */
.testi-card{
  background:#fff; border-radius:var(--radius-leaf); border:1px solid var(--eg-line);
  padding:2.2rem 2.1rem; height:100%; position:relative; transition:.45s var(--ease);
}
.testi-card .quote-ic{
  position:absolute; top:1.6rem; right:1.8rem; font-size:2.6rem; color:var(--eg-mint);
}
.testi-card .stars{ color:var(--eg-gold); font-size:.85rem; margin-bottom:1rem; letter-spacing:2px; }
.testi-card p{ font-size:.95rem; font-style:italic; color:var(--eg-ink); }
.testi-card .person{ display:flex; align-items:center; gap:.9rem; margin-top:1.4rem; }
.testi-card .avatar{
  width:50px; height:50px; border-radius:16px 3px 16px 3px; background:var(--grad); color:#fff;
  font-family:'Poppins',sans-serif; font-weight:700; display:flex; align-items:center; justify-content:center;
}
.testi-card .person strong{ font-family:'Poppins',sans-serif; color:var(--eg-ink); display:block; font-size:.95rem; }
.testi-card .person small{ font-size:.78rem; }
.testi-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }

/* one-card-at-a-time slider */
.testi-viewport{ overflow:hidden; margin:0 -12px; padding:12px 0 18px; }
.testi-track{ display:flex; transition:transform .65s var(--ease); will-change:transform; }
.testi-slide{ flex:0 0 33.3333%; max-width:33.3333%; padding:0 12px; }
.testi-slide .testi-card{ height:100%; }
@media (max-width:991px){
  .testi-slide{ flex:0 0 50%; max-width:50%; }
}
@media (max-width:575px){
  .testi-slide{ flex:0 0 100%; max-width:100%; }
}

/* ---------- FAQ ---------- */
.eg-accordion .accordion-item{
  border:1px solid var(--eg-line); border-radius:18px 4px 18px 4px !important;
  margin-bottom:1rem; overflow:hidden; background:#fff;
}
.eg-accordion .accordion-button{
  font-family:'Poppins',sans-serif; font-weight:600; color:var(--eg-ink); font-size:1rem;
  padding:1.2rem 1.5rem; background:#fff; box-shadow:none;
}
.eg-accordion .accordion-button:not(.collapsed){ color:var(--eg-green); background:var(--eg-mint); }
.eg-accordion .accordion-button:focus{ box-shadow:none; }
.eg-accordion .accordion-body{ font-size:.93rem; padding:1.2rem 1.5rem; }

/* ---------- CTA + contact ---------- */
.cta-band{
  background:var(--grad); border-radius:34px 8px 34px 8px; position:relative; overflow:hidden;
  padding:3.6rem 3.4rem; color:#fff;
}
.cta-band::before{
  content:""; position:absolute; right:-70px; top:-70px; width:260px; height:260px; border-radius:50%;
  border:44px solid rgba(255,255,255,.09);
}
.cta-band::after{
  content:""; position:absolute; left:-50px; bottom:-90px; width:200px; height:200px; border-radius:50%;
  background:rgba(255,255,255,.07);
}
.cta-band h2{ color:#fff; font-size:clamp(1.6rem,2.8vw,2.3rem); }
.cta-band p{ color:#d9eadf; max-width:520px; }
.cta-band .container-inner{ position:relative; z-index:1; }

.contact-panel{
  background:#fff; border-radius:34px 8px 34px 8px; box-shadow:var(--shadow-lg);
  overflow:hidden; border:1px solid var(--eg-line);
}
.contact-panel .info-side{
  background:var(--eg-forest) url('https://earlygreen.in/wp-content/uploads/2025/05/28-03-25-early-green-website-images-22.jpg') center/cover no-repeat;
  background-blend-mode:multiply; position:relative; color:#fff; padding:3rem 2.6rem; height:100%;
}
.contact-panel .info-side::before{ content:""; position:absolute; inset:0; background:linear-gradient(160deg, rgba(18,54,32,.95), rgba(14,135,69,.85)); }
.contact-panel .info-side > *{ position:relative; z-index:1; }
.contact-panel .info-side h3{ color:#fff; }
.contact-line{ display:flex; gap:1rem; margin-bottom:1.4rem; align-items:flex-start; }
.contact-line i{
  min-width:44px; height:44px; border-radius:14px 3px 14px 3px; background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:1.05rem; color:#7ee2a8;
}
.contact-line strong{ font-family:'Poppins',sans-serif; font-size:.9rem; display:block; }
.contact-line span{ font-size:.86rem; color:#cfe8d8; }
.form-side{ padding:3rem 2.8rem; }
.form-control, .form-select{
  border:1.5px solid var(--eg-line); border-radius:14px 3px 14px 3px; padding:.85rem 1.1rem;
  font-size:.92rem; transition:.3s var(--ease); background:#fbfdfc;
}
.form-control:focus, .form-select:focus{
  border-color:var(--eg-green); box-shadow:0 0 0 4px rgba(14,135,69,.12); background:#fff;
}
.form-label{ font-family:'Poppins',sans-serif; font-weight:600; font-size:.82rem; color:var(--eg-ink); }

/* ---------- footer ---------- */
.eg-footer{ background:#0c1f14; color:#a7c3b2; }
.eg-footer .foot-top{ padding:80px 0 50px; }
.eg-footer h4{
  color:#fff; font-size:1.02rem; margin-bottom:1.4rem; position:relative; padding-bottom:.7rem;
}
.eg-footer h4::after{ content:""; position:absolute; left:0; bottom:0; width:34px; height:2px; background:var(--eg-green); }
.eg-footer a{ color:#a7c3b2; font-size:.9rem; }
.eg-footer a:hover{ color:#7ee2a8; padding-left:4px; }
.eg-footer ul{ list-style:none; padding:0; margin:0; }
.eg-footer ul li{ margin-bottom:.65rem; display:flex; align-items:center; gap:.5rem; }
.eg-footer ul li::before{ content:"\f285"; font-family:"bootstrap-icons"; font-size:.6rem; color:var(--eg-green); }
.eg-footer .brand-desc{ font-size:.9rem; }
.eg-footer .social a{
  width:38px; height:38px; border-radius:12px 3px 12px 3px; background:rgba(255,255,255,.07);
  display:inline-flex; align-items:center; justify-content:center; margin-right:.5rem;
}
.eg-footer .social a:hover{ background:var(--eg-green); color:#fff; padding-left:0; transform:translateY(-3px); }
.eg-footer .foot-contact li{ align-items:flex-start; font-size:.88rem; }
.eg-footer .foot-contact li::before{ display:none; }
.eg-footer .foot-contact i{ color:#7ee2a8; margin-top:.25rem; }
.eg-footer .foot-bottom{
  border-top:1px solid rgba(255,255,255,.08); padding:1.3rem 0; font-size:.85rem;
}

/* ---------- reveal on scroll (directional variants) ---------- */
.reveal{ opacity:0; transform:translateY(38px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.r-left{ transform:translateX(-52px); }
.reveal.r-right{ transform:translateX(52px); }
.reveal.r-zoom{ transform:scale(.9); }
.reveal.visible{ opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.12s } .reveal[data-delay="2"]{ transition-delay:.24s }
.reveal[data-delay="3"]{ transition-delay:.36s } .reveal[data-delay="4"]{ transition-delay:.48s }

/* ============================================================
   DYNAMIC LAYER — depth, ambience & micro-interactions
   ============================================================ */

/* scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--eg-green),#7ee2a8);
  z-index:2000; box-shadow:0 0 12px rgba(14,135,69,.55);
}

/* ambient blobs behind sections */
.section{ position:relative; overflow:hidden; }
.deco-blob{
  position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  background:radial-gradient(circle, rgba(14,135,69,.1) 0%, rgba(14,135,69,0) 68%);
  animation:blobDrift 14s ease-in-out infinite alternate;
}
.deco-blob.b1{ width:520px; height:520px; top:-180px; right:-160px; }
.deco-blob.b2{ width:420px; height:420px; bottom:-160px; left:-140px; animation-delay:-6s; }
.deco-ring{
  position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  border:2px dashed rgba(14,135,69,.16);
  animation:ringSpin 40s linear infinite;
}
.deco-ring.r1{ width:220px; height:220px; top:60px; left:-90px; }
.deco-ring.r2{ width:160px; height:160px; bottom:70px; right:-60px; animation-duration:28s; }
.deco-leaf{
  position:absolute; pointer-events:none; z-index:0; opacity:.1;
  width:70px; height:70px; background:var(--eg-green);
  border-radius:0 60% 0 60%; transform:rotate(20deg);
  animation:leafFloat 9s ease-in-out infinite alternate;
}
@keyframes blobDrift{ from{ transform:translate(0,0) scale(1);} to{ transform:translate(-36px,30px) scale(1.12);} }
@keyframes ringSpin{ to{ transform:rotate(360deg);} }
@keyframes leafFloat{ from{ transform:rotate(14deg) translateY(0);} to{ transform:rotate(30deg) translateY(-26px);} }
.section > .container{ position:relative; z-index:1; }

/* button shine sweep */
.btn-eg::before, .btn-eg-white::before{
  content:""; position:absolute; top:0; left:-80%; width:50%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform:skewX(-22deg); transition:none; z-index:1;
}
.btn-eg:hover::before, .btn-eg-white:hover::before{ animation:shine .8s var(--ease); }
@keyframes shine{ to{ left:130%; } }

/* eyebrow line draws itself in */
.eg-eyebrow::before, .eg-eyebrow.center::after{ width:0; transition:width .8s var(--ease) .2s; }
.visible .eg-eyebrow::before, .visible .eg-eyebrow.center::after,
.eg-eyebrow.visible::before, .eg-eyebrow.center.visible::after{ width:34px; }

/* gradient highlight word in headings */
.grad-text{
  background:linear-gradient(100deg, var(--eg-green), #16a85a 55%, var(--eg-forest));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* 3D tilt cards */
.tilt{ transform-style:preserve-3d; will-change:transform; }
.tilt .thumb img, .tilt .ic{ transform:translateZ(26px); }
.tilt.tilting{ transition:none !important; }

/* marquee edge fade + pill items */
.sector-strip{
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sector-item{
  border:1px solid var(--eg-line); border-radius:60px; padding:.5rem 1.3rem .5rem .6rem;
  transition:.35s var(--ease); background:#fff;
}
.sector-item:hover{
  border-color:var(--eg-green); box-shadow:0 10px 26px rgba(14,135,69,.14); transform:translateY(-3px);
}
.sector-item i{ border-radius:50%; }

/* testimonial cards: mint corner wash */
.testi-card::before{
  content:""; position:absolute; left:0; top:0; width:0; height:6px;
  background:var(--grad); transition:width .5s var(--ease); border-radius:0 0 6px 0;
}
.testi-card:hover::before{ width:100%; }

/* about image: parallax float + glow frame */
.about-media .main-img{ transition:transform .2s linear; }
.about-media::before{
  content:""; position:absolute; inset:18px -14px -14px 18px; z-index:-1;
  border-radius:34px 6px 34px 6px; background:var(--eg-mint);
  border:2px dashed rgba(14,135,69,.28);
}

/* nav CTA pulse */
@keyframes ctaPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(14,135,69,.35); }
  50%{ box-shadow:0 0 0 9px rgba(14,135,69,0); }
}
.eg-nav .btn-eg{ animation:ctaPulse 2.6s ease-in-out infinite; }

/* footer link arrows glide */
.eg-footer ul li::before{ transition:transform .3s var(--ease); }
.eg-footer ul li:hover::before{ transform:translateX(4px); }

/* ---------- floating buttons ---------- */
.float-wa{
  position:fixed; right:24px; bottom:24px; z-index:1050;
  width:56px; height:56px; border-radius:50%; background:#25d366; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
  box-shadow:0 12px 30px rgba(37,211,102,.45); transition:.35s var(--ease);
}
.float-wa:hover{ color:#fff; transform:scale(1.1); }
.back-top{
  position:fixed; right:28px; bottom:94px; z-index:1050;
  width:44px; height:44px; border-radius:14px 3px 14px 3px; background:var(--eg-forest); color:#fff;
  display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:.35s var(--ease);
}
.back-top.show{ opacity:1; pointer-events:auto; }
.back-top:hover{ background:var(--eg-green); color:#fff; transform:translateY(-4px); }

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}
@media (max-width:991px){
  .section{ padding:74px 0; }
  .about-media .hero-chip{ right:14px; bottom:16px; padding:.85rem 1.1rem; }
  .about-media{ padding-right:0; margin-bottom:1rem; }
  .step-connector{ display:none; }
  .cta-band{ padding:2.6rem 1.8rem; }
  .form-side{ padding:2.2rem 1.6rem; }
}


/* ============================================================
   MEGA MENU — pure CSS hover, no Bootstrap dropdown
   ============================================================ */
.mega-parent{
  position:static !important;
}
/* the panel itself */
.mega-menu{
  display:none;
  position:fixed; left:0; right:0;
  top:var(--nav-h, 74px);
  z-index:1029;
  background:#fff;
  /* extra padding-top so mouse enters the white area without crossing a gap */
  padding-top:4px;
  border-top:3px solid var(--eg-green);
  border-bottom:1px solid var(--eg-line);
  box-shadow:0 24px 60px rgba(15,35,24,.18);
  border-radius:0 0 24px 24px;
}
/* open on hover */
.mega-parent:hover > .mega-menu,
.mega-parent > .mega-menu:hover{
  display:block;
}
/* invisible bridge fills the gap between nav link and panel */
.mega-parent::after{
  content:"";
  position:fixed;
  left:0; right:0;
  top:calc(var(--nav-h, 74px) - 20px);
  height:24px;
  z-index:1028;
  display:none;
}
.mega-parent:hover::after{ display:block; }
.mega-inner{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:.2rem .5rem;
  padding:1.2rem 2rem;
  max-width:1240px;
  margin:0 auto;
  align-items:start;
}



.mega-item{
  display:flex; align-items:center; gap:.55rem; padding:.36rem .5rem;
  border-radius:10px 2px 10px 2px; text-decoration:none; color:var(--eg-body);
  font-size:.82rem; font-weight:500; transition:.22s var(--ease);
  white-space:nowrap; width:100%;
}
.mega-item:hover{ background:var(--p-bg); color:var(--eg-green); transform:translateX(4px); }
.mega-img{
  width:70px; height:70px; border-radius:8px 2px 8px 2px;
  background:var(--p-bg); display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0; transition:.25s var(--ease);
}
.mega-item:hover .mega-img{
  width:70px; height:70px; border-radius:8px 2px 8px 2px;
  background:var(--p-bg); display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0; transition:.25s var(--ease);
}
.mega-img img{ width:100%; height:100%; object-fit:contain; padding:3px; }
.mega-emoji{ font-size:1.1rem; display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.mega-name{ line-height:1.2; }












@media(max-width:991px){ .mega-menu{ display:none !important; } }