
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f7f9fc;
      color: #333;
      line-height: 1.5;
      scroll-behavior: smooth;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      border-radius: 8px;
      display: block;
    }
   
    .container {
      width: 90%;
      max-width: 1100px;
      margin: auto;
    }

    header {
      background-color: #0a0a0a;
      color: #f7fafc;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .container.header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-family: 'Poppins', sans-serif;
      font-size: 2.0rem;
      font-weight: 600;
      letter-spacing: 2px;
      cursor: default;
      user-select: none;
    }
    nav {
      display: flex;
      gap: 1.4rem;
      font-weight: 600;
      font-size: 1.2rem;
    }
    
    nav a {
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      transition: background-color 0.25s ease;
    }
    nav a:hover,
    nav a:focus {
      background-color: #d39614;
      color: white;
      outline: none;
    }
    nav a.active {
      background-color: #c37208;
      color: white;
    }
    * {box-sizing:border-box}
    /* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.9s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
    .hero {
      background: linear-gradient(135deg, #d6960a 0%, #dfae0b 100%);
      height: 55vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 1rem;
    }
    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 3rem;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .hero p {
      font-size: 0.9rem;
      max-width: 600px;
      margin-bottom: 1.5rem;
      text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    }
    .btn-primary {
      background-color: #fff;
      color: orange;
      font-size: 1.5rem;
      font-weight: 600;
      border-radius: 30px;
      padding: 0.75rem 2rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(56,161,105,0.4);
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .btn-primary:hover,
    .btn-primary:focus {
      background-color: orange;
      color: white;
      outline: none;
    }
    



    /* Products */
    section.products {
      padding: 3rem 0;
      background-color: #fff;
    }
    section.products h2 {
      font-family: 'Poppins', sans-serif;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #276749;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
      gap: 2rem;
    }
    .product-card {
      background-color: #f7fafc;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
      padding: 1rem;
      cursor: pointer;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .product-card:hover,
    .product-card:focus-within {
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
      transform: translateY(-5px);
      outline: none;
    }
    .product-name {
      font-weight: 700;
      margin: 1rem 0 0.5rem 0;
      font-size: 1.1rem;
      color: #2f855a;
      text-align: center;
    }
    .product-price {
      font-weight: 600;
      font-size: 1.15rem;
      color: #38a169;
      margin-bottom: 0.5rem;
    }
    /* About Us */
    section.about {
      background-color: #e6fffa;
      padding: 3rem 0;
      text-align: center;
      color: #22543d;
    }
    section.about h2 {
      font-family: 'Poppins', sans-serif;
      margin-bottom: 1rem;
      font-size: 2rem;
    }
    section.about p {
      max-width: 600px;
      margin: auto;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    section.contact {
      background-color: #fff;
      padding: 3rem 0;
    }
    section.contact h2 {
      text-align: center;
      color: #276749;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 2rem;
      font-size: 2rem;
    }
    form {
      max-width: 600px;
      margin: auto;
    }
    .form-group {
      margin-bottom: 1.25rem;
      display: flex;
      flex-direction: column;
    }
    label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #22543d;
    }
    input, textarea {
      padding: 0.75rem;
      font-size: 1rem;
      font-family: inherit;
      border: 2px solid #cbd5e0;
      border-radius: 6px;
      resize: vertical;
      transition: border-color 0.3s ease;
    }
    input:focus, textarea:focus {
      border-color: #38a169;
      outline: none;
      box-shadow: 0 0 6px rgba(56,161,105,0.4);
    }
    button[type="submit"] {
      background-color: #38a169;
      color: white;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(56,161,105,0.4);
      font-size: 1.1rem;
      transition: background-color 0.3s ease;
    }
    button[type="submit"]:hover,
    button[type="submit"]:focus {
      background-color: #2f855a;
      outline: none;
    }
  
    footer {
      background-color: #2d3748;
      color: #a0aec0;
      text-align: center;
      padding: 1rem 0;
      font-size: 0.9rem;
      user-select: none;
      margin-top: 3rem;
    }

    @media (max-width: 600px) {
      nav {
        font-size: 0.9rem;
      }
      .hero h1 {
        font-size: 2.4rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }
