* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      width: 100%;
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* HEADER */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background-color: #fff;
      flex-wrap: wrap;
      position: relative;
    }

    .logo img {
      height: 60px;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #f44336;
    }

    .nav {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav a {
      font-size: 16px;
      font-weight: 400;
      color: #333;
      transition: 0.3s;
    }

    .nav a:hover {
      color: #b5003c;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .language-switch a {
      font-size: 14px;
      margin: 0 5px;
    }

    .icons a img {
      height: auto;
      width: auto;
      padding: 4px;
    }

    @media (max-width: 768px) {
        .header {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            position: relative;
        }

        .logo {
            flex: 1;
            text-align: left;
        }

        .menu-toggle {
            display: block;
            font-size: 26px;
            flex: 1;
            text-align: right;
        }

        .nav {
            display: none;
            flex-direction: column;
            width: 100%;
            text-align: center;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .nav.active {
            display: flex;
        }

        .right-section {
            width: 100%;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .language-switch {
            margin-bottom: 5px;
        }

        .icons {
            display: flex;
            gap: 10px;
        }
    }

    /* HERO SLIDER */
    .hero-slider {
      width: 100%;
      height: 90vh;
      position: relative;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .swiper-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .slide-content {
      color: #fff;
      text-align: center;
      padding: 0 20px;
      z-index: 2;
    }

    .slide-content h2 {
        font-size: 2.8rem;
        max-width: 800px;
        margin: 0 auto;
        color: #fff;
        text-shadow:
            -1px -1px 0 #000,  
            1px -1px 0 #000,
            -1px  1px 0 #000,
            1px  1px 0 #000;
    }

    @media (max-width: 768px) {
        .hero-slider {
            height: 60vh;
        }

        .swiper {
            height: 100%;
        }

        .slide-content h2 {
            font-size: 1.8rem;
        }
    }


    /* TECHNOLOGY SECTION */

    .technology-section {
      text-align: center;
    }

    .technology-section h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
      margin-top: 20px;
    }

    .technology-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 5px;
    }

    .tech-image {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .tech-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .tech-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .overlay-text {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.3;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .tech-image:hover::before {
        opacity: 1;
    }

    .tech-image:hover .overlay-text {
        opacity: 1;
    }

    .tech-image:hover img {
        transform: scale(1.05);
    }


    /* FOOTER */
footer {
  background-color: #f8f9fc;
  color: #222;
  padding: 40px 5% 20px;
  font-size: 15px;
  border-top: 1px solid #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.footer-logo img {
  height: 90px;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-address h4,
.footer-lang-icons h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #b5003c;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b5003c;
  text-decoration: underline;
}

.footer-address p,
.footer-lang-icons p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-lang-icons a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-lang-icons a:hover {
  color: #b5003c;
}

.footer-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-icons a img {
  height: 40px;
  width: 40px;
  transition: transform 0.3s ease;
}

.footer-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  color: #666;
}

.footer-bottom a {
  color: #b5003c;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
    margin-left: 0;
  }
}


/* About-Us */

.about-us {
  background-color: #fdfdfd; /* soft white background */
  padding: 60px 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  line-height: 2;
  font-size: 20px;
  color: #333;
}

.about-us .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-us p {
  margin-bottom: 30px;
}

/* Booklets */

/* Section Layout */
.equipment-section {
  padding: 50px 5%;
  background-color: #fff;
  text-align: center;
}

/* Heading */
.section-title {
  font-size: 2.2rem;
  color: #b5003c;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

/* Grid Layout */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

/* Cards */
.equipment-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-5px);
}

/* Images */
.equipment-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Download Button */
.download-btn {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  background-color: #b5003c;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .equipment-card img {
    height: 160px;
  }

  .caption {
    font-size: 1rem;
  }

  .subtext {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card img {
    height: 150px;
  }

  .download-btn {
    font-size: 13px;
    padding: 7px 14px;
  }
}

/* Contact Us */
.contact-section {
  padding: 50px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #b5003c;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #333;
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  text-align: left;
  font-size: 14px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form button {
  width: 150px;
  padding: 10px;
  background-color: #b5003c;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start;
}

.contact-form button:hover {
  background-color: #8f002f;
}
.success-message {
  background-color: #dfffdc;
  border: 1px solid #90e190;
  color: #006400;
  padding: 12px 16px;
  margin-bottom: 25px;
  font-size: 15px;
  border-radius: 4px;
  text-align: left;
}


/* Sub Heading */
.product-subheader {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #f9f9f9;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.product-subheader a {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  margin: 8px 12px;
  padding: 10px 15px;
  color: #333;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.product-subheader a:hover,
.product-subheader a.active {
  color: #d9534f;
  border-bottom: 2px solid #d9534f;
}



/* Additional Wet Processing Equipment Page */
#wet-processing-equipment {
  padding: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  text-align: center;
  color: #333;
}

#wet-processing-equipment h2 {
  font-size: 28px;
  color: #8B0000;
  margin-bottom: 30px;
}

.equipment-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.equipment-wrapper img {
  max-width: 250px;
  height: auto;
}

.equipment-info {
  max-width: 800px;
  text-align: left;
}

.equipment-info h3 {
  color: #B22222;
  font-size: 20px;
  margin-bottom: 10px;
}

.equipment-info p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.equipment-info ul {
  margin: 10px 0 20px 20px;
  padding-left: 0;
}

.equipment-info ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.spec-title {
  font-size: 18px;
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
}

.spec-table-container {
  overflow-x: auto;
  margin-top: 15px;
}

.spec-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.spec-table thead {
  background-color: #f5f5f5;
  font-weight: bold;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}
/* Eco Mini Wet Plant */
#eco-mini-wet-plant {
  padding: 40px;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
}

