* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  color: #1a2e1a;
  background: #f4fbf4;
}
html {
  scroll-behavior: smooth;
}
/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(34, 100, 34, 0.09);
  padding: 0 20px;
  height: 70px;
}
.header-container {
  width: 100%;
  max-width: 1420px;
  margin: 0px auto;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #166534;
}
nav a {
  text-decoration: none;
  color: #374151;
  font-size: 0.93rem;
  font-weight: 500;
  margin-left: 30px;
  transition: color 0.2s;
}
nav a:hover {
  color: #16a34a;
}
.header-tfn {
  background: linear-gradient(135deg, #16a34a, #166534);
  color: #fff;
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  transition: opacity 0.2s;
}
.header-tfn:hover {
  opacity: 0.88;
}

/* HERO */
.hero {
  position: relative;
  padding: 50px 10px;

  overflow: hidden;
  background: #0a1f0a;
}

.hero-container {
  width: 100%;
  max-width: 1460px;
  margin: 0px auto;
  padding: 0px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
/* layered texture */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(22, 101, 52, 0.85) 0%,
      rgba(10, 31, 10, 0.75) 55%,
      rgba(5, 46, 22, 0.9) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: cover;
}
/* diagonal lines texture */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.018) 18px,
    rgba(255, 255, 255, 0.018) 19px
  );
}
/* leaf pattern */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(134, 239, 172, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
/* glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(34, 197, 94, 0.18);
  top: -80px;
  right: -60px;
}
.glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(16, 185, 129, 0.15);
  bottom: -60px;
  left: 10%;
}
.glow-3 {
  width: 250px;
  height: 250px;
  background: rgba(250, 204, 21, 0.08);
  top: 30%;
  left: 55%;
}

/* leaf decorations */
.leaf {
  position: absolute;
  font-size: 120px;
  opacity: 0.06;
  pointer-events: none;
}
.leaf-1 {
  top: -20px;
  right: 80px;
  transform: rotate(-30deg);
}
.leaf-2 {
  bottom: -20px;
  left: 40px;
  transform: rotate(20deg);
}
.leaf-3 {
  top: 40%;
  right: 5%;
  font-size: 80px;
  opacity: 0.04;
}

.hero-inner {
  width: 58%;
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 239, 172, 0.12);
  border: 1px solid rgba(134, 239, 172, 0.25);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 26px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 10px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero h1 span {
  background: linear-gradient(135deg, #4ade80, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: rgb(255, 255, 255);
  margin: 16px 0 25px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-sub2 {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 44px;
  max-width: 460px;
  line-height: 1.6;
}
.tfn-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(134, 239, 172, 0.2);
  border-radius: 18px;
  padding: 10px 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
  max-width: 400px;
}
.tfn-icon {
  font-size: 2.2rem;
}
.tfn-label {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.tfn-number {
  font-size: 1.85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.tfn-number a {
  text-decoration: none;
  color: #fff;
}
.tfn-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  padding: 15px 36px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.55);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(134, 239, 172, 0.35);
  color: #86efac;
  padding: 15px 34px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(134, 239, 172, 0.1);
}

/* right image panel */
.hero-right {
  width: 42%;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 10, 0) 0%,
    rgba(10, 31, 10, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right-inner {
  max-width: 550px;
  height: 480px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.15),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(134, 239, 172, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 5rem;
  opacity: 0.7;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-right-inner span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.hero-right-inner img {
  width: 100%;
}

/* SERVICES */
.services {
  padding: 88px 24px;
  background: #f4fbf4;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #14532d;
  margin-bottom: 10px;
}
.section-header p {
  color: #6b7280;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 26px;
  max-width: 1260px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 26px;
  box-shadow: 0 2px 20px rgba(22, 163, 74, 0.07);
  border: 1px solid #d1fae5;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
}
.card:nth-child(1)::before {
  background: linear-gradient(90deg, #4ade80, #16a34a);
}
.card:nth-child(2)::before {
  background: linear-gradient(90deg, #34d399, #059669);
}
.card:nth-child(3)::before {
  background: linear-gradient(90deg, #facc15, #f59e0b);
}
.card:nth-child(4)::before {
  background: linear-gradient(90deg, #6ee7b7, #10b981);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(22, 163, 74, 0.14);
}
.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
}
.card:nth-child(1) .card-icon {
  background: #dcfce7;
}
.card:nth-child(2) .card-icon {
  background: #d1fae5;
}
.card:nth-child(3) .card-icon {
  background: #fef9c3;
}
.card:nth-child(4) .card-icon {
  background: #ccfbf1;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.card-link:hover {
  text-decoration: underline;
}

/* STATS */
.stats {
  padding: 50px 16px;
  background: linear-gradient(135deg, #14532d 0%, #166534 40%, #15803d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.stats::after {
  content: "🌿";
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  right: -60px;
  bottom: -60px;
}
.stats h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
.stats p {
  color: #86efac;
  font-size: 0.95rem;
  margin-bottom: 48px;
  position: relative;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}
.stat-item {
  flex: 1 1 220px;
  max-width: 220px;
}
.stat-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.stat-num span {
  font-size: 1.4rem;
  color: #f3f3f3;
}
.stat-desc {
  font-size: 0.87rem;
  color: #eeeeee;
  margin-top: 5px;
}

/* FOOTER */
footer {
  background: #052e16;
  color: #6b7280;
  padding: 50px 20px 28px;
}
.footer-top {
  width: 100%;
  max-width: 1420px;
  margin: 0px auto;

  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  color: #4ade80;
  font-size: 1.35rem;
  font-weight: 900;
}
.footer-brand p {
  font-size: 0.87rem;
  color: #f3f3f3;
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.65;
}
.footer-col h4 {
  color: #f3f3f3;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #f3f3f3;
  font-size: 0.87rem;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #4ade80;
}
.footer-tfn {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  padding: 13px 18px 7px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
}
.footer-bottom {
  border-top: 1px solid #14532d;
  padding-top: 22px;
  text-align: center;
  font-size: 0.81rem;
  color: #f3f3f3;
}

.content-section {
  width: 100%;
  padding: 40px 0px;
}

.content-section h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.whyus h2 {
  margin-bottom: 30px;
}

/*========== Responsive Css ========= */

@media (max-width: 768px) {
  .hero-right {
    display: none;
  }
  .hero-inner {
    width: 100%;
    padding: 0 12px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 640px) {
  header {
    padding: 0 18px;
  }
  .hero-container {
    padding: 15px 0px;
  }
  nav {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  footer {
    padding: 40px 20px 22px;
  }
  .stats-grid {
    gap: 24px;
  }
  .hero-container {
    padding: 0px;
  }
  .tfn-strip {
    padding: 10px 12px;
    gap: 10px;
  }
  .tfn-icon {
    font-size: 1.2rem;
  }
  .tfn-number {
    font-size: 1.5rem;
  }
  .hero-sub {
    font-size: 15px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .content-section h2,
  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .whyus h2 {
    margin-bottom: 20px;
  }
}
