* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* Basic Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #341F07;
  padding: 12px 24px;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  height: 60px;
  width: auto;
}

/* Nav links styling */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.25s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: #915c20;
  outline: none;
}

/* Contact Us distinct styling */
.contact a {
  background-color: #55b957;
}

.contact a:hover,
.contact a:focus {
  background-color: #419042;
}

/* Hide hamburger by default on desktop */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #387ADF;
    width: 220px;
    transform: translateX(100%);
    /* Menu hidden */
    transition: transform 0.3s ease;
    padding-top: 80px;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    transform: translateX(0);
    /* Slide in */
  }

  .nav-links li {
    margin: 12px 0;
    text-align: left;
    padding-left: 24px;
  }
}

/*Hero Section*/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  width: 100%;
  background-image: url("/public/Coco Peat.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
  background: rgba(34, 45, 33, 0.55);
  /* semi-transparent overlay for text readability */
  padding: 44px 30px;
  border-radius: 18px;
}

.hero-content h1 {
  font-family: "Nata Sans", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin: 0 20px 16px 20px;
  color: #fff;
  line-height: 1.15em;
}

.hero-sentence {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 20px 32px 20px;
  color: #fff;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.02em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
}

.primary-btn {
  background: #55b957;
  color: #fff;
}

.primary-btn:hover {
  background: #419042;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1.5px solid #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #219150;
}


/* Responsive Styles */
@media (max-width: 900px) {
  .hero {
    height: 60vh;
  }

  .hero-content {
    width: 70%;
    padding: 28px 14px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 34px 0;
  }

  .hero-content {
    width: 96%;
    padding: 18px 3vw;
    border-radius: 9px;
  }

  .hero-content h1 {
    font-size: 1.2rem;
    margin: 0 4px 12px 4px;
  }

  .hero-sentence {
    font-size: 0.96rem;
    margin: 0 4px 20px 4px;
  }

  .hero-cta {
    gap: 8px;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.96em;
    border-radius: 7px;
  }
}


.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background-color: #341F07;
  color: #fff;
  border-radius: 5px;
  font-family: "Nata Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}

.about {
  padding: 4rem 1rem;
}

#about-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
}

.about-right {
  flex: 1 1 35%;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* -------- Responsive ---------- */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about {
    margin: 10px 6vw;
    padding: 16px;
    border-radius: 12px;
  }

  .about h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .about-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .about-image {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(52, 31, 7, 0.1);
  }
}


.products {
  padding: 4rem 2rem;
  background: #f0f0f0;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.products h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Nata Sans', sans-serif;
}

.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  /* color: #341F07; */
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #341F07;
  font-family: 'Inter', sans-serif;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #341F07;
  font-family: 'Nata Sans', sans-serif;
}

.product-card button {
  background: #55b957;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.product-card button:hover {
  background: #219150;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .products {
    padding: 30px 15px;
  }

  .products h1 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }

  .product-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 25px 10px;
  }

  .products h1 {
    font-size: 1.9rem;
    margin-bottom: 24px;
  }

  .product-card h2 {
    font-size: 1.3rem;
    margin: 10px 0 12px 0;
  }

  .product-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .product-card button {
    padding: 9px 22px;
    font-size: 0.9rem;
    min-width: 110px;
  }

  .products-wrapper {
    gap: 24px;
  }
}


.contact-section {
  /* background: #341F07; */
  padding: 40px 0;
  font-family: "Nata Sans", sans-serif;
}

.contact-container {
  max-width: 420px;
  background: #FEFCF7;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
  padding: 32px 28px;
}

.contact-container h2 {
  margin-bottom: 6px;
  font-size: 1.6em;
  color: #341F07;
  text-align: center;
}

.contact-description {
  text-align: center;
  color: #555;
  font-size: 1em;
  margin-bottom: 22px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.97em;
  margin-bottom: 7px;
  color: #341F07;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e0e4ec;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  background: #f7fafc;
  margin-bottom: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #387ADF;
  background: #fff;
}

.contact-btn {
  display: block;
  width: 100%;
  background: #341F07;
  color: #fff;
  font-size: 1.01em;
  font-weight: 500;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s;
  margin-top: 10px;
}

.contact-btn:hover {
  background: #915c20;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4rem 2rem;
  /* background-color: #f5f5f5; */
  text-align: center;
}

.why-choose-us h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.reasons-list li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.choose-note {
  font-weight: bold;
  margin-top: 1rem;
  color: #2e7d32;
}

/* Mission Section */
.mission-section {
  padding: 4rem 2rem;
  /* background-color: #e8f5e9; */
  text-align: center;
}

.mission-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Certificates Section */
.certificates-section {
  padding: 2rem;
  text-align: center;
}

.certificates-section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.certificate-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.certificate-container {
  position: relative;
  height: 850px;
}

.certificate-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #341F07;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
  opacity: 1;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}



/* Responsive for mobile */
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.modal-content {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
}



/* Mobile Responsive */
@media (max-width: 500px) {
  .contact-container {
    padding: 18px 5vw;
    max-width: 98%;
    border-radius: 10px;
  }

  .contact-section {
    padding: 25px 0;
  }
}

.site-footer {
  background-color: #341F07;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 14px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  vertical-align: middle;
}


/* Responsive */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 6vw;
  }

  .footer-links,
  .footer-social {
    text-align: left;
    width: 100%;
    margin-top: 9px;
  }

  .footer-social {
    margin-top: 15px;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .footer-container {
    padding: 0 2vw;
  }

  .site-footer {
    padding: 21px 0 7px 0;
  }

  .footer-logo {
    font-size: 1.12em;
  }
}


/* Banner */
.banner {
  background: linear-gradient(135deg, #ffdf70, #ffc107);
  padding: 1rem;
  text-align: center;
  color: #5d4037;
}

.banner-btn {
  background: #5d4037;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}



/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  /* background-color: #25d366; */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}


.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* space between icons */
  z-index: 1000;
}

.social-float a img {
  width: 50px;
  height: 50px;
  /* border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.social-float a img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}