/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 60px;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 22px;
  margin: 5px 0;
}
/* ===================== MILLETS CARDS ===================== */
.millets-section {
  padding: 80px 8%;
}

.millets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.millet-card {
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.millet-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
}

.millet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.millet-img .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  padding: 10px;
}

.millet-img .overlay span {
  position: relative;
  padding-bottom: 8px;
}

.millet-img .overlay span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.millet-img:hover img {
  opacity: 0.35;
}

.millet-img:hover .overlay {
  opacity: 1;
  transform: translateX(0);
}

.millet-card h3 {
  margin-top: 14px;
  font-size: 18px;
  color: #642B03;
  font-weight: 600;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .millet-img {
    height: 220px;
  }

  .millet-img .overlay {
    font-size: 18px;
  }

  .millet-card h3 {
    font-size: 16px;
  }
}

/* ===================== MOISTURE FEATURE / BENEFITS SECTION ===================== */
.cumin-moisture {
  padding: 90px 8%;
  color: #2b2b2b;
  font-family: "Segoe UI", sans-serif;

}

.moisture-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8b6b4f;
  text-transform: uppercase;
}

.moisture-text h2 {
  font-size: 36px;
  margin: 15px 0 20px;
  color: #1e1e1e;
}

.moisture-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.moisture-specs {
  display: grid;
  gap: 18px;
}

.moisture-specs div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-left: 4px solid #8b6b4f;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.moisture-points div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.moisture-points div::before {
  content: "✔";
  color: #8b6b4f;
  font-weight: 600;
  line-height: 1.4;
}
.moisture-specs span {
  font-size: 18px;
  color: #8b6b4f;
}

.moisture-specs p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* ===================== GRADES SECTION ===================== */
.cumin-pro-section {
  padding: 90px 8%;
  font-family: "Segoe UI", sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head span {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8b6b4f;
  text-transform: uppercase;
  font-weight: 600;
}

.section-head h2 {
  font-size: 38px;
  margin-top: 10px;
  color: #1f1f1f;
}

.grades-pro {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.grade-card {
  padding: 35px 30px;
  border-bottom: 5px solid #8b6b4f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.grade-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.grade-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ===================== MOISTURE CONTROL SECTION ===================== */
.moisture-pro {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 40px 0;
}

.moisture-pro p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

.moisture-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.moisture-points div {
  padding: 18px 22px;
  font-size: 16px;
  border-left: 4px solid #8b6b4f;
  color: #333;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .moisture-wrapper {
    grid-template-columns: 1fr;
  }

  .grades-pro {
    grid-template-columns: 1fr;
  }

  .moisture-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .moisture-text h2,
  .section-head h2 {
    font-size: 32px;
  }

  .grade-card h3 {
    font-size: 20px;
  }

  .moisture-specs p,
  .moisture-points div {
    font-size: 15px;
  }
}