#eco-mini-wet-plant h2 {
  color: #8B0000;
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

.eco-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.eco-text {
  flex: 1 1 60%;
}

.eco-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.eco-text ul {
  padding-left: 20px;
}

.eco-text li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.eco-text strong {
  color: #B22222;
}

.eco-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Mini Wet Plant */
#mini-wet-plant {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

.mini-plant-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
}

.mini-plant-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.mini-plant-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.mini-plant-details {
  flex: 1 1 50%;
  text-align: left;
}

.mini-plant-details h3 {
  color: #B22222;
  font-size: 22px;
  margin-bottom: 10px;
}

.mini-plant-details p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.mini-plant-details ul {
  padding-left: 20px;
}

.mini-plant-details ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.mini-plant-details strong {
  color: #222;
}
/* Trishool Mini Wet Plant */
#trishool-mini-wet-plant {
  padding: 40px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  max-width: 1200px;
  margin: auto;
}

#trishool-mini-wet-plant h2 {
  font-size: 26px;
  color: #B22222;
  text-align: center;
  margin-bottom: 30px;
}

.trishool-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.trishool-text {
  flex: 1 1 60%;
}

.trishool-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.trishool-text ul {
  padding-left: 20px;
  margin-top: 10px;
}

.trishool-text ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.trishool-text strong {
  color: #000;
}

.trishool-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trishool-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Mini Pulper Washer */
#mini-pulper-washer {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

.pulper-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.pulper-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.pulper-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.pulper-details {
  flex: 1 1 50%;
  text-align: left;
}

.pulper-details h3 {
  color: #B22222;
  font-size: 20px;
  margin-bottom: 10px;
}

.pulper-details p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.pulper-details ul {
  padding-left: 20px;
}

.pulper-details ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.pulper-details strong {
  color: #000;
}
/* Single Disc Pulper */
#single-disc-pulper {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

.pulper-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.pulper-text {
  flex: 1 1 60%;
  text-align: left;
}

.pulper-text h3 {
  color: #B22222;
  font-size: 20px;
  margin-bottom: 10px;
}

.pulper-text p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.pulper-text ul {
  padding-left: 20px;
}

.pulper-text ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.pulper-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}

.pulper-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


/* Dry Processing Equipment Page */
#dry-processing-equipment {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

#dry-processing-equipment h2 {
  text-align: center;
  color: #8B0000;
  font-size: 26px;
  margin-bottom: 30px;
  border-bottom: 2px solid #8B0000;
  display: inline-block;
  padding-bottom: 5px;
}

