
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }

    header {
      background:#2E8B57;
      color: white;
      padding: 1px;
      display: flex;
      gap:100px;
    }
    header p{
      text-align: center;
      margin-left: 250px;
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      background: #2E8B57;
      flex-wrap: wrap;
    }

    nav ul li {
      margin: 0.5rem;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
    }

    nav ul li a:hover {
      background: green;
      border-radius: 5px;
    }

    section {
      padding: 2rem;
    }
    /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e8b57;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2e8b57;
}

/* Hero / Home Section */
.home-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('./images/pexels-nc-farm-bureau-mark-2253583\ \(2\).jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 20px 100px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.home-content {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.home-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f4d03f;
}

.home-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fdfefe;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #2e8b57;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #246b45;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .home-content h2 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 15px 20px;
  background-color: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 40px;
  border-radius: 2px solid green;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.about-text p {
  margin-bottom: 15px;
}

.about-text strong {
  color: #2e8b57;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 100%;
  }
}

.about-image {
  flex: 1;
  min-width: 280px;
  animation: zoomIn 1s ease-in-out forwards;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Zoom animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.about-text {
  flex: 1;
  min-width: 280px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-text p {
  margin-bottom: 15px;
}

.about-text strong {
  color: #2e8b57;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-image, .about-text {
    width: 100%;
  }
}

.about-image {
  flex: 1;
  min-width: 280px;
  animation: zoomIn 1s ease-in-out forwards;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Zoom animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.about-text {
  flex: 1;
  min-width: 280px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-text p {
  margin-bottom: 15px;
}

.about-text strong {
  color: #2e8b57;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-image, .about-text {
    width: 100%;
  }
}
/* Section Headings */
section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2e8b57;
  margin-bottom: 40px;
}

/* Products Section */
.products-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.product-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-details {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.product-details strong {
  color: #2e8b57;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.product-image {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1s ease-in-out;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-info {
  flex: 1;
  min-width: 300px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.product-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
}

.product-info strong {
  color: #2e8b57;
  margin-right: 8px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .products-container {
    flex-direction: column;
    text-align: center;
  }

  .product-info p {
    justify-content: center;
  }
}






/* Contact Section */
.contact-section {
  padding: 5px 20px;
  background-color: #f1f8f5;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.contact-info i {
  color: #2e8b57;
  margin-right: 10px;
}

.contact-info a {
  color: #2e8b57;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 280px;

  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #2e8b57;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button i {
  margin-right: 8px;
}

.contact-form button:hover {
  background-color: #246b45;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-info, .contact-form {
    width: 100%;
  }

  .contact-form label {
    text-align: left;
  }
}
.contact-info {
  background-color: #f1fdf3;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 30px auto;
  font-size: 1.1rem;
  color: #333;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2e8b57;
  font-size: 26px;
}

.contact-info p {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #2e8b57;
  margin-right: 10px;
  font-size: 18px;
  width: 25px;
  text-align: center;
}

.contact-info a {
  color: #2e8b57;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-form {
  background-color: #f1fdf3;
  padding: -60px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 40px auto;
  font-size: 1.1rem;
  color: #333;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2e8b57;
  font-size: 26px;
}

.contact-form label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2e8b57;
}

.contact-form label i {
  margin-right: 10px;
  font-size: 18px;
  width: 25px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  background-color: #2e8b57;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #246c45;
}






/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-container a {
  color: #2e8b57;
  text-decoration: none;
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #2e8b57;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #246b45;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #2e8b57;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .products-container {
    flex-direction: column;
    text-align: center;
  }

  .product-details {
    font-size: 1rem;
  }

  .contact-container {
    padding: 0 10px;
  }
}

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      transition: transform 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    
    .whatsapp-float img {
      width: 55px;
      height: 55px;
    }