/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
  color: #333;
  overflow-x: hidden;
} */

html, body {
  width: 100%;
  overflow-x: hidden;
}


/* Navigation */
nav {
  position: fixed;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 5%;
  background: linear-gradient(135deg, #1e3510 0%, #3a6c1c 100%);
}

.logo img {
  width: 70px;
  border-radius: 10%;
}

.logo:hover {
  transform: scale(1.05);
}

nav.scrolled .logo {
  color: #a8e063;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a8e063;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

nav.scrolled .nav-links a {
  color: rgb(255, 255, 255);
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(
      135deg,
      rgba(45, 80, 22, 0.2),
      rgba(74, 124, 44, 0.8)
    ),
    url("/farming.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(168, 224, 99, 0.2);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(86, 171, 47, 0.2);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  overflow: hidden;
}


.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 8px 25px rgba(168, 224, 99, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 224, 99, 0.5);
}

/* video section */

.about-content {
  flex-wrap: wrap;
}


/* Left video container */
.about-video {
  max-width: 60%;
  margin-left: 54px;
}


/* Portrait video */
.about-video video {
  width: 100%;
  aspect-ratio: 9 / 16; /* Portrait */
  object-fit: cover;
  border-radius: 12px;
}

/* Right content */
.about-text {
  flex: 1;
}

/* Section Styles */
section {
  padding: 5rem 5%;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
  position: relative;
  animation: fadeIn 1s ease;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease 0.2s both;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a8e063, #56ab2f);
  border-radius: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}
.product-card:nth-child(2) {
  animation-delay: 0.4s;
}
.product-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(86, 171, 47, 0.3);
}

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-image {
  overflow: hidden;
}

.product-image img {
  background-size: cover;
  width: 200px;
}

.product-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.product-card:hover .product-image::before {
  transform: translateX(100%);
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-size: 1.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.product-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features-list li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #56ab2f;
  font-weight: bold;
  font-size: 1.2rem;
}

.product-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.product-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(86, 171, 47, 0.4);
}

/* Benefits Section */
.benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
  animation: popIn 0.6s ease forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefit-card h3 {
  color: #2d5016;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d5016;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e8f5e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #56ab2f;
  box-shadow: 0 0 15px rgba(86, 171, 47, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 224, 99, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3510 0%, #2d5016 100%);
  color: #fff;
  padding: 3rem 5%;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-section h4 {
  color: #a8e063;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a8e063;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(168, 224, 99, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #a8e063;
  transform: translateY(-3px) rotate(360deg);
}

.copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-container {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {

  .about-content {
    flex-direction: column;
  }

  .about-video {
    margin: 0 auto;
  }

  .product-image img {
    max-width: 100%;
  }

}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  section {
    padding: 3rem 5%;
  }
}
