body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}




.why-hero {
  width: 100%;
  background: linear-gradient(135deg, #1f6f54, #2e8b57);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

/* REMOVE CARD LOOK */
body {
  margin: 0;
  padding: 0;
}

/* container இருந்தா reset */
.why-hero .container {
  max-width: 100%;
  padding: 0;
}

/* background soft shapes */
.why-hero::before,
.why-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.why-hero::before {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
}

.why-hero::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

/* tag */
.why-hero .tag {
  display: inline-block;
  background: #f4c542;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* heading */
.why-hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* underline */
.why-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f4c542;
  margin: 10px auto;
  border-radius: 2px;
}

/* paragraph */
.why-hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .why-hero {
    padding: 70px 15px 60px;
  }

  .why-hero h1 {
    font-size: 26px;
  }

  .why-hero p {
    font-size: 14px;
  }

  .why-hero::before {
    width: 180px;
    height: 180px;
  }

  .why-hero::after {
    width: 220px;
    height: 220px;
  }
}








.philosophy-section {
  background: #f8f6f1; /* soft natural background */
  padding: 80px 20px;
}

/* container center */
.philosophy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* content box */
.philosophy-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* heading */
.philosophy-content h2 {
  font-size: 30px;
  color: #1f6f54;
  margin-bottom: 20px;
  position: relative;
}

/* underline */
.philosophy-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #f4c542;
  margin-top: 10px;
  border-radius: 2px;
}

/* paragraphs */
.philosophy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* highlight line */
.philosophy-content .highlight {
  margin-top: 20px;
  padding: 15px 20px;
  background: #e8f5e9;
  border-left: 4px solid #2e8b57;
  font-weight: 500;
  color: #1f6f54;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .philosophy-section {
    padding: 50px 15px;
  }

  .philosophy-content {
    padding: 25px 20px;
  }

  .philosophy-content h2 {
    font-size: 22px;
  }

  .philosophy-content p {
    font-size: 14px;
  }

  .philosophy-content .highlight {
    font-size: 14px;
    padding: 12px 15px;
  }
}









/* =========================
   WHY MILLETS SECTION
========================= */

.why-millets {
  padding: 90px 20px;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* background shapes */
.why-millets::before,
.why-millets::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.why-millets::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.why-millets::after {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -120px;
}

/* =========================
   HEADING
========================= */

.why-millets h2 {
  font-size: 34px;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
}

.why-millets h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c542;
  display: block;
  margin: 12px auto;
  border-radius: 2px;
}

/* =========================
   GRID
========================= */

.why-millets .grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   CARD
========================= */

.why-millets .card {
  background: #ffffff;
  color: #333;
  width: 240px;
  padding: 30px 20px;
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
}

/* hover effect */
.why-millets .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* =========================
   ICON
========================= */

.why-millets .icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* icon hover */
.why-millets .card:hover .icon {
  transform: scale(1.1) rotate(8deg);
}

/* =========================
   TEXT
========================= */

.why-millets h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f4e50;
}

.why-millets p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {
  .why-millets .grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why-millets {
    padding: 60px 15px;
  }

  .why-millets h2 {
    font-size: 24px;
  }

  .why-millets .card {
    width: 100%;
    max-width: 320px;
  }
}
.why-millets .card {
  border-radius: 14px;
}












/* =========================
   WHY BRAND SECTION
========================= */

.why-brand {
  padding: 90px 20px;
  background: #f8f6f1;
  text-align: center;
}

/* heading */
.why-brand h2 {
  font-size: 34px;
  color: #2f6f73;
  margin-bottom: 50px;
  position: relative;
}

.why-brand h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c542;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

/* card */
.brand-card {
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 14px;
  font-size: 15px;
  color: #333;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 5px solid #2f6f73;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* check icon styling */
.brand-card::before {
  content: "✔";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: #2f6f73;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  border-radius: 50%;
}

/* hover */
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(47,111,115,0.15);
  background: linear-gradient(135deg, #2f6f73, #3c8f7c);
  color: #fff;
}

/* hover icon */
.brand-card:hover::before {
  background: #fff;
  color: #2f6f73;
}

@media (max-width: 768px) {

  .why-brand {
    padding: 60px 15px;
  }

  .why-brand h2 {
    font-size: 24px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-card {
    font-size: 14px;
    padding: 18px 15px;
  }
}




/* =========================
   PROCESS SECTION
========================= */

.process-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

/* heading */
.process-section h2 {
  font-size: 34px;
  color: #2f6f73;
  margin-bottom: 70px;
  position: relative;
}

.process-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c542;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* grid */
.process-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

/* connecting line */
.process-grid::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #dcdcdc;
  z-index: 0;
}

/* card */
.process-card {
  width: 220px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* step circle */
.process-card .step {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* hover effect */
.process-card:hover .step {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* text */
.process-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 200px;
  margin: auto;
}

@media (max-width: 768px) {

  .process-section {
    padding: 60px 15px;
  }

  .process-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .process-grid {
    flex-direction: column;
    gap: 30px;
  }

  /* remove line */
  .process-grid::before {
    display: none;
  }

  .process-card {
    width: 100%;
  }

  .process-card .step {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .process-card p {
    font-size: 13px;
  }
}








/* =========================
   WHO SECTION (GREEN STYLE)
========================= */

.who-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* background shapes */
.who-section::before,
.who-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.who-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.who-section::after {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -120px;
}

/* heading */
.who-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* sub */
.who-section .sub {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* item style */
.who-card {
  background: #ffffff;
  color: #333;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 14px;
  text-align: left;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* left accent bar */
.who-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  border-radius: 12px 0 0 12px;
}

/* check icon */
.who-card::after {
  content: "✔";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2f6f73;
  font-weight: bold;
}

/* hover */
.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {

  .who-section {
    padding: 60px 15px;
  }

  .who-section h2 {
    font-size: 24px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .who-card {
    font-size: 13px;
    padding: 16px 15px;
  }
}







/* =========================
   PROMISE SECTION (UPGRADE)
========================= */

.promise-section {
  padding: 100px 20px;
  background: #f8f6f1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* premium box */
.promise-box {
  max-width: 650px;
  padding: 45px 35px;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f1f5f4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* gradient border glow */
.promise-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2e7d32, #2f6f73);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* subtle glow effect */
.promise-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(46,125,50,0.08);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* heading */
.promise-box h2 {
  font-size: 32px;
  color: #2f6f73;
  margin-bottom: 15px;
  position: relative;
}

/* underline */
.promise-box h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c542;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* text */
.promise-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
  margin: auto;
}

@media (max-width: 768px) {

  .promise-section {
    padding: 60px 15px;
  }

  .promise-box {
    padding: 30px 20px;
  }

  .promise-box h2 {
    font-size: 24px;
  }

  .promise-box p {
    font-size: 14px;
  }
}







/* =========================
   CTA SECTION
========================= */

.why-cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, #1b5e20, #2f6f73);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* background shapes */
.why-cta::before,
.why-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.why-cta::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.why-cta::after {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -120px;
}

/* heading */
.why-cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* text */
.why-cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}
.cta-btn {
  display: inline-block;
  background: #f4c542;
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* hover effect */
.cta-btn:hover {
  background: #fff;
  color: #2f6f73;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {

  .why-cta {
    padding: 60px 15px;
  }

  .why-cta h2 {
    font-size: 24px;
  }

  .why-cta p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}