/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar Styles */
nav {
  background-color: #126945;
  padding: 15px 0;
  color: white;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: inline-block;
}
nav a:hover {
  text-decoration: underline;
  text-decoration-color: #c2d973;
  text-decoration-thickness: 2px;
}

.navbar {
  background-color: #126945;
  padding: 15px 0;
}

.navbar-brand {
  color: white;
  font-weight: bold;
  padding: 0 20px;
}

.navbar-brand:hover {
  color: #c2d973;
}

.navbar .nav-link {
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 20px;
}

.navbar .nav-link:hover {
  color: white;
  text-decoration: underline;
  text-decoration-color: #c2d973;
  text-decoration-thickness: 2px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("components/High qulity New seeds_20250523_203336_0000.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #228b22;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1a6b1a;
}

/* About Section */
.about {
  padding: 80px 20px;
  background-color: #fff;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.feature {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: #228b22;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px 0;
}

.contact-info div {
  margin: 20px;
}

.contact-info i {
  font-size: 1.5rem;
  color: #228b22;
  margin-bottom: 10px;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #228b22;
  color: white;
  margin: 0 10px;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #1d1b1b !important;
  color: white !important;
  padding: 60px 20px 30px !important;
  width: 100% !important;
  margin-top: auto !important;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.footer-section p {
  line-height: 1.6;
  font-size: 14px;
  color: #ddd;
}

.contact-info i {
  color: #57e957;
  margin-right: 10px;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  display: inline-block;
  background-color: #444;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  transition: background 0.3s ease;
}
.social-icons a:hover {
  background-color: #57e957;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature {
    min-width: 100%;
  }

  .contact-info div {
    width: 100%;
  }
}
