/* Base Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #25d366, #20b358);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  text-align: center;
  color: white;
}

.leaf-loader {
  font-size: 60px;
  animation: leafSpin 2s infinite linear;
}

.loading-text {
  font-size: 18px;
  margin-top: 20px;
  animation: pulse 1.5s infinite;
}

@keyframes leafSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Particles Background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  animation: float 6s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
  animation-duration: 9s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: linear-gradient(135deg, #25d366, #20b358);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
}

.nav-link {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001; /* Ensure it's above nav when active */
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Animation Classes */
.animate-slide-down {
  animation: slideDown 0.8s ease-out;
}

.animate-bounce-in {
  animation: bounceIn 1s ease-out;
}

.animate-fade-in {
  animation: fadeIn 1.2s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

.animate-float {
  animation: floatAnimation 3s ease-in-out infinite;
}

/* Delay Classes */
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

/* Keyframe Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #dfffe0, #c8f7c5);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #25d366, #20b358);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typing Animation */
.typing-animation {
  overflow: hidden;
  border-right: 3px solid #25d366;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #25d366;
  }
}

/* Stats Counter */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: #25d366;
  display: block;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #25d366;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Slider Enhancements */
.slider {
  overflow: hidden;
  width: 90%;
  margin: 30px auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 12s infinite;
}

.slide {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@keyframes slide {
  0% {
    margin-left: 0;
  }
  33% {
    margin-left: 0;
  }
  36% {
    margin-left: -100%;
  }
  66% {
    margin-left: -100%;
  }
  69% {
    margin-left: -200%;
  }
  99% {
    margin-left: -200%;
  }
  100% {
    margin-left: 0;
  }
}

/* Section Styling */
.section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #25d366, #20b358);
  border-radius: 2px;
}

/* Product Grid Enhancements */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  border: none;
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
  transition: left 0.5s ease;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.2);
}

/* Product Slider Enhancements */
.product-slider {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.product-slides {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 15px;
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0.8);
}

.product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Button Animations */
.pulse-btn {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(37, 211, 102, 0.9);
  color: white;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #25d366;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 15px;
}
.next-btn {
  right: 15px;
}

/* Dots Animation */
.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background-color: #25d366;
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Price Tag Animation */
.price-tag {
  font-size: 20px;
  color: #25d366;
  font-weight: bold;
  margin: 15px 0;
  position: relative;
  display: inline-block;
}

.price-tag::before {
  content: "💰";
  position: absolute;
  left: -25px;
  animation: coinFlip 2s infinite;
}

@keyframes coinFlip {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}

/* Ripple Effect for Buttons */
.ripple-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #25d366, #20b358);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ripple-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.ripple-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
}

.ripple-btn:active::before {
  width: 300px;
  height: 300px;
}

/* Form Animations */
.animated-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin: 30px 0;
}

.form-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #25d366;
}

.form-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #25d366, #20b358);
  transition: width 0.3s ease;
}

.form-input:focus + .form-bar {
  width: 100%;
}

