/* General Styles */
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 80px; /* Adjust based on the header height to prevent content from being hidden */
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensures the header stays above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visibility */
  background: #fff;
  padding: 10px 0;
  /* border-bottom: 1px solid #ddd; */
}

.logo-img {
  width: 176px;
  height: 50px;
  object-fit: contain; /* Ensures the image maintains its aspect ratio */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

/* Responsive Navigation Menu */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

/* Hamburger Menu (Hidden on Desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 40px;
  height: 35px;
  justify-content: space-between;
}

.menu-toggle span {
  background: #333;
  height: 5px;
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

/* Show Menu in Mobile View */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
  }
}

/* Hero Section */
/* .hero {
  background: #75ba75;
  padding: 50px 20px;
} */

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    /* Dark overlay for better contrast */ url("../assets/hero.webp")
      center/cover no-repeat,
    #75ba75; /* Fallback background color */
  padding: 50px 20px;
  color: #f5e1c8; /* Soft cream for good contrast */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Adjust height as needed */
  position: relative;
}

.hero h1 {
  /* font-size: 32px; */
  margin-bottom: 10px;
  font-size: 2.5rem;
  /* font-weight: bold; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Enhances visibility */
}

.hero p {
  font-size: 1.2rem;
  /* max-width: 00px; */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Subtle shadow for better contrast */
}

.gray-font-color {
  color: gray;
}

.gray-font-size {
  font-size: 18px;
}
.need-padding {
  padding-bottom: 3em;
}
.need-padding-above {
  padding-bottom: 3em;
}

.site-icon-container {
  display: flex; /* Center align */
  align-items: center;
  justify-content: center;
  width: 40px; /* Circle size */
  height: 40px;
  background-color: rgb(240, 234, 234); /* Light gray background */
  border-radius: 50%; /* Make it a circle */
}

.site-icon {
  color: #75ba75; /* Set icon color to green */
  font-size: 20px; /* Adjust size if needed */
}

/* Buttons */

.card-buttons-rev {
  background: #029254;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin: 10px;
  transition: background 0.3s ease-in-out;
  font-weight: bold;
  border-radius: 10px;
}

.card-buttons-rev:hover {
  background: #75ba75;
}

.card-buttons {
  background: #75ba75;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  /* margin: 10px; */
  transition: background 0.3s ease-in-out;
  font-weight: bold;
  border-radius: 10px;
}

.card-buttons:hover {
  background: #029254;
}

/* Products Section */
.products {
  padding: 5px 20px;
}

.product-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 30px;
}

.product-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  width: 25%;
  min-width: 250px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.product-card-4 {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  width: 18%;
  min-width: 250px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product-card:hover-4 {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive: Stack product cards on smaller screens */
@media screen and (max-width: 768px) {
  .product-card {
    width: 90%;
  }
}

.contact-card {
  background: #f4f4f4;
  color: black;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  width: 25%;
  min-width: 250px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive: Stack product cards on smaller screens */
@media screen and (max-width: 768px) {
  .contact-card {
    width: 90%;
  }
}
/* Testimonials Section */
.testimonials {
  padding: 50px 20px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Testimonial Cards */
.testimonial {
  background: #f8f8f8;
  padding: 20px;
  width: 25%;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: left;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive: Stack testimonials on smaller screens */
@media screen and (max-width: 900px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 90%;
  }
}

/* Community Section */
.community {
  padding: 30px;
  background: #fff;
}

.community input {
  padding: 8px;
  width: 250px;
  margin-right: 10px;
}

/* Footer */
footer {
  background: black;
  color: white;
  padding: 10px;
}

.commitments {
  display: flex; /* Align internal divs side by side */
  gap: 20px; /* Add spacing between the divs */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.commitment {
  padding: 10px;
  width: 40%;
  min-width: 250px;
  text-align: justify;
}

/* Tabbing css */

.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  /* margin-left: 60px; */
}

.tab-button {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tab-button.active {
  color: black;
  border-bottom: 2px solid #000;
  font-weight: bold;
}

/* Tab Content */
.tab-content-container {
  background: white;
  padding: 20px 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Product Details Layout */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}

.product-image {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
  text-align: center;
  min-width: 200px;
}

.product-img {
  width: 400px;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.product-description {
  flex: 1;
  max-width: 100%;
  text-align: justify;
  vertical-align: top;
  padding: 0px 80px 10px 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }
  .product-img {
    width: 200px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
  }

  .product-image {
    width: 100%;
  }

  .product-description {
    max-width: 100%;
    text-align: justify;
  }
}

.whatsapp-img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* About Specifi css */
.about {
  padding-top: 0px;
  padding: 40px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  align-items: flex-start;
}

.about-text {
  max-width: 800px;
  text-align: justify;
}

.about-entp-text {
  flex: 1;
  max-width: 400px;
  text-align: justify;
  vertical-align: top;
}

.about-head {
  text-align: left;
  width: 55%;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  max-height: 350px;
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
/*About us Entrepruner*/

/* Desktop layout */
@media (min-width: 768px) {
  .about-entp-content {
    flex-direction: row;
    align-items: center;
  }

  .about-entp-text {
    padding-right: 2rem;
  }
}

.video-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-container iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
}

/* Recipe */
.recipe {
  max-width: 700px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recipe h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  color: black;
}

.recipe-steps {
  text-align: left;
  padding: 0;
  list-style: none;
}

.recipe-steps li {
  padding: 2px;
  margin: 10px 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.recipe-steps .material-icons {
  font-size: 20px;
}

footer {
  margin-top: 20px;
  background: white;
  color: rgb(255, 255, 255);
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .recipe {
    max-width: 90%;
  }

  .recipe-steps li {
    font-size: 16px;
  }
}

ul {
  list-style-type: disc; /* Bullet points */
  padding-left: 20px;
}

ul li {
  font-size: 18px;
  color: #444;
  margin: 5px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  text-align: left;
}
th,
td {
  border: 1px solid #ddd;
  padding: 10px;
}
th {
  background-color: #f4f4f4;
}

/* contact us   */

/* Main container: Two-part layout */
.contact-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin: 20px auto;
  max-width: 1000px;
}

/* Left side: Google Map */
.map-container {
  flex: 1;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
}

/* Right side: Contact Cards */
.contact-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Card styles */
.card {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive: Stack cards under map on small screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.greenbar {
  background: #75ba75;
  padding: 10px 20px;
  margin-bottom: 15px;
  color: white;
}

.greenbartext {
  color: #75ba75;
}

.greenbar h1 {
  /* font-size: 32px; */
  margin-bottom: 10px;
  font-size: 2rem;

  /* font-weight: bold; */
}

.greenbar p {
  font-size: 1.2rem;

  /* max-width: 00px; */
}
.recipe-container {
  text-align: center;
  max-width: 600px; /* Adjust width */
  margin: 0 auto; /* Center on the page */
}

.recipe-image {
  width: 100%;
  max-width: 400px; /* Adjust image width */
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px; /* Optional: Rounded corners */
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 10px;
  padding: 20px;
}

.recipe-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  background: white;
  padding: 10px;
  border-radius: 5px;
}

/* /table gradient  */

table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(
    to bottom,
    green,
    #ccff33
  ); /* Gradient from Green to Lemon Green */
  color: white; /* Text color */
  font-size: 16px;
  border-radius: 8px; /* Optional: Rounded corners */
  overflow: hidden;
}

td {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5); /* White border with transparency */
  text-align: left;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.2); /* Light overlay for contrast */
}
