@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100;200;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Outfit:wght@100..900&display=swap");

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: poppins, sans-serif;
    }

    body {
      background: #ffffff;
      color: #111;
      line-height: 1.6;
    }

    section {
      padding: 70px 10%;
    }

    h1, h2 {
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    p {
      color: #555;
      font-size: 14px;
    }

    /* HERO */
    .hero {
      text-align: center;
      padding-top: 110px;
      background-image: url(./backrounds/cashew_sec_hero.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
    }
    .hero h1 {
      font-size: 30px;
      text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    }
    .hero p {
      margin-top: 12px;
      font-size: 14px;
      color: #fff;
      text-shadow:5px 5px 8px rgba(0, 0, 0, 0.6);

    }
    .jackhero{
        text-align: center;
        padding-top: 110px;
        background-image: url(./backrounds/jackfruit_sec_hero.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
    }
    .jackhero h1 {
      font-size: 30px;
      text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    }
    .jackhero p {
      margin-top: 12px;
      font-size: 14px;
      color: #fff;
      text-shadow:5px 5px 8px rgba(0, 0, 0, 0.6);

    }
    .Peanut_hero{
        text-align: center;
        padding-top: 110px;
        background-image: url(./backrounds/peanut_sec_hero.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
    }
    .Peanut_hero h1 {
      font-size: 30px;
      text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    }
    .Peanut_hero p {
      margin-top: 12px;
      font-size: 14px;
      color: #fff;
      text-shadow:5px 5px 8px rgba(0, 0, 0, 0.6);

    }

    /* GRID */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .card {
      background: #f5f5f7;
      padding: 30px;
      border-radius: 18px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: 600;
    }
    .grid1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .card1 {
      background: #f5f5f7;
      padding: 10px;
      border-radius: 18px;
    }
    /* FULL WIDTH */
    .light {
      background: #f5f5f7;
      text-align: center;
    }

    .light p {
      max-width: 600px;
      margin: 15px auto 0;
    }

    /* CTA */
    .cta {
      text-align: center;
    }

    .cta a {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 30px;
      border-radius: 30px;
      background: #8b700f;
      color: #fff;
      text-decoration: none;
      font-size: 15px;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      section {
        padding: 30px 20px;
      }

      .hero h1 {
        font-size: 30px;
      }
    }

    /* navbar section */

.navbar {
  height: 45px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  padding: 0 20px;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251, 251, 253, 0.8);
  position: fixed;
  /* padding-top: 14px; */
}
.nav_items {
  display: flex;
  gap: 30px;
}
.logo {
  font-size: 20px;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.brand_name {
  text-decoration: none;
  color: #333;
  font-family: Comfortaa, sans-serif;
  font-weight: 600;
}

/* Footer */
.jashews-footer {
  background: #f5f5f7;
  color: #6e6e73;
  font-size: 12px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer-note {
  border-bottom: 1px solid #f5f5f7;
  padding-bottom: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-columns summary {
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-columns a {
  display: block;
  text-decoration: none;
  color: #6e6e73;
  margin: 6px 0;
}

.footer-columns a:hover {
  text-decoration: underline;
}

details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #d2d2d7;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.footer-bottom p{
    font-size: 12px;
    color: #777;

}
.footer-links a {
  color: #6e6e73;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}
  #Why_section h2{
    font-size: 1.2rem;
    color: #555;
  }
  #ratesTable th{
    font-size: 0.9rem;
    color: #363636;
  }
/* Mobile View */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  details {
    border-bottom: 1px solid #d2d2d7;
    padding: 10px 0;
  }

  details[open] summary {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
.grades {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.grades h2 {
  text-align: center;
  font-size: 30px;
}

.subtitle {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 30px;
  color: #6e6e73;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

thead {
  background: #f5f5f7;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}

th {
  font-weight: 500;
}

tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

tbody tr:hover {
  background: #fafafa;
}