* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  user-select: none;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  font-size: 18px;
}

/*----------Header----------*/

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgb(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left img {
  width: 160px;
}

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

.header-right nav a {
  color: green;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.4s ease;
}

.header-right nav a:hover {
  color: red;
}

@media screen and (max-width: 800px) {
  .header-container {
    align-items: center;
  }

  .header-right nav ul {
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    align-items: center;
  }
}

/* Hamburger icon */
.mobile-menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: green;
}

/* Mobile menu */
.mobile-nav {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  /* keep flex so layout is consistent */
  flex-direction: column;
  background: rgba(255, 255, 255);
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  z-index: 9998;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
}

.mobile-nav ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: green;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.mobile-nav ul li a:hover {
  color: red;
}

/* Show hamburger and hide desktop nav on small screens */
@media screen and (max-width: 800px) {
  .header-right {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}

/*----------Hero Section----------*/
.hero {
  width: 100%;
  height: 100vh;
  text-align: center;
  color: #ccc;
  position: relative;
  text-transform: uppercase;
}

.hero-one {
  top: 0;
  position: absolute;
  width: 60%;
  height: 100vh;
  clip-path: polygon(0% 0%, 100% 0%, 66% 100%, 0% 100%);
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/banner/h1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-two {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url(images/banner/h2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-primary {
  font-size: 66px;
  display: block;
  font-weight: 700;
  color: greenyellow;
}

.hero-sub {
  color: orange;
}

.hero-title p {
  text-transform: none;
}

@media screen and (max-width: 800px) {
  .hero-center {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hero-one {
    width: 100%;
    clip-path: none;
  }

  .hero-two {
    display: none;
  }

  .hero-title {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-primary {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-title p {
    font-size: 16px;
  }
}

/*----------Why Organics? Section----------*/
.why-organics {
  padding: 120px 80px;
  line-height: 1.6;
}

.wo-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wo-split .text-content {
  flex: 1;
  min-width: 300px;
}

.wo-split .image-content {
  flex: 1;
  min-width: 300px;
}

.wo-split img {
  width: 100%;
  border-radius: 10px;
}

.list-content {
  padding-top: 10px;
  display: flex;
  align-items: center;
  text-align: justify;
}

.wo-title {
  font-size: 2rem;
  color: green;
  margin-bottom: 1rem;
  font-style: bold;
}

.wo-description {
  font-size: 18px;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  .wo-split {
    flex-direction: column;
    align-items: center;
  }

  .wo-split .text-content,
  .wo-split .image-content {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .wo-split {
    padding: 40px;
  }

  .wo-split .text-content,
  .wo-split .image-content {
    width: 100%;
    text-align: center;
  }
}

/* Product Categories */

.product-categories {
  background-color: rgb(194, 255, 186);
  padding: 120px 80px;
  line-height: 1.6;
}

.product-text {
  text-align: center;
  margin-bottom: 2rem;
}

.product-text h1 {
  text-align: center;
  font-size: 2rem;
  color: green;
}

.product-text p {
  text-align: center;
}

.product-categories .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  width: 280px;
  min-height: 480px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: 0.6s;
  background-color: rgb(255, 248, 151);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.card i {
  color: green;
  font-size: 60px;
}

.card h3 {
  font-size: 1.4rem;
  margin: 0.8rem 0 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

.card ul {
  text-align: left;
  padding-top: 20px;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgb(0, 89, 255);
}

@media screen and (max-width: 1200px) {
  .product-categories {
    padding: 40px;
  }
}

/* Footer */
footer {
  background: rgb(3, 7, 18);
  color: rgb(156, 163, 175);
  padding: 3rem 1rem 2rem;
}

.footer-container {
  max-width: 1600px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-about {
  flex: 1 1 400px;
  max-width: 480px;
}

.footer-about img {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: green;
}

.footer-title {
  font-size: 20px;
  color: green;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-links,
.footer-categories,
.footer-contact {
  flex: 1 1 200px;
  max-width: 280px;
}

.footer-links ul,
.footer-categories ul {
  list-style: none;
  color: whitesmoke;
  text-decoration: none;
}

.footer-links a,
.footer-categories a,
.footer-contact a {
  text-decoration: none;
  color: whitesmoke;
  transition: all 0.4s ease;
}

.footer-links a:hover,
.footer-categories a:hover {
  color: red;
  padding-left: 8px;
}

.footer-contact a:hover {
  color: red;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 14px;
}

.footer-bottom p {
  color: #ccc;
}

.footer-bottom a {
  color: #ff0000;
  text-decoration: none;
}

/*------------------SCROLL TO TOP BUTTON------------------*/

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  transition: all 0.2s ease-in-out;
  scroll-behavior: smooth;
  cursor: pointer;
}

#scroll-to-top.show {
  display: block;
}

/*-------------------About Us Page------------------*/

.about-us {
  margin-top: 100px;
  padding: 160px 80px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(222, 255, 218);
}

.about-us-container {
  text-align: center;
  width: 60%;
}

.about-us-title {
  font-size: 40px;
  color: green;
  margin-bottom: 1rem;
  text-align: center;
}

.about-us-description {
  font-size: 18px;
  color: #333;
}

@media screen and (max-width: 1200px) {
  .about-us {
    padding: 40px;
    height: 400px;
  }

  .about-us-container {
    width: 100%;
  }

  .about-us-title {
    font-size: 32px;
  }

  .about-us-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  .about-us-title {
    font-size: 32px;
  }

  .about-us-description {
    font-size: 16px;
  }
}

/*-------------------Mission and Vision Section------------------*/

.mission-vision {
  padding: 120px 80px;
  line-height: 1.6;
}

.mv-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.mv-split .mission-vision-content {
  flex: 1;
  min-width: 300px;
}

.mv-split .mv-image {
  flex: 1;
  min-width: 300px;
}

.mv-split img {
  width: 100%;
  border-radius: 10px;
}

.mission {
  padding: 40px;
}

.vision {
  padding: 40px;
}

.v-title {
  font-size: 28px;
  color: green;
  margin-bottom: 1rem;
  font-style: bold;
}

.v-description {
  font-size: 18px;
  text-align: justify;
}

.m-title {
  font-size: 28px;
  color: green;
  margin-bottom: 1rem;
  font-style: bold;
}

.m-description {
  font-size: 18px;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  .mission-vision {
    padding: 40px;
  }

  .mv-split {
    flex-direction: column;
    align-items: center;
  }

  .mv-split .mission-vision-content,
  .mv-split .mv-image {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .mission,
  .vision {
    padding: 20px;
  }

  .mv-split {
    padding: 40px;
  }

  .mv-split .mission-vision-content,
  .mv-split .mv-image {
    width: 100%;
    text-align: center;
  }
}

/*--------------------Values Section------------------*/

.values-section {
  padding: 120px 80px;
  line-height: 1.6;
  background-color: rgb(250, 250, 250);
}

.values-text {
  text-align: center;
  margin-bottom: 2rem;
}

.values-text h1 {
  text-align: center;
  font-size: 2rem;
  color: green;
  margin-bottom: 2rem;
}

.values-text p {
  text-align: center;
}

.values-categories .v-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.v-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  width: 280px;
  min-height: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.v-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: 0.6s;
  background-color: rgb(223, 255, 220);
  transform: translateY(-10px);
}

.v-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.v-card i {
  color: rgb(0, 132, 255);
  font-size: 60px;
}

.v-card h3 {
  font-size: 1.4rem;
  margin: 0.8rem 0 0.5rem;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.v-card p {
  font-size: 0.95rem;
  color: #444;
}

.v-card ul {
  list-style: none;
  padding-top: 20px;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgb(0, 89, 255);
}

@media screen and (max-width: 1200px) {
  .values-section {
    padding: 20px;
  }

  .values-categories {
    padding: 40px;
  }
}

/*--------------------Products Page------------------*/

#products {
  scroll-margin-top: 100px;
}

.products {
  margin-top: 100px;
  padding: 160px 80px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(222, 255, 218);
}

.products-container {
  text-align: center;
  width: 60%;
}

.products-title {
  font-size: 40px;
  color: green;
  margin-bottom: 1rem;
  text-align: center;
}

.products-description {
  font-size: 18px;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .products{
    padding: 40px;
    height: 400px;
  }
}

@media screen and (max-width: 800px) {
  .products-title {
    font-size: 32px;
  }

  .products-description {
    font-size: 16px;
  }
}

/*---------------------Products Info------------------*/

.products-info {
  padding: 20px 80px;
  line-height: 1.6;
}

/* Controls Section */
.controls-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Search Container */
.search-container {
  flex: 0 0 350px;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 28px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
  outline: none;
  border-color: #4a7c59;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
  transform: translateY(-1px);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
  color: #4a7c59;
}

/* Filter Container */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #4a7c59;
  color: #4a7c59;
}

.filter-btn.active {
  background: linear-gradient(135deg, #4a7c59, #2d5a27);
  color: white;
  border-color: #4a7c59;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.25);
}

/* Results Counter */
.results-counter {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #6b7280;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

/* Category-specific icon colors */
.category-microbial .badge.category {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-nutrition .badge.category {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.category-bio-stimulants .badge.category {
  background: linear-gradient(135deg, #10b981, #059669);
}

.category-specialty .badge.category {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.loading {
  animation: pulse 1s ease-in-out infinite;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Card Animation Classes */
.animate-card {
  animation: slideInUp 0.6s ease forwards;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Row-based animation delays */
.scroll-animate:nth-child(1),
.scroll-animate:nth-child(2),
.scroll-animate:nth-child(3) {
  transition-delay: 0.1s;
}
.scroll-animate:nth-child(4),
.scroll-animate:nth-child(5),
.scroll-animate:nth-child(6) {
  transition-delay: 0.2s;
}
.scroll-animate:nth-child(7),
.scroll-animate:nth-child(8),
.scroll-animate:nth-child(9) {
  transition-delay: 0.3s;
}
.scroll-animate:nth-child(10),
.scroll-animate:nth-child(11),
.scroll-animate:nth-child(12) {
  transition-delay: 0.4s;
}
.scroll-animate:nth-child(13),
.scroll-animate:nth-child(14),
.scroll-animate:nth-child(15) {
  transition-delay: 0.5s;
}
.scroll-animate:nth-child(16),
.scroll-animate:nth-child(17),
.scroll-animate:nth-child(18) {
  transition-delay: 0.6s;
}
.scroll-animate:nth-child(19),
.scroll-animate:nth-child(20),
.scroll-animate:nth-child(21) {
  transition-delay: 0.7s;
}
.scroll-animate:nth-child(22),
.scroll-animate:nth-child(23),
.scroll-animate:nth-child(24) {
  transition-delay: 0.8s;
}

/* Fade in animation for filtered results */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .controls-section {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: flex-start;
  }

  .search-container {
    flex: 1;
    max-width: none;
  }

  .filter-container {
    flex: 1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
  }

  .p-card {
    width: 340px !important;
  }
}

@media screen and (max-width: 860px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px;
  }
}

@media screen and (max-width: 480px) {
  .search-input {
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 380px) {
  .p-card {
    width: 260px !important;
  }
}

/*-----------------Products List----------------*/
.products-list {
  padding: 10px 120px;
  min-height: 1200px;
}

.no-results {
  display: none;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  color: #888;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.p-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.6s ease;
  display: flex;
  flex-direction: column;
  height: 600px;
  width: 400px;
}

.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.p-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, #4a7c59, #2d5a27);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.p-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  object-fit: cover;
}

.badge-group {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
}

.rating {
  font-size: 14px;
  margin: 6px 0;
  color: #666;
}

.description {
  font-size: 13px;
  color: #555;
  margin: 10px 0;
  line-height: 1.4;
}

.features {
  list-style: none;
  margin: 10px 0;
  font-size: 13px;
}

.features li {
  margin-bottom: 4px;
}

/* Buttons */
.buttons {
  margin-top: auto;
}

/* Side by side Contact + Button container */
.buttons.side-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  justify-content: space-between;
}

/* Contact for Price text styled as label */
.contact-price-text {
  font-size: 20px;
  font-weight: 600;
}

/* View Details button */
.btn.details {
  padding: 10px 18px;
  background-color: #55c459;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s ease;
}

.btn.details:hover {
  background-color: #388e3c;
}

@media screen and (max-width: 1200px) {
  .products-list {
    padding: 40px;
  }
}

/*-----------------Individual Products Page----------------*/

/*--Pagination--*/
.Pagination {
  padding: 140px 40px 0px 40px;
}

/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: green;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: red;
}

@media screen and (max-width: 600px) {
  .Pagination {
    padding: 140px 20px 0px 20px;
  }
}

/*--All Products Same Page--*/

.product_info-container {
  padding: 40px 120px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: #fcfcfc;
}

.product_info-image-content {
  flex: 0.6;
  max-width: 400px;
}

.product_info-container img {
  height: 400px;
  border-radius: 10px;
}

.product_info-text-content {
  flex: 1;
  max-width: 600px;
}

.product_info-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-style: bold;
}

.product_info-description {
  font-size: 18px;
  text-align: justify;
  padding-bottom: 20px;
}

.product_info-key_features {
  padding: 10px;
  border-radius: 10px;
}

.product_info-key_features h4 {
  color: green;
  font-size: 20px;
}

.product_info-list {
  padding-top: 10px;
  display: flex;
  align-items: center;
  text-align: justify;
}

.product_info-buttons {
  padding: 10px;
}

.product_info-button {
  background-color: #49aa4d;
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.4s ease;
  font-size: 20px;
  width: 180px;
}

.product_info-button:hover {
  background-color: #3d9140;
  color: white;
}

@media screen and (max-width: 1200px) {
  .product_info-container {
    flex-direction: column;
    align-items: center;
  }

  .product_info-text-content,
  .product_info-image-content {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .product_info-container {
    padding: 40px;
  }

  .product_info-text-content,
  .product_info-image-content {
    width: 100%;
    text-align: center;
  }

  .product_info-container img {
    width: 100%;
    height: auto;
  }
}

.product_extra_info {
  padding: 120px 80px;
}

.product_extra_info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.product_extra_info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  width: 320px;
  min-height: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: justify;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.product_extra_info-card i {
  color: green;
  font-size: 26px;
}

.product_extra_info-card h3 {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 24px;
}

.product_extra_info-list {
  padding-top: 20px;
  line-height: 1.6;
}

.product_extra_info-list-content {
  padding-top: 10px;
  display: flex;
  align-items: center;
  text-align: justify;
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .product_extra_info {
    padding: 20px;
    padding-bottom: 60px;
  }
}




/*-----------------Blog Page----------------*/
.blogs {
  margin-top: 100px;
  padding: 200px 80px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url(images/banner/h1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-container {
  text-align: center;
  color: white;
}

.coming-soon {
  font-size: 60px;
  font-weight: bold;
  background: linear-gradient(135deg, rgb(0, 255, 255), yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media screen and (max-width: 600px) {
  .blogs {
    padding: 20px;
    padding-bottom: 60px;
  }

  .coming-soon{
    font-size: 40px;
  }
  .blog-title{
    font-size: 28px;
  }
  .blog-description{
    font-size: 16px;
  }
}


/*-----------------Contact Us Page----------------*/

.c-page{
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url(images/banner/t.jpg);
      background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Contact Section */
.contact-section {
  margin-top: 100px;
  padding: 40px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

/* Contact Info */
.contact-info {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  height: fit-content;
}

.contact-info h3 {
  color: #2d6e3b;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item i {
  font-size: 1.5rem;
  color: #4a9960;
  margin-top: 0.2rem;
  min-width: 24px;
}

.info-item h4 {
  font-size: 1.1rem;
  color: #2d6e3b;
  margin-bottom: 0.3rem;
}

.info-item p {
  color: #7f8c8d;
  margin: 0;
}

/* WhatsApp Section */
.whatsapp-section {
  margin: 2rem 0;
  text-align: center;
  padding: 1.5rem;
  background: #e8f5ea;
  border-radius: 10px;
}

.whatsapp-section h4 {
  color: #2d6e3b;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20b558;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: #2d6e3b;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Google Forms Integration */
.google-form-container {
  width: 100%;
}

.form-instruction {
  background: #e8f5ea;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: #2d6e3b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.form-instruction i {
  color: #4a9960;
}

.google-form-iframe {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  min-height: 800px;
}

.form-fallback {
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.fallback-link {
  color: #4a9960;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.fallback-link:hover {
  color: #2d6e3b;
}

/*------------- Services Preview -------------*/
.services-preview {
  padding: 20px 180px 60px 180px;
}

.services-preview h3 {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.service-card {
  background: #e8f5ea;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #ff0000;
}

.service-card i {
  font-size: 3rem;
  color: #4a9960;
  margin-bottom: 1rem;
}

.service-card h4 {
  color: #2d6e3b;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #7f8c8d;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-preview{
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .contact-section{
    padding: 20px;
  }

  .contact-container{
    width: 88%;
    margin: 0;
    padding: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .google-form-iframe {
    height: 700px;
  }
}

@media (max-width: 480px) {
  .contact-info,
  .contact-form {
    width: fit-content;
    font-size: small;
  }

  .container {
    padding: 0 15px;
  }

  .services-preview h3 {
    font-size: 2rem;
  }

  .google-form-iframe {
    height: 600px;
  }
}
/* Social Media */
.social-media {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.social-media h4 {
  color: #2d6e3b;
}

.social-media .social-icons a:hover {
  color: rgb(255, 0, 0);
}

