* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ================== Text styling on the Hero Image  =============== */
.hero {
  position: relative;
  width: 100vw;        
  height: 70vh;
  overflow: hidden;
}

/* Image should fully cover the hero */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  object-position: center;
  display: block;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}


.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.hero-overlay p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* ========================= RESPONSIVENESS ===================== */
.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.hero-overlay p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================= Benifits Styling ========================= */
/* ===================== GLOBAL SECTION BASE ===================== */
.spices-content,
.cumin-moisture,
.cumin-pro-section {
  padding: 45px 8%;
  color: #2b2b2b;

}

/* ===================== INTRO CONTENT ===================== */
.spices-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.spices-content h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f1f1f;
}

.spices-content p {
  font-size: 23px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* ===================== MOISTURE FEATURE SECTION ===================== */

.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-specs span {
  font-size: 18px;
  color: #8b6b4f;
}

.moisture-specs p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* ===================== GRADES SECTION ===================== */

.section-head {
  text-align: center;
  margin-bottom: 10px;
}

.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 POINTS ===================== */
.moisture-pro {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.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;
}
.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;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .moisture-wrapper {
    grid-template-columns: 1fr;
  }

  .grades-pro {
    grid-template-columns: 1fr;
  }

  .moisture-points {
    grid-template-columns: 1fr;
  }

  .spices-content h1 {
    font-size: 34px;
  }

  .section-head h2 {
    font-size: 32px;
  }
}

/* BACK TO TOP STYLING*/
#backToTop {
  position: fixed;
  bottom: 40px;   
  right: 30px;
  z-index: 999;
  background-color: #3b1c07; 
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 25px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: #3b1c07;
  transform: translateY(-3px);
}
