/* ================= ROOT VARIABLES ================= */
:root {
  --primary-color: #2d6e16; /* Deep Forest Green */
  --secondary-color: #c3d908; /* Luxury Gold */
  --accent-color: #8fd3b6; /* Soft Mint */
  --dark-color: #0b1f17;
  --light-color: #f5f8f6;
  --text-color: #2b2b2b;
  --white: #ffffff;
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background: var(--white);
}

/* ================= NAVBAR ================= */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 100px;
  height: auto;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
}
a.cta-btn {
  padding: 15px;
  background: #2d6e16;
  color: #eaeaea !important;
  border-radius: 5px;
  transition: all 0.3s;
}
.nav a:hover {
  color: var(--primary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
}

/* ================= HERO ================= */
.top-wrapper {
  background:
    linear-gradient(rgba(31, 122, 79, 0.85), rgba(31, 122, 79, 0.85)),
    url("../image/banner-img.png") bottom/cover;
}
.hero {
  color: var(--white);
  padding: 80px 0;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.banner-btn {
  border: 2px solid var(--white);
  color: var(--white);
}
.banner-btn:hover {
    background-color: #c3d908;
}
/* Buttons */
.btn {
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

/* .primary {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.secondary {
  border: 2px solid var(--white);
  color: var(--white);
} */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
  }
}

/* ================= ABOUT US ================= */
/* ================= ABOUT US ================= */
.about {
  /* background: linear-gradient(
    180deg,
    #f5f8f6 0%,
    #ffffff 100%
  ); */
  padding: 80px 0;
}
.about-content ul li p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 0px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 18px;
  background: #beffa7;
  padding: 5px 15px;
  border-radius: 30px;
  color: #000000;
}

/* Headings */
.about h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.about h2 span {
  color: var(--primary-color);
}
.vmv-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: #6c757d;
}

.vm-box {
  height: 100%;
  background: #ffffff;
  border-left: 6px solid;
  padding: 35px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vision-box {
  border-color: #0d6efd;
}

.mission-box {
  border-color: #20c997;
}

.vm-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.vm-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: inherit;
}

.vision-box .vm-icon {
  color: #0d6efd;
}

.mission-box .vm-icon {
  color: #20c997;
}

.vm-box h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.vm-box p {
  color: #495057;
  font-size: 15px;
  line-height: 1.7;
}

/* Values */
.values-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f3f5;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.value-item i {
  font-size: 18px;
  color: #0d6efd;
}

.value-item:hover {
    background: #2d6e16;
    color: #ffffff;
}
.value-item:hover i {
  color: #ffffff;
}

/* Text */
.about-content .lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* Cards */
.about-cards {
  display: grid;
  gap: 30px;
}

.about-card {
  background: var(--white);
  padding: 35px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.35s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(20, 90, 58, 0.15)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-8px);
}

/* Card text */
.card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.about-card p {
  font-size: 14.8px;
  line-height: 1.75;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about h2 {
    font-size: 28px;
  }
}

/* ================= PROBLEM SECTION ================= */
.problem {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
  padding: 80px 0;
}

.section-head {
  margin: 0 auto 30px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--dark-color);
}

.section-head h2 span {
  color: var(--primary-color);
}

.section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.problem-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-10px);
}

.problem-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.18);
}

.problem-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.problem-card p {
  font-size: 14.8px;
  line-height: 1.75;
  color: #555;
}


@media (max-width: 768px) {
  .problem {
    padding: 80px 0;
  }

  .section-head h2 {
    font-size: 28px;
  }
}

/* ================= SOLUTION SECTION ================= */
.solution {
  padding: 80px 0;
}

/* Left Content */
.solution-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.solution-content h2 span {
  color: var(--primary-color);
}

.solution-content p {
  font-size: 15.8px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Cards */
.solution-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12),
    rgba(20, 90, 58, 0.12)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card h4 {
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark-color);
}

.solution-card p {
  font-size: 14.7px;
  line-height: 1.75;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .solution {
    padding: 80px 0;
  }

  .solution-content h2 {
    font-size: 28px;
  }
}

/* ================= PRODUCTS & TECHNOLOGY ================= */
.products {
  background: linear-gradient(180deg, #f5f8f6 0%, #ffffff 100%);
  padding: 80px 0;
}
/* Card */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* Image */
.product-img {
  height: 230px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* Content */
.product-content {
  padding: 30px 28px;
}

.product-content h4 {
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.product-content p {
  font-size: 14.8px;
  line-height: 1.75;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .products {
    padding: 80px 0;
  }

  .product-img {
    height: 200px;
  }
}

/* ================= MARKET OPPORTUNITY ================= */
.market {
  background: white;
  padding: 80px 0;
}

/* Glass Card */

/* Market Items */
.market-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 26px;
  border-radius: 18px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.market-item:last-child {
  margin-bottom: 0;
}

/* Left */
.market-left h5 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 4px;
}

.market-left p {
  font-size: 14px;
  color: #555;
}

/* Right Number */
.market-right span {
  font-size: 28px;
  font-weight: 700;
}

/* Individual Styles */
.market-item.tam {
  background: linear-gradient(
    135deg,
    rgba(20, 90, 58, 0.12),
    rgba(143, 211, 182, 0.15)
  );
}
.market-item.tam span {
  color: var(--primary-color);
}

.market-item.sam {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.18),
    rgba(241, 201, 75, 0.25)
  );
}
.market-item.sam span {
  color: var(--secondary-color);
}

