.section-padding {
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.hero-abt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--faded-white);
}

.hero-content-abt {
  flex: 1 1 450px;
  padding: 40px;
}

.hero-content-abt h1 {
  color: var(--blue);
  margin-bottom: 20px;
}

.hero-content-abt p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.video-btn {
  background: var(--golden);
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.hero-img {
  flex: 1 1 450px;
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

.values {
  background: #f7fafc;
  font-family: "Inter", sans-serif;
  color: #333;
}

/* Container styling */
.values .container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

/* Section heading */
.values h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}

.values h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #27ae60;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Grid layout */
.values-grid {
  display: flex;
  gap: 15px;
}

.values-grid article {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.values-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.values-grid article h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #27ae60;
  position: relative;
}

/* Value description */
.values-grid article p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .values h2 {
    font-size: 28px;
  }
  .values-grid article h3 {
    font-size: 20px;
  }
  .values-grid article p {
    font-size: 15px;
  }
  .values {
    padding: 50px 20px;
  }
}

/* How It Works Section */
.how-it-works {
  background: #f0f4f8;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  color: #333;
  text-align: center;
}

/* Section Heading */
.how-it-works .abt-head {
  font-size: 36px;
  margin-bottom: 60px;
  color: #2c3e50;
  position: relative;
}

.how-it-works .abt-head::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #27ae60;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
  position: relative;
}

.how-it-works .step {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.how-it-works .step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #20386b;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.how-it-works .step:hover span {
  background-color: #20386b;
}

.how-it-works .step h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.how-it-works .step p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.how-it-works .steps::before {
  content: "";
  position: absolute;
  top: 100px !important;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #d3e6dd;
  z-index: 0;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .how-it-works .steps {
    position: relative;
  }

  .how-it-works .steps::before {
    top: 25px;
  }

  .how-it-works .step {
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 50px 20px;
  }
  .how-it-works .abt-head {
    font-size: 28px;
  }
  .how-it-works .step h4 {
    font-size: 20px;
  }
  .how-it-works .step p {
    font-size: 15px;
  }
}

.farmers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.farmer {
  flex: 1 1 300px;
  text-align: center;
}

.farmer img {
  width: 100%;
  border-radius: 8px;
}

.cta {
  text-align: center;
  background: var(--blue);
  color: white;
}

.cta h2 {
  color: var(--golden);
  font-size: 35px;
  font-weight: 700;
}

.cta-btns {
  margin-top: 20px;
}

.cta-custom-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn-1 {
  background: var(--golden);
  color: white;
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn-1:hover {
  background: #fff;
  color: var(--golden);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--golden);
}

.cta-btn-2 {
  border: 2px solid var(--golden);
  color: #fff;
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn-2:hover {
  border-bottom: 2px solid #fff;
  border-top: none;
  border-left: none;
  border-right: none;
 color:#fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  position: relative;
  max-width: 800px;
  width: 90%;
  height: 60vh;
}

.modal-content video {
  width: 100%;
  border-radius: 8px;
  height: 60vh;
}

.close {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.abt-sub {
  font-size: 25px;
  color: var(--blue);
  font-weight: 600;
}
.abt-head {
  font-size: 25px;
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-abt {
    flex-direction: column;
  }

  .hero-content-abt,
  .hero-img {
    flex: 1 1 100%;
  }
  .cta h2 {
  color: var(--golden);
  font-size: 22px;
  font-weight: 700;
}

}

.story {
  background: linear-gradient(to right, #fefefe, #f0f4f8);
  padding: 80px 0;
}

.story .container {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
}

.story h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #27ae60;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.story ul {
  list-style: none;
  padding: 0;
}

.story ul li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .story {
    display: flex !important;
    padding: 50px 20px;
    flex-direction: column;
  }

  .values-grid {
    flex-direction: column;
  }
  .story h2 {
    font-size: 28px;
  }

  .story p,
  .story ul li {
    font-size: 16px;
  }
}
