body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #2e8b57;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #ffffff;
    color: #2e8b57;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.products {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.product-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #333;
}

.product-card:hover {
    transform: scale(1.03);
}
.export {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.export h2 {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 40px;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.export-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.export-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.export-card p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.export-card:hover {
    transform: scale(1.05);
}
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8f8;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact p {
    font-size: 18px;
    margin: 10px 0;
}
.contact a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
}
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8f8;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact p {
    font-size: 18px;
    margin: 10px 0;
}
.contact a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}
.marketing {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}
.marketing h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.marketing-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.marketing-gallery img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.inquiry {
    padding: 60px 20px;
    background: #f1f1f1;
    text-align: center;
}
.inquiry h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.inquiry form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inquiry input,
.inquiry textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.inquiry button {
    padding: 12px;
    font-size: 18px;
    background-color: #2e8b57;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.inquiry button:hover {
    background-color: #256b45;
}
.export {
  background: url('https://images.unsplash.com/photo-1606788075761-845129d5f4f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;
  padding: 80px 20px;
  color: white;
  position: relative;
  text-align: center;
}

.export-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  padding: 40px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.export h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.export p,
.export h3,
.export li {
  font-size: 18px;
}

.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.flag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
}

.flag img {
  width: 30px;
  height: auto;
  border-radius: 4px;
}

.export-products {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.inquiry-note a {
  color: #00ffcc;
  text-decoration: underline;
}
footer {
  background: #2e8b57;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.footer-container div {
  margin-bottom: 10px;
}

.footer-left h3 {
  margin: 0;
  font-size: 22px;
}

.footer-center p,
.footer-right a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    text-align: left;
  }

  footer {
    text-align: left;
  }
}

footer a {
  color: #ffffff;
}

footer a:hover {
  color: #ddd;
}

footer .copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2e8b57;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin: 0;
  color: #333;
}

.testimonial span {
  font-size: 14px;
  color: #777;
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .testimonial {
    width: 30%;
  }
}
.review-button {
  margin-top: 30px;
}

.review-button .btn {
  background: #2e8b57;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.review-button .btn:hover {
  background: #256f47;
}
/* Header style with logo */
header {
    background: #2e8b57;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffe000;
}
/* Universal background and text style */
body {
    background-color: #000000;
    color: #ffffff;
}

/* Section backgrounds */
section, .hero, footer {
    background-color: #000000;
    color: #ffffff;
}

/* Card or box style (like for products) */
.product-box, .export-box, .inquiry-box, .contact-box {
    background-color: #111111;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Link styles */
a {
    color: #ffe000;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
/* Reset and font */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}
/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* Fix full screen video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Hero styling */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}
/* Header styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url('farmer-header.jpg') no-repeat center center/cover;
  padding: 20px 40px;
  color: white;
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.site-header * {
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 28px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.farm-images {
  width: 100%;
  padding: 40px 0;
  background-color: #f5f5f5;
}

.farm-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.farm-container img {
  width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}
.btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}
