<style>
  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 400; line-height: 1.6;
    background-color: #ffffff; color: #222; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  }

  /* Top Contact Info */
.top-bar {
  background-color: #486260;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;   /* ✅ Rounded bottom corners */
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar i {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  stroke-width: 2;
  margin-right: 4px;
}

.separator {
  margin: 0 8px;
  color: #ccc;
}


  /* Sticky Header */
  header {
    position: sticky; top: 0; z-index: 999;
    background: #fff; width:1238px
	/* padding: 10px 30px; */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .nav-wrapper {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap;
	margin-right: 20px;
    margin-left: 20px;
	padding-top: 7px;
  }

  .logo img { max-height: 80px; }

  nav ul {
    list-style: none; display: flex; gap: 25px;
    transition: all 0.3s ease-in-out;
  }

  nav a {
    text-decoration: none; color: #333; font-weight: 0;
    transition: color 0.3s;
  }

  nav a:hover { color: #00796b; }

/* Reset margins/padding */
/* HIDE SUBMENU BY DEFAULT */
nav .submenu {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  padding: 6px 0;
  min-width: 160px;
}

/* SHOW ON HOVER */
nav li.has-submenu:hover > .submenu {
  display: block !important;
}


/* STYLE SUBMENU LINKS */
nav .submenu li a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;       /* ✅ smaller than main nav */
  font-weight: 400;       /* ✅ normal weight */
  color: #333;
  text-decoration: none;
  display: block;
  padding: 10px 25px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  border-radius: 4px;
}

nav .submenu li a:hover {
  background-color: #f0f0f0; /* same as main hover tone */
  color: #00796b;            /* match main menu hover */
}
.has-submenu {
  position: relative; /* anchors submenu to this */
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0; /* anchor to parent li */
  transform: translateX(0); /* just in case */
}
.submenu {
  display: none !important;
}
@media (max-width: 768px) {
  .submenu {
    max-height: 50vh; /* limit height to half the screen */
    overflow-y: auto;
    position: absolute;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
  }

  .submenu li a {
    font-size: 16px;
    padding: 12px 16px;
    color: #333;
    white-space: nowrap;
  }
}
  /* Hero Section */
  .hero {
    color: #fff; padding: 70px 20px; text-align: center;
    background-position: center; background-repeat: no-repeat;
    background-size: cover; position: relative; max-width: 1200px; height: 130px;
  }

  .hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
  .hero p { font-size: 1.2rem; max-width: 1200px; margin: 0 auto; }

	.mission-section {
	  background: #f9f9f9;
	  padding: 10px 20px;
	  text-align: left;
	}

	.mission-section .container {
	  /* max-width: 900px; */
	  margin: 0 auto;
	}

	.mission-section blockquote {
	  font-size: 14px;
	  font-style: italic;
	  margin: 0 auto 20px;
	  color: #444;
	}

	.mission-section p {
	  font-size: 14px;
	  color: #555;
	  line-height: 1.6;
	}


.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0rem 0rem;
  background-color: #f3f3f3;
  text-align: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.feature .icon {
  background-color: #0A9388;
  color: white;
  border-radius: 15px;
  padding: 0rem;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature .icon:hover {
  transform: scale(1.1);
}

.feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.25rem;
  line-height: 1.5;
}


  .nav-toggle {
    display: none; font-size: 28px; cursor: pointer; padding-left: 15px;
  }

  /* Responsive Mobile Menu */
/* Mobile menu */
/* Default nav */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00796b;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Responsive mobile nav */
@media (max-width: 768px) {
  .nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative; /* so dropdown stays under toggle */
    padding: 10px 15px;
  }

	.nav-toggle {
	  display: block;
	  font-size: 28px;
	  color: #00796b;
	  cursor: pointer;
	  margin-left: auto;
	  z-index: 1001;
	  padding-bottom: 0;      /* ✅ ensure no extra bottom space */
	  margin-bottom: 0;       /* ✅ remove space below */
	  line-height: 1;         /* ✅ ensure compact height */
	}

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    width: 150px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    position: absolute;
    right: 0;
    z-index: 1000;
	top: calc(100% - 2px); 
  }

  .nav ul.show {
    display: flex;
	margin:0px;
	padding:0px
  }

  .nav ul li {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
  }

  .nav ul li:last-child {
    border-bottom: none;
  }

  .nav ul li a {
    color: #333;
    text-decoration: none;
  }
}
.feather {
  width: 14px;
  height: 14px;
}
.icon {
  font-size: 14px;        /* match icon size */
  color: red;         /* inherit text color */
  line-height: 1;
  margin-right: 4px;
  vertical-align: middle;
}
  /* Strength Section */
  .strength-section {
    max-width: 1200px; margin: 0px auto; padding: 0 20px; text-align: center;
  }

  .strength-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .strength-box {
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }

  .strength-box i {
    font-size: 36px; background: #0d9f6f; color: white;
    padding: 12px; border-radius: 50%; margin-bottom: 15px;
  }

  .strength-box h3 {
    font-size: 1.1rem; font-weight: 600; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; color: #486260;
  }

  .strength-box p {
    color: #555; font-size: 14px; line-height: 1.5;
  }

  .mini-icon { width: 18px; height: 18px; stroke-width: 2.2; color: #486260; }

  .icon-wrap {
    background: #e0f2f1; border-radius: 50%;
    padding: 14px; margin-bottom: 12px;
    display: inline-flex; justify-content: center; align-items: center;
  }

  .icon-wrap i {
    color: #486260; width: 28px; height: 28px;
  }

  /* Products Section */
  .products-section {
    max-width: 1200px; margin: 60px auto; padding: 0 20px; text-align: center;
  }

  .products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px;
  }

  .product-card {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); transition: transform 0.3s;
  }

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

  .product-card img {
    width: 100%; height: 200px; object-fit: cover;
  }

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

  .product-card h3 {
    margin-bottom: 10px; font-size: 1.1rem; color: #486260;
  }

  .product-card .btn {
    display: inline-block; padding: 10px 20px;
    background: #486260; color: #fff;
    text-decoration: none; border-radius: 4px; font-weight: 600;
    transition: background 0.3s;
  }

  .product-card .btn:hover { background: #486260; }
  
  .productSwiper .swiper-button-next,
  .productSwiper .swiper-button-prev {
  color: #486260;
}
.certificates-section {
  padding: 0px 0px;
  /* background: #f9f9f9; */
  text-align: center;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row on desktop */
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.certificate img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  pointer-events: none; /* disables drag */
  user-select: none;    /* disables text/image selection */
}

.certificate img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
.member-section {
  padding: 2rem;
  text-align: center;
  background-color: #ffffff;
}

.member-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.member-section .underline {
  width: 60px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 1.5rem auto;
}

.member-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.member-logo {
  width: 180px;
  height: 100px;
  border: 2px solid #888;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.member-logo img {
  max-height: 70px;
  max-width: 90%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .member-logo {
    width: 45%;
  }
}
 .contact-section {
  padding: 0px 0px;
  /* background: #f9f9f9; */
}

.section-title {
  font-size: 2.0rem !important;
  font-weight: 700 !important;
  color: #486260 !important;
  margin-bottom: 20px;
  text-align: left;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  flex: 1 1 300px;
  color: #333;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #486260 ;
}

.contact-form {
  flex: 1 1 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form input,
.contact-form textarea {
  padding: 11px;
  border: 1px solid #ccc;
  border-radius: 5px;
  /* font-family: inherit; */
  /* font-size: 1rem; */
  width: 80%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 3px rgba(0, 121, 107, 0.4);
}

.contact-form label {
  font-weight: 400;
  margin-bottom: 5px;
  margin-top: 10px
}

.contact-form .btn {
  width: fit-content;
  background-color: #00796b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #486260;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}

.choose-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.choose-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #486260;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.choose-line {
  width: 60px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 2rem auto;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0A9388;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #0A9388;
  transition: all 0.3s ease;
}

.choose-icon:hover {
  background: #0A9388;
  color: white;
}

.choose-text {
  max-width: 600px;
}

.choose-text h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.choose-text p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.product-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .product-image {
      flex: 1 1 350px;
    }

    .product-image img {
      width: 100%;
      border-radius: 8px;
    }

    .product-details {
      flex: 2 1 500px;
    }

    .product-details h1 {
      font-size: 28px;
      margin-bottom: 16px;
      color: #486260;
    }

    .product-details p {
      font-size: 14px;
      line-height: 1.7;
      color: #444;
      margin-bottom: 24px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 24px;
      background-color: #486260;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #486260;
    }

    @media (max-width: 768px) {
      .product-section {
        flex-direction: column;
        padding: 20px;
      }
    }

  /* Footer */
  .site-footer {
    background: #486260; color: #fff; padding: 20px 20px 10px 20px; font-size: 13px; border-radius: 0px 0px 8px 8px; margin-top: 30px;
  }

  .footer-container {
    max-width: 1200px; margin: auto;
    display: flex; flex-wrap: wrap;
    gap: 40px; justify-content: space-between;
  }

  .footer-column {
    flex: 1 1 220px;
  }

  .footer-column h4 {
    font-size: 14px; font-weight: 600; margin-bottom: 20px; color: #fff;
  }

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

  .footer-column ul li { margin-bottom: 10px; }

  .footer-column ul li a {
    color: #cfd8dc; text-decoration: none; transition: color 0.3s;
  }

  .footer-column ul li a:hover { color: #fff; }

  .social-links i {
    margin-right: 8px; vertical-align: middle;
  }

  .footer-bottom {
    text-align: center; padding-top: 0px;
    font-size: 12px; color: #cfd8dc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    text-align: center !important;
  }

  .footer-column ul li {
    text-align: center;
  }
}

  /* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}
.gallery-item:hover img {
  transform: scale(1.05);
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); */
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hero-section {
  display: flex;
  height: 300px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-left {
  width: 25%;
  background-color: #486260;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-left h1 {
  font-size: 40px;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 18px;
	text-align: center;
  }
}

.hero-right {
  width: 75%;
  position: relative;
  overflow: hidden;
}

.carousel {
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel .slide.active {
  opacity: 1;
  z-index: 1;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Keep if you need consistent height */
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Hide Know More button initially */
.know-more {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #486260;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  display: inline-block;
}

/* Show the button on hover */
.gallery-item:hover .know-more {
  opacity: 1;
}


/* ✅ Show by default on mobile */
@media (max-width: 767px) {
  .gallery-item .know-more {
    opacity: 1;
  }
  .gallery-item a.glightbox {
    pointer-events: none;
  }
}

.submenu-arrow {
  margin-left: 6px;
  font-size: 12px;
  vertical-align: middle;
}
.nav a.active,
.nav .has-submenu.active > a {
  color: #1d824c;
  font-weight: bold;
}
.breadcrumb-nav {
  background: #f5f5f5;
  padding: 10px 20px;
  font-size: 14px;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: #555;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: #00754a;
}
</style>
