<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
}
body {
  background: #eee;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
/* nav */
#nav {
  display: flex;
  align-items: center;
  padding: 1% 5%;
  justify-content: space-between;
  background-color: #1a3c34;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#nav img {
  width: 50px;
  height: auto;
}
#Menus {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}
#Menus ul {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}
#Menus ul li {
  list-style: none;
}
#Menus ul li a {
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
#Menus ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -3px;
  border-radius: 5px;
  left: 0;
  background-color: rgb(76, 175, 80);
  transition: width 0.3s ease;
}
#Menus ul li a:hover::after {
  width: 100%;
}
#Menus ul li a:hover {
  color: rgb(76, 175, 80);
}
#contact {
  display: flex;
  align-items: center;
}
#contact a {
  text-decoration: none;
  color: white;
  background-color: green;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid green;
  transition: ease-in-out 0.3s;
}
#contact a:hover {
  background-color: #fff;
  color: green;
}
.hamburger-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}
/* Nav end */
/* Swiper top */
#swiper-container {
  background-color: #fff;
  width: 100%;

  overflow: hidden;
}

#swiper-container .swiper {
  width: 100%;
  height: fit-content;
}

#swiper-container .swiper-slide {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 2.4 / 1;
}

#swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 !important;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.03);
}

.swiper-slide:hover .swiper-slide img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  #swiper-container {
    height: auto;
  }

  #swiper-container .swiper-slide img {
    object-fit: contain;
    max-height: 300px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.3em;
  }

  .card .card-icon i {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

/* why choose us */

.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.left-section {
  background-color: #1a3c34;
  color: #ffffff;
  padding: 5% 5%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.left-section svg {
  height: 0.8rem;
  width: 0.8rem;
  fill: #fff;
  margin-right: 15px;
}

.left-section h1 {
  font-size: 2.7rem;
  text-align: center;
  margin-bottom: 5%;
}

.left-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.left-section li {
  margin-bottom: 15px;
  font-size: 1rem;
  position: relative;
}

/* .left-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A8D5BA"&gt;&lt;path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/&gt;&lt;/svg&gt;')
    no-repeat center;
  background-size: contain;
} */

.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #1a3c34;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 50px;
}

.right-section {
  background-color: #f5f5f5;
  padding: 5% 5%;
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #000000;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-content {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 1.5em;
  margin: 20px 0;
  color: #1a3c34;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  color: #666666;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.card .card-icon i {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(26, 60, 52, 0.1);
  color: #1a3c34;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.card:hover .card-icon i {
  background: #1a3c34;
  color: #ffffff;
  transform: scale(1.1);
}

#Who-Can-Use {
  background-color: #0d380d;
  padding: 4% 5%;
  width: 50%;
}
#Who-Can-Use li,
#How-to-Use2 li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: white;
  list-style: none;
}
#Who-Can-Use h1,
#How-to-Use2 h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
}
#Who-Can-Use svg,
#How-to-Use2 svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: white;
  margin-right: 15px;
}

#How-to-Use2 {
  width: 50%;
  padding: 4% 5%;
  background-color: #1a3c34;
}
#How-to-Use {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#How-to-Use2 a,
#Who-Can-Use a {
  padding: 10px 20px;
  background-color: white;
  color: #1a3c34;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}
#How-to-Use2 ul,
#Who-Can-Use ul {
  margin-bottom: 2.5rem;
}
/* Video */
#youtube {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
}
#youtube h1 {
  font-size: 2.5rem;
  color: #1a3c34;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

#youtube h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 420px;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}

/* Gallery */
#Gallery {
  background: #f8f9fa;
  padding: 80px 5%;
  position: relative;
  text-align: center;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

#Gallery h1 {
  font-size: 2.5rem;
  color: #1a3c34;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

#Gallery h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
}

.gallery-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.gallery-swiper {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-swiper .swiper-wrapper {
  height: 300px;
}
.gallery-item {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 60, 52, 0.9), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #1a3c34;
  background: rgba(255, 255, 255, 0.95);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
}

.gallery-swiper .swiper-pagination-bullet {
  background: #1a3c34;
  opacity: 0.5;
  width: 8px;
  height: 8px;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #Gallery {
    padding: 40px 5%;
  }

  .gallery-item img {
    height: 250px;
  }

  #Gallery h1 {
    font-size: 2.7rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .gallery-overlay span {
    font-size: 1rem;
  }

  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}

/* Review */

#review-cards-section {
  padding: 80px 0;
  background-color: #f3f4f6;
  text-align: center;
}

#review-cards-section h1 {
  font-size: 2.8rem;
  color: #1a3c34;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

#review-cards-section h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
}

