/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

:root {
  --primary-green: #2d5f3f;
  --light-green: #e8f5e9;
  --cream: #fef8f3;
  --accent: #d4af37;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.2rem 1% !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-green);
  z-index: 1001;
  width: 40%;
}
.logo img {
  width: 10%;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-btn {
  background: var(--primary-green);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  width: 29px;
  height: 3px;
  background: var(--primary-green);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background:
    linear-gradient(358deg, #ffa1447a 0%, #ffa1443b 100%),
    url(../img/13.png) center / cover fixed;
  padding: 1rem 1%;
  text-align: center;
  position: relative;
  color: white;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h3 {
  color: #2d5f3f;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.hero .cta-btn {
  background: white;
  color: var(--primary-green);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.trusted-clients {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.client-avatars {
  display: flex;
  margin-right: 1rem;
}

.client-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -15px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Marquee Section */
.marquee {
  background: var(--primary-green);
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  margin: 0 3rem;
  font-size: 1.1rem;
}

.marquee-item::before {
  content: "✦";
  margin-right: 1rem;
  color: var(--accent);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.1rem;
}

.about-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.about-content ul li {
  margin: 0.8rem 0;
  font-size: 1.05rem;
  color: #555;
}

.about-image {
  width: 100%;
  height: 550px;
  background:
    linear-gradient(45deg, rgba(45, 95, 63, 0.09), rgba(74, 143, 95, 0.19)),
    url("../img/about.png") center/cover;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stats {
  display: flex;
  justify-content: start;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  position: relative;
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  width: 200px;
  height: 150px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.17); /* dark overlay for readability */
  z-index: 0;
  border-radius: 20px;
}

.stat-item h3,
.stat-item p {
  position: relative;
  z-index: 1;
  margin: 0.5rem 0;
}

/* Different background images for each item */
.stat-1 {
  background-image: url("../img/2.jfif"); /* Experience image */
}

.stat-2 {
  background-image: url("../img/3.jfif"); /* Happy cows image */
}

/* Hover effect */
.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.video-section {
  padding: 6rem 5%;
  background: var(--cream);
  text-align: center;
}

.video-section h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-section h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.slide:hover {
  transform: scale(1.02);
  transition: transform 0.3s;
}

/* Services Section */
.services {
  padding: 6rem 5%;
  text-align: center;
}

.services h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  position: relative;
  padding-top: 209px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 15px; /* space for image */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.3s;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.service-card:nth-child(1)::before {
  background-image: url("../img/organic.png");
}

.service-card:nth-child(2)::before {
  background-image: url("../img/monitor.png");
}

.service-card:nth-child(3)::before {
  background-image: url("../img/11.avif");
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
  opacity: 0.3;
}

.service-card h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  color: var(--primary-green);
  position: relative;
  z-index: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: #555;
  font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
  padding: 6rem 5%;
  background: var(--light-green);
}

.gallery h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Why Choose Us */
.why-choose {
  padding: 6rem 5%;
  background: var(--cream);
}

.why-choose h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

/* Products Section */
.products {
  padding: 6rem 5%;
}

.products h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: #ffffff00;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0);
}

.product-image {
  width: 180px;
  height: 180px;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:nth-child(1) .product-image {
  background-image: url("../img/fresh.png");
}

.product-card:nth-child(2) .product-image {
  background-image: url("https://images.unsplash.com/photo-1486297678162-eb2a19b0a32d?w=400&q=80");
}

.product-card:nth-child(3) .product-image {
  background-image: url("https://images.unsplash.com/photo-1628088062854-d1870b4553da?w=400&q=80");
}

.product-card:nth-child(4) .product-image {
  background-image: url("../img/curd.png");
}

.product-card h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
}

/* Process Section */
.process {
  padding: 6rem 5%;
  background:
    linear-gradient(135deg, #333333b8, #333333cc),
    url(../img/bg.png) center / cover fixed;
  color: white;
}

.process h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 5%;
  background: var(--cream);
}

.testimonials h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.testimonial-card:nth-child(1) .author-avatar {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80");
}

.testimonial-card:nth-child(2) .author-avatar {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&q=80");
}

.testimonial-card:nth-child(3) .author-avatar {
  background-image: url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&q=80");
}

/* FAQ Section */
.faq {
  padding: 6rem 5%;
}

.faq h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--primary-green);
  font-size: 1.15rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  display: none;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  background:
    linear-gradient(135deg, rgb(45 95 63 / 23%), #333333a3),
    url(../img/fresh1.jpg) center / cover fixed;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary-green);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: var(--primary-green);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .logo img {
    width: 20%;
  }

  .about,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 968px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 4%;
  }

  .nav-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
  }
  .logo img {
    width: 20%;
  }

  .nav-center.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .nav-right {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-right .cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero {
    padding: 5rem 5%;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h3 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .client-avatars img {
    width: 40px;
    height: 40px;
  }

  .trusted-clients {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 400px;
  }

  .stats {
    flex-direction: column;
  }

  .service-grid,
  .product-grid,
  .testimonial-grid,
  .gallery-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    height: 300px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
    width: 50%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
  .logo img {
    width: 35% !important;
  }

  .hero h3 {
    font-size: 0.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }

  .about-content h2,
  .services h2,
  .why-choose h2,
  .products h2,
  .testimonials h2,
  .faq h2,
  .gallery h2,
  .video-section h2 {
    font-size: 2rem;
  }

  .about-image {
    height: 300px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .product-card,
  .testimonial-card,
  .feature-item {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