.dry-equipment-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.dry-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.dry-image img {
  max-width: 100%;
  height: 500px;
}

.dry-text {
  flex: 1 1 50%;
  text-align: left;
}

.dry-text h3 {
  color: #B22222;
  font-size: 20px;
  margin-bottom: 10px;
}

.dry-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}



/* Laboratory Equipment Page */
.wet-processing-section {
  padding: 40px;
  background-color: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #a82c2c;
  border-bottom: 2px solid #a82c2c;
  display: inline-block;
  margin-bottom: 30px;
}

.wet-processing-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.slider-container {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
}

.slide.active {
  display: block;
}

.slider-controls {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.slider-controls button {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
}

.slider-caption {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}

.content-container {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.content-container h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.content-container p {
  font-size: 16px;
  line-height: 1.6;
}


/* Right image Equipment Layout */
.section-wet-equip {
  background-color: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.title-wet-equip {
  font-size: 28px;
  color: #a82c2c;
  border-bottom: 2px solid #a82c2c;
  display: inline-block;
  margin-bottom: 30px;
}

.container-wet-equip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.text-block-equip {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.title-peeler {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.desc-peeler {
  font-size: 16px;
  line-height: 1.6;
}

.slider-box-equip {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.slider-images-equip {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-img-equip {
  display: none;
  width: 100%;
  height: auto;
}

.active-slide-equip {
  display: block;
}

.slider-nav-equip {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.btn-slide-equip {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
}

.caption-slide-equip {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}


/* Small Growers Equipment Page */
.section-small-growers {
  padding: 40px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.small-growers-title {
  font-size: 26px;
  color: #a82c2c;
  border-bottom: 2px solid #a82c2c;
  display: inline-block;
  margin-bottom: 30px;
}

.small-growers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.grower-item {
  width: 180px;
}

.grower-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.grower-caption {
  margin-top: 10px;
  font-size: 14px;
}

.growers-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}


/* Sheet Metal Page */
.about-precision-section {
  background-color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
}

.precision-content-box {
  max-width: 1200px;
  border: 1px solid #ddd;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.precision-heading {
  font-size: 22px;
  color: #008037; /* Green similar to the image */
  font-weight: bold;
  margin-bottom: 20px;
}

.precision-paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}
.clients-section {
  background-color: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.clients-title {
  color: #008037;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px 40px;
  justify-items: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.client-logo img {
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(2);
}
.awards-section {
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.awards-section {
  padding: 40px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.awards-title {
  color: #008037;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.awards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.award-item {
  display: flex;
  align-items: center;
  background-color: #009c50;
  color: white;
  border-radius: 8px;
  padding: 15px 20px;
  width: 70%;
  max-width: 600px;
}

.award-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.award-text {
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
}

.facilities-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.facilities-title {
  font-size: 24px;
  color: #008037;
  font-weight: bold;
  margin-bottom: 15px;
}

.facilities-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 25px;
}

.facility-icon {
  width: 150px;
  height: auto;
}

.facility-content {
  flex: 1;
}

.facility-name {
  font-size: 18px;
  color: #005baa;
  margin-bottom: 8px;
}

.facility-list {
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.facility-list li {
  list-style-type: disc;
}


.production-standards {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: left;
  max-width: 900px;
  margin: auto;
}

.production-standards h2 {
  font-size: 30px;
  color: #00843d;
  margin-bottom: 30px;
  display: inline-block;
  padding-bottom: 5px;
}

.standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.standards-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.standards-list li img {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}

.standards-list li span {
  font-size: 16px;
  color: #333;
}


#textile-products {
  padding: 40px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.product-section {
  max-width: 800px;
  margin: 0 auto;
}

.product-heading {
  color: #2d9f4d;
  font-size: 32px;
  font-weight: bold;
}

.product-subheading {
  color: #005198;
  font-size: 26px;
  margin-top: 10px;
}

.product-description {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #333;
}

.product-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.product-list {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  flex: 1;
  list-style-type: disc;
  padding-left: 20px;
}

.product-gallery {
  margin-top: 40px;
}

.gallery-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.gallery-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* underline */
.section-divider {
  height: 1px;
  margin: 20px auto 0;
  width: 850px;
}

#machine-list {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.machine-title {
  font-size: 32px;
  font-weight: bold;
  color: #2d9f4d;
  text-align: center;
  margin-bottom: 20px;
}

.machine-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.machine-table th,
.machine-table td {
  border: 1px solid #999;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.machine-table thead {
  background-color: #007a33;
  color: #ffffff;
}

.machine-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.machine-table tbody td:first-child {
  text-align: center;
  width: 50px;
}

/* RESPONSIVE STYLING */
@media screen and (max-width: 768px) {
  .machine-table thead {
    display: none;
  }

  .machine-table,
  .machine-table tbody,
  .machine-table tr,
  .machine-table td {
    display: block;
    width: 100%;
  }

  .machine-table tr {
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }

  .machine-table td {
    text-align: left;
    padding: 8px 10px;
    position: relative;
  }

  .machine-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #2d9f4d;
  }
}


#our-verticals {
  padding: 40px 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.verticals-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.verticals-heading {
  font-size: 28px;
  color: #2d9f4d;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.vertical-card {
  position: relative;
  height: 300px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vertical-title {
  position: absolute;
  bottom: 15px;
  left: 30px;
  font-size: 30px;
  font-weight: bolder;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

#our-businesses {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.businesses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.centered-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.businesses-title {
  font-size: 32px;
  font-weight: bold;
  color: #2d9f4d;
  margin-bottom: 20px;
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.business-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.business-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.card-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.klrf-contact-section {
  background-color: #ffffff;
  padding: 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  border-top: 1px solid #e0e0e0;
}

.klrf-contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.klrf-contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #107c41;
  margin-bottom: 15px;
}

.klrf-contact-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.klrf-contact-details {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

.klrf-contact-details a {
  color: #107c41;
  text-decoration: none;
  font-weight: 500;
}

.klrf-contact-address {
  margin-top: 20px;
}
.color {
  color: #b5003c;
  font-weight: bold;
}



/*Grain Milling Equipment Page */

.asana-banner {
  background: linear-gradient(135deg, #7bc242, #4aaf3d);
  color: white;
  padding: 60px 20px 40px 20px;
  border-bottom-left-radius: 60% 20%;
  border-bottom-right-radius: 60% 20%;
  text-align: center;
}

.asana-title {
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.asana-models {
  margin-top: 10px;
}

.asana-wrapper {
  max-width: 1140px;
  margin: auto;
  padding: 20px;
  margin-top: -70px;
}

.asana-section {
  background: #ffffff;
  padding: 40px 30px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.asana-section-title {
  background: linear-gradient(90deg, #7bc242 70%, #fff 30%);
  color: #fff;
  padding: 14px 20px;
  font-size: 20px;
  font-weight: bold;
  border-left: 12px solid #4aaf3d;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.asana-flex-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asana-image-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

.asana-image-left {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.asana-content {
  flex: 2 1 500px;
}

@media (max-width: 768px) {
  .asana-flex-container {
    flex-direction: column;
  }

  .asana-image-wrapper,
  .asana-content {
    max-width: 100%;
  }
}

.asana-features-list {
  padding-left: 20px;
}

.asana-features-list li {
  margin-bottom: 8px;
}

.asana-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.asana-table th,
.asana-table td {
  border: 1px solid #272626;
  padding: 12px;
  text-align: center;
}

.asana-table th {
  background: #7bc242;
  color: white;
}

.asana-model-card {
  background-color: #eef8f0;
  border-left: 5px solid #4aaf3d;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.asana-dimensions {
  background-color: #e7f5e9;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.asana-img {
  display: block;
  margin: 20px auto 0 auto; /* top: 20px, left & right: auto, bottom: 0 */
  max-width: 100%;
  height: 400px;
  object-fit: contain; /* ensures image fits well */
  border-radius: 8px;
}

@media (max-width: 768px) {
  .asana-section {
    padding: 25px 20px;
  }

  .asana-title {
    font-size: 26px;
  }
}
