/* ─────────── GLOBAL RESET ─────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─────────── HEADER ─────────── */
.header {
  background: #fff;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo img {
  height: 90px;
  width: auto;
  max-width: 220px;
}

.tagline {
  font-size: 0.8rem;
  color: #5d7531;
  font-weight: 600;
  margin-top: 5px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.icon {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ─────────── NAVIGATION ─────────── */
/* Center nav menu horizontally */
.main-nav {
  background: #000;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center; /* 👈 center everything inside */
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu {
  display: flex;
  gap: 50px;
  font-weight: bold;
  justify-content: center; /* 👈 center nav items */
  align-items: center;
}

.menu a {
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #8bc34a;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #8bc34a;
}
.menu a:hover::after {
  width: 100%;
}

.menu a.active {
  color: #8bc34a;             /* Highlight color */
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #8bc34a;
}

.burger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}


/* ─────────── HIGHLIGHTS SECTION ─────────── */
.highlights-section {
  padding: 70px 20px;
  background: #f7f7f7;
  text-align: center;
}

.highlights-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.highlight-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.highlight-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  max-width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease-out;
}

.highlight-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #555;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ─────────── STEP GUIDE SECTION ─────────── */
.steps-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  text-align: center;
}

.steps-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  max-width: 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  position: relative;
  animation: fadeSlideUp 0.8s ease;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e1f;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #333;
}

/* ─────────── CTA SECTION ─────────── */
.cta-section {
  background: linear-gradient(135deg, #2c3e1f 0%, #3f5e2d 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: #fff;
  color: #2c3e1f;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background: #e2e2e2;
}

/* ─────────── Animation ─────────── */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─────────── Responsive ─────────── */
@media (max-width: 700px) {
  .buyers-container {
    padding: 25px;
  }

  .buyers-content {
    flex-direction: column;
  }

  .buyers-title {
    font-size: 1.6rem;
  }
}


/* ───────────────────────────────────
   FOOTER / INNER
   ─────────────────────────────────── */
.inner{padding:60px 4%}
footer{
  text-align:center;
  font-size:.9rem;
  padding:18px 0;
  background:#f9f9f9;
  margin-top:40px;
}
/* ─────────── RESPONSIVE ─────────── */
@media(max-width:700px){
  .burger {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0%;
    width: 40%;
    background: #000;
    padding: 10px 0;
    border-top: 1px solid #444;
    z-index: 999;
  }

  .menu.show {
    display: block;
    padding: 2% 0;
  }

  .menu li{
    text-align:center;
    padding: 5%;
  }

  .hero{
    padding:40px 6%;
  }

  .hero h1{
    font-size:1.8rem;
  }
}