* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  padding-top: 80px; /* Give space for fixed header */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  z-index: 10000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a.active {
  color: green;
}

.cart-login {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart {
  display: flex;
  align-items: center;
  gap: 5px;
  color: green;
  font-weight: bold;
}

.badge {
  background-color: green;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 3px 6px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px; /* below fixed header */
    left: 0;
    background-color: white;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
    z-index: 9999;
    border-top: 1px solid #ccc;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cart-login {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

/* HERO SECTION  */
  
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 90%;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    height: 60vh; /* Reduced height for mobile */
  }

  .slide {
    height: 60vh; /* Make sure slides match */
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .overlay {
    left: 5%;
    bottom: 15%;
  }
}
@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

    
    /* ABOUT  */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
    }
    
    .about-section {
      display: flex;
      flex-wrap: wrap;
      padding: 40px 20px;
      gap: 30px;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: auto;
    }
    
    .about-images {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .about-images img {
      width: 240px;
      border-radius: 20px;
      object-fit: cover;
    }
    
    .about-content {
      max-width: 600px;
    }
    
    .about-content h2 {
      font-size: 28px;
      color: #000;
      margin-bottom: 15px;
    }
    
    .about-content p {
      font-size: 16px;
      color: #333;
      line-height: 1.7;
      margin-bottom: 15px;
    }
    
    .highlight {
      color: #81c784;
      font-weight: 600;
    }
    
    .highlight-green {
      color: #66bb6a;
      font-weight: 600;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: black;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s ease;
    }
    
    .btn:hover {
      background-color: #444;
    }
    
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
    
      .about-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }
    
      .about-images img {
        width: 45%;
      }
    
      .about-content h2 {
        font-size: 22px;
      }
    
      .about-content p {
        font-size: 15px;
      }
    }
  
    /* urban farming  */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
    }
    
    .product-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }
    
    .product-section h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #222;
      position: relative;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      justify-items: center;
    }
    
    .product-card {
      text-decoration: none;
      color: #000;
      background-color: #f9f9f9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: 100%;
      max-width: 280px;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    
    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    
    .product-card h3 {
      font-size: 16px;
      margin: 12px 12px 6px;
    }
    
    .product-card p {
      font-size: 15px;
      font-weight: bold;
      margin: 0 0 12px;
      color: #444;
    }
    
    /* Portfolio Section */
.portfolio-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio-item {
  background-color: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-content {
  padding: 16px;
}

.portfolio-content h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #222222;
}

.portfolio-content p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #666666;
}

/* #why choose us  */
.why-choose-us {
  background-color: #2e7d32; /* Deep organic green */
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  width: 250px;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
  filter: invert(100%);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0f2f1;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}

/* #contact form  */
.contact-section {
  padding: 50px 20px;
  background-color: #f1f8e9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #1b5e20;
}

/* #channel partner  */
.channel-partner-section {
  background-color: #e8f5e9; /* light green background */
  padding: 60px 20px;
  text-align: center;
}

.channel-partner-section h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.channel-partner-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

.partner-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit img {
  width: 50px;
  margin-bottom: 15px;
}

.benefit h4 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 1rem;
  color: #555;
}

.become-partner-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background-color: #2e7d32;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.become-partner-btn:hover {
  background-color: #1b5e20;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-benefits {
    flex-direction: column;
    align-items: center;
  }
}

/* #blog  */
.blog-section {
  background-color: #f1f8e9;
  padding: 60px 20px;
  text-align: center;
}

.blog-section h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.blog-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  width: 1200px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h4 {
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 8px;
}

.blog-content .date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
  }
}

  /* #FOOTER  */
  footer {
    background: #0e3c0e;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px; /* Added extra bottom padding to prevent overlap */
    /* background: url('RITIKSINGH/SHUBHFOOTER.png') repeat-x bottom; */
    background-color: #0e3c0e;
    color: black;
  }
  
  .footer-section {
    flex: 1;
    min-width: 280px;
    margin: 20px;
    text-align: center; /* Ensures everything is center-aligned */
  }
  
  .footer-section h2 {
    color: #3aa648;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 14px;
    color: #fefefe;
    text-decoration: none;
    line-height: 1.6;
    display: block;
  }
  
  .footer-section a:hover {
    color: #3aa648;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 15px;
    background: #0e3c0e;
    color: white;
    font-size: 14px;
  }
  
  .footer-bottom a {
    color: #3aa648;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px 120px; /* Adjusted for mobile overlap fix */
    }
  
    .footer-section {
      margin: 10px 0;
    }
  
    .social-icons {
      justify-content: center;
      display: flex;
      flex-wrap: wrap;
    }
  }
 /* #services section   */
 .services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f6f9f4;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2e7d32;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #388e3c;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}

 