/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
.header {
    background: #1b5e20;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}
/* BRANDING */
.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 78px;          /* LOGO BIGGER */
    width: auto;
    background: #ffffff;
    padding: 6px;
    border-radius: 6px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-name {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.2px;
    line-height: 1.1;
}

.company-tag {
    font-size: 13px;
    font-weight: 600;
    color: #c8e6c9;
    margin-top: 2px;
}

/* NAV */
nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* BANNER */
.banner {
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
        url('../images/banner1.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 18px;
}

/* SECTION */
.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    color: #1b5e20;
    margin-bottom: 30px;
}

.section.light {
    background: #ffffff;
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transition: transform .3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    color: #1b5e20;
}

/* TESTIMONIALS */
.testimonials p {
    font-style: italic;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .banner h1 {
        font-size: 28px;
    }
}
/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .container {
        flex-wrap: wrap;
    }

    .brand {
        flex: 1;
    }

    .logo {
        height: 58px;
    }

    .company-name {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        background: #1b5e20;
        margin-top: 10px;
    }

    nav a {
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.2);
        text-align: left;
    }

    nav.show {
        display: flex;
    }

    .banner {
        padding: 60px 15px;
    }

    .banner h1 {
        font-size: 24px;
    }

    .banner p {
        font-size: 15px;
    }
}
.product-category {
    margin-top: 80px;
}

.product-category h2 {
    text-align: left;
    color: #1b5e20;
    margin-bottom: 20px;
}
/* PRODUCT SLIDER */
.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider .product-card {
    min-width: 240px;
    flex-shrink: 0;
}

/* SLIDER BUTTONS */
.slider-btn {
    background: #1b5e20;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slider-btn.left {
    margin-right: 10px;
}

.slider-btn.right {
    margin-left: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-buttons button {
    background: #e8f5e9;
    border: 1px solid #1b5e20;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.filter-buttons button:hover {
    background: #1b5e20;
    color: white;
}
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
}

.product-info h1 {
    color: #1b5e20;
    margin-bottom: 10px;
}

.product-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.product-info ul li {
    margin-bottom: 8px;
}

.btn {
    display: inline-block;
    background: #1b5e20;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}
.footer {
    background: #1b5e20;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.map {
    max-width: 1200px;
    margin: 20px auto;
}

.footer h3 {
    margin-bottom: 10px;
}
.banner-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.section p {
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #555;
}
.product-category {
    margin-top: 40px;
}

.product-category h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 26px;
}
/*banner*/
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ALL SLIDES */
.hero-slide {
  position: absolute;     /* KEY FIX */
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ACTIVE SLIDE */
.hero-slide.active {
  position: relative;
  opacity: 1;
}

/* IMAGE */
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  color: green;
}
.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #1b5e20;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
/* Mobile button size adjustment */
@media (max-width: 768px) {
  .hero-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
  }
}
.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #1f6b2c;
  margin-bottom: 30px;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.testimonial h4 {
  margin-top: 15px;
  color: #1f6b2c;
  font-weight: 600;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .testimonial p {
    font-size: 15px;
  }
}
.footer {
  background: #1f6b2c;
  color: #fff;
  padding: 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.product-info h1 {
  font-size: 36px;
  color: #1f6b2c;
  margin-bottom: 15px;
}

.product-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.product-info ul {
  margin-top: 15px;
  padding-left: 20px;
}

.product-info li {
  margin-bottom: 8px;
  position: relative;
}

.product-info li::before {
  content: "✔";
  color: #1f6b2c;
  margin-right: 8px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-info h1 {
    font-size: 26px;
  }

  .product-cta {
    width: 100%;
  }
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.info-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  color: #1f6b2c;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
}