.review-cards-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-cards-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.review-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-card .reviewer-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid #1a3c34;
}

.review-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.review-card .stars {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.review-cards-swiper .swiper-button-prev,
.review-cards-swiper .swiper-button-next {
  color: #1a3c34;
  background: rgba(255, 255, 255, 0.8);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-cards-swiper .swiper-button-next:after,
.review-cards-swiper .swiper-button-prev:after {
  font-size: 1.4rem;
}

.review-cards-swiper .swiper-pagination {
  bottom: -30px; /* Adjust position */
}

.review-cards-swiper .swiper-pagination-bullet {
  background-color: #1a3c34;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.review-cards-swiper .swiper-pagination-bullet-active {
  background-color: #1a3c34;
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  #review-cards-section {
    padding: 60px 0;
  }
  #review-cards-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }
  .review-card {
    padding: 25px;
  }
  .review-card .reviewer-img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  .review-card h3 {
    font-size: 1.1em;
  }
  .review-card .stars {
    font-size: 1.1em;
    margin-bottom: 0.75rem;
  }
  .review-card p {
    font-size: 0.9em;
    line-height: 1.5;
  }
  .review-cards-swiper .swiper-button-prev,
  .review-cards-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .review-card {
    padding: 25px;
  }
  .review-card h3 {
    font-size: 1.1em;
  }
  .review-card .stars {
    font-size: 1.1em;
  }
  .review-card p {
    font-size: 0.9em;
  }
}

/* Certifications Section */
#certifications {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

#certifications h1 {
  font-size: 2.8rem;
  color: #1a3c34;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

#certifications h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
}

.certification-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.certification-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.certification-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.certification-card .certification-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.certification-card:hover .certification-img {
  transform: scale(1.05);
}

.certification-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3c34;
  margin-bottom: 0.75rem;
}

.certification-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.certification-swiper .swiper-button-prev,
.certification-swiper .swiper-button-next {
  color: #1a3c34;
  background: rgba(255, 255, 255, 0.8);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.certification-swiper .swiper-button-next:after,
.certification-swiper .swiper-button-prev:after {
  font-size: 1.4rem;
}

.certification-swiper .swiper-pagination {
  bottom: -30px;
}

.certification-swiper .swiper-pagination-bullet {
  background-color: #1a3c34;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.certification-swiper .swiper-pagination-bullet-active {
  background-color: #1a3c34;
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  #certifications {
    padding: 60px 0;
  }

  #certifications h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .certification-card {
    padding: 15px;
  }

  .certification-card .certification-img {
    width: 150px;
    height: 150px;
  }

  .certification-swiper .swiper-button-prev,
  .certification-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.lightbox-content:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

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

.close-lightbox:hover {
  color: rgb(76, 175, 80);
}

/* Add hover effect to gallery images */
.gallery-swiper .swiper-slide img {
  transition: transform 0.3s ease;
}

.gallery-swiper .swiper-slide img:hover {
  transform: scale(1.05);
}

/* Footer Styles */
.footer {
  background-color: #1a3c34;
  color: #ffffff;
  padding: 60px 0 0 0;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #4caf50;
  border-radius: 15px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-section.about p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #4caf50;
  transform: translateY(-3px);
}

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

.footer-section.links ul li {
  margin-bottom: 12px;
}

.footer-section.links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section.links ul li a:hover {
  color: #4caf50;
  transform: translateX(5px);
}

.footer-section.contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}

.footer-section.contact p i {
  margin-right: 10px;
  color: #4caf50;
}

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

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-container button {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  background-color: green;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  align-self: flex-start;
}

.contact-form-container button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .contact-form-container button {
    width: 100%;
  }
}

/* Responsive Nav Styles */
#responsive-nav {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background-color: #1a3c34;
  color: #ffffff;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

#responsive-nav.open {
  right: 0;
}

.responsive-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.responsive-nav-logo img {
  width: 40px;
}

.responsive-nav-close {
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
}

.responsive-nav-content {
  flex-grow: 1;
  overflow-y: auto;
  text-align: center;
}

.responsive-nav-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsive-nav-content ul li {
  margin-bottom: 15px;
}

.responsive-nav-content ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.responsive-nav-content ul li a:hover {
  color: #4caf50;
}

.responsive-nav-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}

.responsive-nav-social a {
  color: #ffffff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.responsive-nav-social a:hover {
  color: #4caf50;
}

