@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;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}
.hero {
  height: 90vh;
  width: 100vw;
}
#Why_section {
  height: auto;
  padding: 30px;

}
#why_section_p {
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}
/* Navbar */
.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;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero.light {
  background: #f5f5f7;
  margin-top: 20px;
}

.hero_name {
  font-size: 15rem;
  margin-bottom: 10px;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(198, 203, 109, 0.465);
  pointer-events: none;
}
.hero p {
  font-size: 18px;
  color: #777;
}

.hero img {
  margin-top: 30px;
  max-width: 100%;
}

/* Buttons */
.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary {
  background: #8b700f;
  color: #fff;
}
.btn.primary1 {
  /* Semi-transparent background */
  background: rgba(255, 255, 255, 0.1); 
  
  /* The "Glass" blur effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  
  /* Border and Glow */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  
  /* Text Styling */
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  display: inline-block;
  font-weight: 500;
  
  /* Glossy Highlight (Gradient) */
  background-image: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  
  /* Smooth transitions */
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover State */
.btn.primary1:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn.outline {
  border: 1px solid #8b700f;
  color: #8b700f;
}

/* Grid Section */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;

}

.card {
  padding: 50px 30px;
  text-align: center;
  background: #f5f5f7;
}

/* .card.blue {
  background: linear-gradient(135deg, #d0d0d066, #f6fbff);
} */

.card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.peanuts p {
  color: #555;
  margin-bottom: 20px;
}

/* 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-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;
  }
}

#slideshow {
  rotate: 90deg;
}

/* table designs */

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: #000;
  margin-top: 20px;
  text-align: center;
}

/* Styling the Header */
th {
  text-align: center;
  padding: 10px;
  font-size: 1.2em;
}

/* Basic cell padding */
td {
  padding: 8px 10px;
  text-align: center;
}

/* Creating the alternating "Zebra" striping */
tr:nth-child(even) {
  background-color: #f5f5f7; /* Light grey for alternating rows */
}

tr:nth-child(odd) {
  background-color: #ffffff; /* White for odd rows */
}
.brand_name {
  text-decoration: none;
  color: #333;
  font-family: Comfortaa, sans-serif;
  font-weight: 600;
}
.copyright_link {
  text-decoration: none;
  color: #777;
}
#why_section_p {
  color: #777;
}
.peanuts {
  background-image: url("./backrounds/peanut_bg.jpeg");
  background-size: cover;
  background-position: center;
}
.panruti {
  background-image: url("./backrounds/panruti.png");
  background-size: cover;
}
.cashew_bg {
  background-image: url("./backrounds/cashew_bg.jpg");
  background-size: cover;
}
.jackfruit_bg {
  background-image: url("./backrounds/jackfruit_bg.jpg");
  background-size: cover;
}
.panruti {
  color: #fff;
}
.peanuts h2,
.peanuts p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling on small screens */
  }
  .hero_name {
    font-size: 19vw; /* This scales the text relative to the screen width */
    max-width: 100%;
    display: block;
  }
  .hero_images {
    width: 300px;
  }
  .hero {
    height: 65vh;
    width: 100vw;
  }
  .why_section_H1 {
    font-size: 1.5rem;
  }
  #why_section_p {
    font-size: 0.9rem;
    color: #777;
  }
  #Why_section {
    height: auto;
  }

  .card {
    padding: 25px 15px;
  }
}
.quality-section {
  padding: 100px 10%;
  background-color: #ffffff;
  
}

.quality-header {
  text-align: center;
  margin-bottom: 60px;
}

.quality-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.quality-header p {
  font-size: 0.9rem;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.quality-card {
  padding: 32px;
  border-radius: 18px;
  background: #f5f5f7;
  transition: transform 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-4px);
}

.quality-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.quality-card p {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .quality-section {
    padding: 70px 20px;

  }

  .quality-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 12px;
  line-height: 1.6;
}
.quality-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.quality-header p {
  font-size: 0.9rem;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}
}
.ratesTable {
  display: none;
  width: 100%;
}
.hidden {
display: table;}
