body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f9f1;
  color: #333;
}

header {
  background-color: #2e7d32;
  color: white;
  padding: 2rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

h1, h2 {
  color: #2e7d32;
}

ul {
  list-style-type: square;
  padding-left: 1.5;
}

footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.mission-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.mission-section h2 {
  font-size: 32px;
  color: #4caf50;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #4caf50;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #4caf50;
}
/* Sticky Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #2e7d32;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

#languageSelector {
  padding: 5px;
  border-radius: 5px;
}
html {
  scroll-behavior: smooth;
}
.nav-links a.active {
  border-bottom: 2px solid yellow;
}

nav-menu{
  list-style: none;
  display: flex;
  gap: 1rem;
  background: #0a3f0a;
  padding: 10px;
}

nav-menu li a{
  color: white;
  text-decoration: none;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
}

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

.hero-content .btn {
  background-color: #f4b400;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f8f5;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

header {
  background: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

h1 {
  font-size: 2em;
}

button {
  padding: 10px 20px;
  background-color: #43a047;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2e7d32;
}

body {
  background-image: url('rice-farm-bg.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

Or if you prefer a more subtle design:

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('rice-farm-bg.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #2d6a4f;
  color: white;
  padding: 1em 2em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5em;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('rice-farm-bg.jpeg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6em 1em;
}

.hero h1 {
  font-size: 2.5em;
}

.hero .btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #40916c;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.services {
  padding: 4em 2em;
  background-color: #fff;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}

.card {
  background: #e9ecef;
  padding: 2em;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact {
  background-color: #d8f3dc;
  padding: 4em 2em;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 400px;
  margin: auto;
}

.contact input, .contact textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #2d6a4f;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #081c15;
  color: white;
  text-align: center;
  padding: 1.5em 1em;
}