@media (max-width: 767px) {
  #Menus,
  #contact {
    display: none;
  }

  .hamburger-icon {
    display: block;
  }

  #nav {
    padding: 2% 5%;
  }

  #responsive-nav {
    width: 80%;
    right: -80%;
  }

  #responsive-nav.open {
    right: 0;
  }
  #How-to-Use {
    flex-direction: column;
  }
  #How-to-Use2 {
    width: 100%;
    padding-bottom: 40px;
  }
  #Who-Can-Use {
    width: 100%;
    padding-bottom: 40px;
  }
  #Who-Can-Use h1,
  #How-to-Use2 h1 {
    text-align: center;
  }
  .right-section {
    padding: 5% 2%;
  }
  .left-section li {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(1fr));
  }
}

/* Fixed Nav Style */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #1a3c34;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}
.fixed-nav #Menus ul li a {
  color: #fff;
}

.fixed-nav #contact a {
  color: white;
  background-color: green;
}

.fixed-nav .hamburger-icon {
  color: #fff;
}

/* Management CSS Starts */
#cmd-message {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cmd-message h1 {
  font-family: "Plus Jakarta Sans", cursive; /* Using a cursive-like font as in the image */
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 48px;
  width: fit-content;
  position: relative;
}
#cmd-message h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
  bottom: -15px;
}

