
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f4fff9;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  user-select: none;
}
html {
  scroll-behavior: smooth;
}


a {
  text-decoration: none;
  color: #2e8b57;
  transition: 0.3s;
}
a:hover {
  color: #216c43;
}

#about, #products, #services, #faq, #contact {
  scroll-margin-top: 100px;
}


/* === Navbar === */
/* Navbar Styles */
#nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e8f5e9; /* light green or your preferred color */
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Background for loader screen */
.loader-screen {
background-image: radial-gradient(
  circle at center,
  #e0f8e9 0%,
  #b4f1cc 40%,
  #8fe9b2 100%
);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Loader ring style */
.loader {
  width: 64px;
  height: 64px;
  position: relative;
  perspective: 800px;
  margin-bottom: 30px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inner.one {
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #4caf50; /* dark green */
}
.inner.two {
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #388e3c; /* forest green */
}
.inner.three {
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #2e7d32; /* deep green */
}


/* Welcome Text */
.loader-text {
  font-family: 'Playfair Display', serif;
  color: #1b5e20; /* rich contrast green */
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  animation: fadein 2s ease-in-out;
}


/* Animation keyframes */
@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 500px) {
  .loader {
    width: 48px;
    height: 48px;
  }

  .loader-text {
    font-size: 1.2rem;
    top: 56%;
  }
}

#nav-logo img {
  height: 40px;
  width: auto;
}

#nav-logo h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0d7a4c; /* darker green tone */
  margin: 0;
}

/* === Menu Icon (desktop hidden by default) === */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 25px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #2e8b57;
  border-radius: 3px;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* === Open (X) Animation === */
.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* === Nav Links === */
#nav-text {
  display: flex;
  gap: 2rem;
  align-items: center;
}

#nav-text a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: #2e8b57;
  text-decoration: none;
  transition: 0.3s ease;
}

#nav-text a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #2e8b57;
  transition: 0.3s ease;
}
#nav-text a:hover::after {
  width: 100%;
}

/* === Hero Section === */
.hero-section {
  padding: 7rem 2rem 4rem;
  background: linear-gradient(to right, #dffbe9, #f4fff9);
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  color: #2e8b57;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #333;
}

.primary-btn {
  padding: 0.8rem 2rem;
  background-color: #2e8b57;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #216c43;
}

/* === Section Content === */
.section-content-products{
  padding: 5rem 2rem;
  max-width: 100%;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  background-color: #e9ffef;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.section-content{
  padding: 5rem 2rem;
  max-width: 100%;
  margin: auto;
  text-align: center;
  background-color: #e9ffef;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-text {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  color: #444;
}

/* === Products === */
/* === Products === */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.product-card {
  background: #ffffff;
  border: 2px solid #a5e4b5;
  border: 4px solid #2e8b57;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1.2rem;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card h3 {
  color: #2e8b57;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 50px;
}

.buy-btn {
  background-color: #2e8b57;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
  max-width: 220px;
}

.buy-btn:hover {
  background-color: #1e6e45;
}
.product-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #f7fbff;
  padding: 0 0.1rem;
  margin-top: 10px;
  border-left: 4px solid #00ff15;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  text-align: center;
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #25D366;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: -0.5rem;
}

.whatsapp-link:hover {
  text-decoration: underline;
  color: #128C7E;
}

.whatsapp-icon {
  width: 16px;   /* ✅ smaller width */
  height: 16px;  /* ✅ smaller height */
  object-fit: contain;
}

.product-details.active {
  opacity: 1;
  padding: 0.1rem;
}

.product-details p {
  margin: 0.3rem 0;
  color: #333;
  font-size: 0.95rem;
}