.submit-btn {
  background: linear-gradient(45deg, #25d366, #20b358);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Contact Section */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.contact-icon {
  font-size: 24px;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* WhatsApp Float Enhancement */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #25d366, #20b358);
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  font-size: 20px;
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: #20b358;
  transform: translateY(-3px);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
  border-top: 3px solid #25d366;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav {
    display: none; /* Hide nav by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #25d366, #20b358);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }

  nav.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    margin: 10px 0;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
  }

  .nav-link::after {
    display: none; /* Hide underline on mobile nav */
  }

  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }

  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .stats-container {
    gap: 20px;
  }
  .stat-item {
    min-width: 100px;
    padding: 15px;
  }
  .counter {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
    max-width: 350px;
  }
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  .scroll-top-btn {
    bottom: 80px;
    right: 20px;
  }

  /* About Section Images */
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-image-grid {
    height: auto; /* Allow height to adjust */
    grid-template-columns: 1fr; /* Stack images vertically */
    grid-template-rows: auto auto auto; /* Adjust rows for stacked images */
  }

  .main-img {
    grid-row: auto;
    grid-column: auto;
  }

  .small-img {
    grid-column: auto;
  }

  /* Reviews Section */
  .review-card {
    padding: 30px 20px;
    margin: 10px;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .customer-photo {
    width: 60px;
    height: 60px;
  }

  .review-navigation {
    position: static;
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
  }

  .prev-review,
  .next-review {
    margin: 0;
    position: static;
  }

  .review-stats {
    gap: 30px;
  }

  .stat-box {
    min-width: 120px;
    padding: 20px 15px;
  }

  .stat-box .stat-number {
    font-size: 28px;
  }

  /* Why Microgreens Page Specific */
  .microgreens-explanation {
    flex-direction: column;
    gap: 40px;
  }

  .variety-showcase {
    flex-direction: column !important;
    margin-bottom: 50px;
  }

  .variety-showcase:nth-child(even) {
    flex-direction: column !important;
  }

  .variety-image {
    min-height: 250px;
  }

  .variety-content {
    padding: 30px 25px;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat {
    min-width: 120px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 200px;
  }

  .health-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .comparison-chart {
    padding: 30px 20px;
  }

  .chart-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-post {
    flex-direction: column !important;
    margin-bottom: 50px;
  }

  .blog-post:nth-child(even) {
    flex-direction: column !important;
  }

  .blog-image {
    min-height: 250px;
  }

  .blog-content {
    padding: 30px 25px;
  }

  .blog-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .typing-animation {
    font-size: 24px;
  }
  .stat-item {
    min-width: 100px;
  }
  .feature-card {
    padding: 20px;
  }
  .slider-btn {
    padding: 8px 10px;
    font-size: 14px;
  }
  .section-title {
    font-size: 30px;
  }
  .product-card {
    padding: 20px;
  }
  .price-tag {
    font-size: 18px;
  }
  .submit-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  .contact-item {
    padding: 15px;
    gap: 10px;
  }
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 14px;
  }
  .whatsapp-icon {
    font-size: 18px;
  }
  .scroll-top-btn {
    bottom: 70px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  /* Why Microgreens Page Specific */
  .microgreens-hero {
    padding: 80px 5% 60px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .variety-content h3 {
    font-size: 22px;
  }

  .point-item {
    padding: 15px;
  }

  .point-icon {
    font-size: 24px;
  }

  .blog-title {
    font-size: 26px;
  }

  .benefit-icon {
    font-size: 48px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .chart-title {
    font-size: 22px;
  }

  .slide-overlay h3 {
    font-size: 20px;
  }

  .slide-overlay p {
    font-size: 14px;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 150px 150px;
    height: auto;
  }

  .main-img {
    grid-row: 1;
    grid-column: 1;
  }

  .review-card {
    padding: 25px 15px;
  }

  .customer-info h4 {
    font-size: 18px;
  }

  .review-content p {
    font-size: 15px;
  }
}

/* Slide Overlay Styles */
.slide {
  position: relative;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.slide-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.slide-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* About Section Images */
.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-images {
  flex: 1;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 400px;
}

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

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

.main-img {
  grid-row: 1 / 3;
}

.small-img {
  grid-column: 2;
}

/* Customer Reviews Section */
#reviews {
  background: linear-gradient(135deg, #f8fff8, #e8f5e8);
  padding: 100px 5% 80px;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.review-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.review-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 20px;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: rgba(37, 211, 102, 0.1);
  font-family: serif;
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.customer-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #25d366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.customer-info h4 {
  margin: 0 0 5px 0;
  font-size: 20px;
  color: #333;
}

.customer-location {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 14px;
}

.rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 18px;
  color: #ffd700;
  animation: starTwinkle 2s infinite;
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.review-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.review-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #e8f5e8;
  color: #25d366;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* Review Navigation */
.review-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.review-btn {
  background: rgba(37, 211, 102, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.review-btn:hover {
  background: #25d366;
  transform: scale(1.1);
}

.prev-review {
  margin-left: -25px;
}

.next-review {
  margin-right: -25px;
}

/* Review Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: #25d366;
  transform: scale(1.2);
}

.review-dot:hover {
  background: #25d366;
  transform: scale(1.1);
}

/* Review Stats */
.review-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #25d366;
  display: block;
  margin-bottom: 10px;
}

.stat-box p {
  margin: 0;
  color: #666;
  font-weight: 500;
}

/* Why Microgreens Page Styles */
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
}

/* Microgreens Hero Section */
.microgreens-hero {
  background: linear-gradient(135deg, #25d366, #20b358);
  color: white;
  padding: 120px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.microgreens-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 20px;
  margin: 20px 0 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  min-width: 150px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

/* What Are Microgreens Section */
.what-are-microgreens {
  background: #f8fff8;
}

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

.microgreens-explanation {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.explanation-content {
  flex: 1;
}

.intro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

.key-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.point-item:hover {
  transform: translateX(10px);
}

.point-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.point-item h4 {
  margin: 0 0 8px 0;
  color: #25d366;
  font-size: 18px;
}

.point-item p {
  margin: 0;
  color: #666;
}

.explanation-image {
  flex: 1;
  text-align: center;
}

.feature-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.05);
}

.image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
}

/* Health Benefits Overview */
.health-benefits-overview {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefit-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}

/* Microgreens Varieties */
.microgreens-varieties {
  background: #f8fff8;
}

.variety-showcase {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.variety-showcase:hover {
  transform: translateY(-10px);
}

.variety-showcase:nth-child(even) {
  flex-direction: row-reverse;
}

.variety-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

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

.variety-showcase:hover .variety-img {
  transform: scale(1.1);
}

.variety-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(37, 211, 102, 0.8), rgba(32, 179, 88, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.variety-showcase:hover .variety-overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.variety-content {
  flex: 1.2;
  padding: 40px;
}

.variety-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.variety-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.variety-tag {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.variety-tag.protein {
  background: #e3f2fd;
  color: #1976d2;
}
.variety-tag.fresh {
  background: #e8f5e8;
  color: #25d366;
}
.variety-tag.detox {
  background: #fff3e0;
  color: #f57c00;
}
.variety-tag.spicy {
  background: #ffebee;
  color: #d32f2f;
}
.variety-tag.iron {
  background: #fce4ec;
  color: #c2185b;
}
.variety-tag.energy {
  background: #f3e5f5;
  color: #7b1fa2;
}
.variety-tag.anticancer {
  background: #e0f2f1;
  color: #00695c;
}
.variety-tag.superfood {
  background: #fff8e1;
  color: #f57f17;
}

.variety-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.nutrition-section,
.health-benefits-section,
.usage-section {
  margin-bottom: 25px;
}

.nutrition-section h4,
.health-benefits-section h4,
.usage-section h4 {
  color: #25d366;
  margin-bottom: 15px;
  font-size: 16px;
}

.nutrient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nutrient-tag {
  background: #f0f8f0;
  color: #25d366;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

/* Nutrition Comparison */
.nutrition-comparison {
  background: white;
}

.comparison-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

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

.chart-item {
  background: #f8fff8;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.chart-item h4 {
  margin-bottom: 25px;
  color: #333;
  font-size: 20px;
}

.chart-visual {
  margin-bottom: 20px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bar {
  height: 50px;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all 0.8s ease;
}

.microgreen-bar {
  background: linear-gradient(45deg, #25d366, #20b358);
  color: white;
  width: 100%;
}

.mature-bar {
  background: linear-gradient(45deg, #ffa500, #ff8c00);
  color: white;
  width: 30%;
}

.bar-label {
  font-weight: bold;
}

.bar-value {
  font-weight: bold;
  font-size: 18px;
}

.chart-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* How to Use Section */
.how-to-use {
  background: #f8fff8;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.usage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.usage-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.usage-card h3 {
  color: #333;
  margin-bottom: 15px;
}

.usage-card p {
  color: #666;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #25d366, #20b358);
  color: white;
  text-align: center;
  padding: 80px 5%;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: white;
  color: #25d366;
}

.cta-btn.primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #25d366;
  transform: translateY(-2px);
}

/* Additional variety tags for new microgreens */
.variety-tag.immune {
  background: #e1f5fe;
  color: #0277bd;
}

.variety-tag.sweet {
  background: #fce4ec;
  color: #ad1457;
}