.cmd-content {
  display: flex;
  justify-content: center;

  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.cmd-image {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.cmd-image img {
  max-height: 250px;
  width: 350px;
  object-position: top center;
  object-fit: cover;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cmd-caption {
  margin-top: 15px;
}

.cmd-caption h2 {
  font-size: 1.2rem;
  color: #1a3c34;
  margin-bottom: 5px;
}

.cmd-caption p {
  font-size: 1rem;
  color: #4caf50;

  font-weight: bold;
}

.cmd-text {
  flex: 2 1 400px;
  text-align: left;
  line-height: 1.6;
  color: #555;
}

.cmd-text p {
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 768px) {
  .cmd-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .cmd-image {
    max-width: 80%;
  }

  .cmd-text {
    text-align: center;
  }
}

#team {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

#team h1 {
  font-size: 2.5rem;
  color: #1a3c34;
  position: relative;
  margin-bottom: 48px;
  width: fit-content;
}
#team h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 8px;
  background-color: rgb(76, 175, 80);
  border-radius: 15px;
  bottom: -15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: transparent;
  border-radius: 26px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: top center;
  border-radius: 16px;
  margin-bottom: 15px;
  border: none;
}

.team-member h3 {
  font-size: 1rem;
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.team-member p {
  font-size: 0.9rem;
  color: #555;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cmd-image img {
    width: 100%;
  }
  .team-member img {
    height: 180px;
  }
}
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Products */

/* Product Section Redesign */
.product-section-redesign {
  display: flex;
  gap: 40px;
  background: #eee;
  padding: 40px 5vw;
  border-radius: 24px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.product-gallery {
  display: flex;
  position: sticky;
  gap: 20px;
}
.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gallery-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s;
}
.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
  border: 2px solid #4caf50;
}
.gallery-main-image img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
}
.product-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 0.5rem;
}
.product-price {
  font-size: 1.7rem;
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}
.product-quantity-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 1rem;
}
.product-quantity-action label {
  font-weight: 500;
  color: #1a3c34;
}
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 4px 10px;
}
.qty-btn {
  background: #f3f3f3;
  border: none;
  color: #1a3c34;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover {
  background: #4caf50;
  color: #fff;
}
.quantity-selector input {
  width: 36px;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  background: transparent;
  color: #1a3c34;
}
.action-buttons {
  display: flex;
  gap: 12px;
}
.buy-now,
.add-to-cart {
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.buy-now {
  background: #ff7f32;
  color: #fff;
}
.buy-now:hover {
  background: #e55d00;
}
.add-to-cart {
  background: #1a3c34;
  color: #fff;
}
.add-to-cart:hover {
  background: #4caf50;
  color: #fff;
}
.product-tabs {
  display: flex;
  gap: 8px;
  margin-top: 1.5rem;
}
.product-tabs .tab {
  background: #f3f3f3;
  border: none;
  padding: 8px 18px;
  border-radius: 6px 6px 0 0;
  font-size: 1rem;
  color: #1a3c34;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.product-tabs .tab.active {
  background: #4caf50;
  color: #fff;
}
.tab-content {
  display: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 18px 16px;
  margin-top: -2px;
  border: 1px solid #eee;
  border-top: none;
  font-size: 1rem;
  color: #333;
}
.tab-content.active {
  display: block;
}
@media (max-width: 900px) {
  .product-section-redesign {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 2vw;
  }
  .product-gallery {
    flex-direction: row;
    gap: 20px;
  }
  .gallery-thumbnails {
    flex-direction: column;
    gap: 10px;
  }
  .gallery-main-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .product-section-redesign {
    padding: 18px 2vw;
    gap: 18px;
  }
  .product-title {
    font-size: 1.3rem;
  }
  .product-price {
    font-size: 1.1rem;
  }
  .gallery-main-image img {
    width: 100%;
    height: 100%;
  }
  .product-tabs {
    flex-direction: column;
  }
  .product-details {
    padding: 20px;
  }
  .product-quantity-action {
    flex-direction: column;
  }
  .product-gallery {
    padding: 20px;
  }
}

/* Product Image Lightbox */
.product-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.product-lightbox.open {
  display: flex;
}
.product-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.product-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}
.product-lightbox-close:hover {
  color: #4caf50;
}
/* About Us */
.about-hero {
  background: linear-gradient(rgba(26, 60, 52, 0.8), rgba(26, 60, 52, 0.8)),
    url("./Images/herbs.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.about-hero-content h1 span {
  color: #4caf50;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-intro {
  padding: 60px 0;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 2rem;
  color: #4caf50;
}

.feature-card h3 {
  color: #1a3c34;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.about-visual {
  padding: 80px 0;
  background: #f8f9fa;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visual-image {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.visual-content h2 {
  color: #1a3c34;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.visual-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.commitment-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.point i {
  color: #4caf50;
  font-size: 1.2rem;
}

.point span {
  color: #333;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-hero {
    height: 200px;
  }

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

  .about-description {
    font-size: 1.1rem;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-content h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 20px;
  }
}
/* Grievance */
.grievance-hero {
  background: #f8f9fa;
  padding: 60px 0 20px 0;
  text-align: center;
}
.grievance-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a3c34;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.grievance-hero h1 span {
  color: #4caf50;
}
.grievance-subtitle {
  color: #888;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.grievance-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0 60px 0;
  background: #fff;
}
.grievance-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 48px 36px;
  max-width: 900px;
  width: 100%;
}
.grievance-intro {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-align: left;
}
.grievance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.grievance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.7;
}
.grievance-list i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 4px;
}
.grievance-officer {
  background: #f3f7f4;
  border-left: 4px solid #4caf50;
  padding: 18px 24px;
  margin: 24px 0 32px 0;
  font-size: 1.1rem;
  color: #1a3c34;
  font-weight: 600;
  border-radius: 8px;
}
.grievance-note {
  color: #888;
  font-size: 1rem;
  margin-top: 30px;
  font-style: italic;
}
@media (max-width: 900px) {
  .grievance-card {
    padding: 32px 10px;
  }
}
@media (max-width: 600px) {
  .grievance-hero h1 {
    font-size: 2rem;
  }
  .grievance-card {
    padding: 18px 2vw;
  }
}
/* Conatct Us */
.contact-hero {
  background: #f8f9fa;
  padding: 50px 0 20px 0;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c34;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.contact-hero h1 span {
  color: #4caf50;
}
.contact-map {
  margin: 0 auto 40px auto;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.contact-info-form {
  max-width: 1100px;
  margin: 0 auto 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 40px 32px 32px 32px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  background: #f3f7f4;
  border-radius: 10px;
  padding: 18px 20px;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  margin: 0 18px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0;
}
.contact-info-card h3 {
  margin: 0 0 6px 0;
  color: #1a3c34;
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-info-card p {
  margin: 0;
  color: #444;
  font-size: 1rem;
}
.contact-form-modern {
  background: #fff;
  border-radius: 10px;
  padding: 24px 0 0 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
}
.form-row input,
.form-row textarea {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  background: #f8f9fa;
  color: #222;
  transition: border 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  border: 1.5px solid #4caf50;
  outline: none;
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-modern button {
  align-self: flex-start;
  padding: 12px 32px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.contact-form-modern button:hover {
  background: #1a3c34;
}
@media (max-width: 900px) {
  .contact-info-form {
    padding: 24px 6vw 24px 6vw;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }
  .contact-info-form {
    padding: 12px 2vw 12px 2vw;
  }
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}
/* Terms of Use */
.terms-hero {
  background: #f8f9fa;
  padding: 60px 0 20px 0;
  text-align: center;
}
.terms-hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.terms-hero-subtitle {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.terms-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c34;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.terms-content {
  max-width: 900px;
  margin: 0 auto 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 48px 36px;
}
.terms-title {
  font-size: 2rem;
  color: #1a3c34;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.terms-content h3 {
  color: #4caf50;
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
.terms-content h4 {
  color: #1a3c34;
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}
.terms-content p {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}
@media (max-width: 900px) {
  .terms-content {
    padding: 32px 10px;
  }
}
@media (max-width: 600px) {
  .terms-hero h1 {
    font-size: 1.5rem;
  }
  .terms-content {
    padding: 18px 2vw;
  }
  .terms-title {
    font-size: 1.2rem;
  }
}
</pre></body></html>