/* === Services === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: #ffffff;
  border: 2px solid #b3f5d3;
  border-left: 8px solid #009f63;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.service-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: #009f63;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.service-card p {
  font-size: 1rem;
  color: #555;
}

/* === About Section === */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: #2e8b57;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}
.image-wrapper img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.experience-badge {
  position: absolute;
  top: -35px;
  right: -25px;
  width: 80px;
  height: 80px;
  background-color: #2e8b57;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 6px;
  line-height: 1.2;
  box-sizing: border-box;
  z-index: 2;
}
.experience-badge span {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* === FAQ === */
/* === Green-Themed Bootstrap Accordion === */
.accordion {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c4f4d9;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-header {
  background-color: transparent;
}

.accordion-button {
  background-color: #e0f9ec;
  color: #22994f;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #d0f2e0;
  color: #1a6e3a;
}

.accordion-body {
  background-color: #f6fff9;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  border-top: 1px solid #d9f5e4;
}

/* === Contact === */
.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  background: #ccf9e6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2e8b57;
  outline: none;
}
.contact-form button {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  background-color: #2e8b57;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #216c43;
}
/* === Steps Section === */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1000px;
  margin: auto;
  padding: 0 1rem;
}

.step {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #2e8b57;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-4px);
}

.step img {
  width: 280px;
  height: auto; /* Let image maintain aspect ratio */
  max-height: 200px; /* Optional: prevents extremely tall images */
  border-radius: 10px;
  object-fit: contain; /* Avoid cropping important content */
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-text {
  flex: 1;
  min-width: 250px;
}

.step-text h3 {
  color: #2e8b57;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* === Footer === */
.footer {
  background-color: #2e8b57;
  color: #ffffff;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
  margin-top: 100px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.footer-left,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer p,
.footer a,
.footer li {
  color: #e0f7eb;
  line-height: 1.6;
  text-decoration: none;
  list-style: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  font-size: 0.85rem;
}


/* Mobile responsive footer */
/* === Footer Mobile: horizontal scroll layout === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    justify-content: flex-start;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .footer-left,
  .footer-links,
  .footer-contact {
    flex: 0 0 80vw;
    min-width: 250px;
    scroll-snap-align: start;
  }

  .footer-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile */
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}


/*sco*/
.seo-keywords {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(to right, #e7fff0, #d6ffe9); /* light green gradient */
  font-size: 1rem;
  color: #1a3f2b;
  line-height: 1.8;
  border-top: 2px solid #b2f5d4;
  border-bottom: 2px solid #b2f5d4;
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .seo-keywords {
    padding: 2rem 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 40px 1rem;
  }
}


/* === Mobile Styles === */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto; /* ✅ centers image horizontally */
  }

  .step-text {
    width: 100%;
  }

  .step-text h3 {
    font-size: 1.3rem;
  }

  .step-text p {
    font-size: 1rem;
  }
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  #nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  #nav-text {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #e4fbe8;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 2rem;
    display: none;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step img {
    width: 100%;
  } 
.menu-icon {
  display: flex;
  margin-left: auto;           /* Pushes it to right */
  margin-right: 1rem;          /* Optional spacing */
  margin-top: -34px;           /* Your existing style */
  align-self: center;
}

  #nav-text.show {
    display: flex;
  }

  #nav-text a {
    opacity: 0;
    transform: translateX(50px);
  }

  #nav-text.show a {
    animation: fadeInRight 0.4s forwards;
  }

  #nav-text.show a:nth-child(1) { animation-delay: 0.1s; }
  #nav-text.show a:nth-child(2) { animation-delay: 0.2s; }
  #nav-text.show a:nth-child(3) { animation-delay: 0.3s; }
  #nav-text.show a:nth-child(4) { animation-delay: 0.4s; }
  #nav-text.show a:nth-child(5) { animation-delay: 0.5s; }
  #nav-text.show a:nth-child(6) { animation-delay: 0.6s; }

  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .menu-icon {
    display: flex;
  }

  .products-grid,
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .product-card,
  .service-card {
    width: 100%;
    max-width: 320px;
    padding: 1rem;
  }

  .hero-section {
    padding: 5rem 1rem 3rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .section-content {
    padding: 3rem 1rem;
  }

  .about-section {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .experience-badge {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
    top: -20px;
    right: -10px;
  }
  
}