.market-item.som {
  background: linear-gradient(
    135deg,
    rgba(11, 31, 23, 0.1),
    rgba(20, 90, 58, 0.18)
  );
}
.market-item.som span {
  color: #0f5132;
}

/* Hover */
.market-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .market {
    padding: 80px 0;
  }

  .market-right span {
    font-size: 22px;
  }
}

/* ================= INVESTOR SECTION ================= */
.investor {
  background: linear-gradient(180deg, #ffffff, rgba(31, 122, 79, 0.05));
  padding: 120px 0;
}

/* Funding Box */
.funding-box {
  background: linear-gradient(
    135deg,
    rgba(31, 122, 79, 0.15),
    rgba(244, 180, 0, 0.15)
  );
  text-align: center;
  padding: 50px 30px;
  border-radius: 24px;
  margin: 50px 0;
}

.funding-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.funding-amount {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Use of Funds */
.use-funds {
  margin-bottom: 70px;
}

.fund-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.fund-card h4 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.fund-card:hover {
  transform: translateY(-6px);
}
/* PARTNER CTA SECTION */
.partner-section {
  background: linear-gradient(180deg, #f6f9f7 0%, #f5f8f6 100%);
  position: relative;
  overflow: hidden;
}

.partner-title {
  font-size: 38px;
  color: black;
  font-weight: 700;
}

.partner-title span {
  color: #2d6e16;
}

.partner-desc {
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.partner-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: #2e6e17;
  color: white;
}

.partner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Decorative Background Shapes */
.partner-bg-shape,
.partner-bg-shape2 {
  position: absolute;
  border-radius: 50%;
  background: rgb(218 255 205 / 40%);
  z-index: 0;
}

.partner-bg-shape {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
}

.partner-bg-shape2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-title {
    font-size: 28px;
  }

  .partner-desc {
    font-size: 16px;
  }

  .partner-btn {
    padding: 10px 24px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: var(--primary-color);
  color: #ffffff;
  padding: 80px 0 30px;
}
.footer-logo img {
    display: inline-block;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* about us */
section.about-hero {
    padding: 100px 0;
    color: white;
    background: #2d6e16;
}
.vision-mission {
  background-color: #f9fafb;
}

.vm-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vm-card p {
  color: #374151;
  line-height: 1.7;
  font-size: 15.5px;
}


.ops-section {
  background-color: #f8faf9;
}

.ops-section h3 {
  color: #1f2937;
}

.ops-section i {
  min-width: 22px;
}


/* products */

.products-core {
  background: #f8f9fa;
}

.product-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
}

.product-block.reverse {
  background: #ffffff;
}

.product-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.product-title i {
  color: #0d6efd;
  margin-right: 8px;
}

.product-desc {
  color: #495057;
  margin-bottom: 15px;
}

.product-points {
  list-style: none;
  padding: 0;
}

.product-points li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.product-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #20c997;
}

.product-highlight {
  font-weight: 500;
  color: #343a40;
}
.app-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.app-box i {
  font-size: 32px;
  color: #000000;
  margin-bottom: 12px;
}

.app-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.product-quality {
    background: #2d6e16;
    font-weight: 500;
}
.why-products {
  background: #ffffff;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 14px;
  font-weight: 500;
}

.why-list i {
  color: #2d6e16;
  margin-right: 10px;
}

.why-highlight-box {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
}
.packaging-supply {
  background: #f8f9fa;
}

.supply-bar {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 6px solid #2d6e16;
}

.supply-bar .label {
  font-weight: 600;
}

.supply-bar i {
  color: #2d6e16;
  margin-right: 8px;
}

.supply-bar .value {
  color: #495057;
  font-weight: 500;
}

/* blog */
/* HERO */
    .blog-hero {
      background: linear-gradient(135deg, #0d6efd, #198754);
      color: #fff;
    }

    /* BLOG CARDS */
    .blog-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 14px;
      height: 100%;
      transition: all 0.3s ease;
      border-top: 5px solid #2d6e16;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .blog-category {
      font-size: 12px;
      font-weight: 600;
      color: #2d6e16;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-card h5 {
      font-weight: 700;
      margin: 12px 0;
    }

    .blog-card p {
      color: #6c757d;
      font-size: 14px;
      line-height: 1.6;
    }

    .read-more {
      font-weight: 600;
      color: #198754;
      text-decoration: none;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    /* CATEGORY STRIP */
    .blog-categories {
      background: #f8f9fa;
    }

    .cat-badge {
      background: #ffffff;
      padding: 10px 18px;
      border-radius: 30px;
      font-weight: 500;
      margin: 6px;
      display: inline-block;
      border: 1px solid #dee2e6;
    }

/* contact us */


    /* INFO BOX */
    .contact-info-box {
      background: #ffffff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.06);
      height: 100%;
    }

    .contact-info-box i {
      font-size: 28px;
      color: #0d6efd;
      margin-bottom: 12px;
    }

    /* FORM */
    .contact-form-box {
      background: #ffffff;
      padding: 40px;
      border-radius: 14px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .form-control {
      border-radius: 10px;
      padding: 12px 15px;
    }

    .btn-submit {
      background: linear-gradient(135deg, #2d6e16, #2d6e16);
      border: none;
      padding: 12px 30px;
      font-weight: 600;
    }

    /* FOOT STRIP */
    .contact-footer-strip {
      background: #f8f9fa;
      font-weight: 500;
    }