/* Basic Reset */
body {
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 48px;
}

p {
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
  font-size: 15px;
  color: black;
}

/* Header Container */
.header {
  position: relative;
  text-align: center;
  background: #a9e5a1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Inner Header */
.inner-header {
  height: 35vh; /* Reduced height */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Banner Image */
.inner-header img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* Waves Styling */
.waves {
  position: relative;
  width: 100%;
  height: 7vh; /* Smaller wave height */
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

/* Wave Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* ✅ Mobile Responsive Tweaks */
@media (max-width: 768px) {
  .inner-header {
    height: 20vh; /* Smaller header height */
  }

  .waves {
    height: 25px;
    min-height: 25px;
  }

  .inner-header img {
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
}

 /* Navbar Styling */
.navbar {
  background-color: #71b637;
  transition: background-color 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand,
.nav-link {
  color: white !important;
}



/* Buy Button */
.buy-button {
  background-color: #ff4500;
  border: none;
  padding: 8px 18px;
  border-radius: 50px 25px 50px 25px;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s ease;
  
}

.buy-button:hover {
  background-color: #e03e00;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #71b637;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}

.read-more-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #71b637;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

.read-more-btn:hover {
  background-color: #5a9c2f;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

   .product-card {
         width: 250px;
         flex: 0 0 auto;
         transition: transform 0.3s ease-in-out;
         background: #fff;
         }
         .product-card:hover {
         transform: translateY(-5px);
         }
         .main-img {
         height: 180px;
         object-fit: cover;
         border-radius: 12px;
         transition: all 0.3s ease-in-out;
         }
         .thumbnail-group img.thumbnail-img {
         width: 40px;
         height: 40px;
         border-radius: 50%;
         border: 2px solid transparent;
         object-fit: cover;
         cursor: pointer;
         transition: border 0.3s;
         }
         .thumbnail-img:hover {
         border-color: #28a745;
         }
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.product-card {
  animation: slideIn 0.6s ease forwards;
}
 .why-section .why-feature {
         background: #ffffff;
         border-radius: 15px;
         box-shadow: 0 6px 25px rgba(0, 128, 0, 0.08);
         transition: all 0.3s ease;
         }
         .why-section .why-feature:hover {
         transform: translateY(-10px);
         box-shadow: 0 12px 30px rgba(0, 128, 0, 0.15);
         }
         .why-circle-icon {
         width: 80px;
         height: 80px;
         margin: 0 auto;
         background-color: #e6f4ea;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 32px;
         color: #198754;
         transition: background-color 0.3s ease;
         }
         .why-feature:hover .why-circle-icon {
         background-color: #ccebdd;
         }
		 
		  .testimonial-card {
         transition: all 0.3s ease-in-out;
         }
         .testimonial-card:hover {
         transform: translateY(-5px);
         box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
         }
         .testimonial-img {
         width: 70px;
         height: 70px;
         object-fit: cover;
         border-radius: 50%;
         border: 3px solid #198754;
         margin: 0 auto;
         }
         .quote-icon {
         font-size: 50px;
         line-height: 1;
         color: #198754;
         }
         .testimonial-text {
         font-style: italic;
         font-size: 1rem;
         color: #333;
         min-height: 80px;
         }
		 


    .footer-link:hover {
         text-decoration: underline;
         color: #ffd700 !important;
         }
         footer h5 {
         color: #fff;
         border-bottom: 2px solid #fff;
         display: inline-block;
         padding-bottom: 5px;
         }
         #backToTop {
         border-radius: 50%;
         width: 50px;
         height: 50px;
         font-size: 18px;
         box-shadow: 0 4px 10px rgba(0,0,0,0.3);
         }