/* ===== Reset ===== */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth; /* smooth scrolling */
}

/* ===== Navbar ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #28a745;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .logo {
  color: white;
  font-size: 15px;
  font-weight: 600;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  padding: 5px 0;
}
.main_logo {
  color: white;
  font-size: 45px;
  font-family: roboto, sans-serif;
  font-weight: bold;
}
nav ul li a.active,
nav ul li a:hover {
  border-bottom: 2px solid yellow;
}

/* ===== Responsive Navbar ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #28a745;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
  }
  nav ul li {
    margin: 10px 0;
  }
  .menu-toggle {
    display: block;
  }
  nav ul.show {
    display: flex;
  }
}

/* ===== Hero Section ===== */
.hero {
  background: url('https://i.imgur.com/WpfZ6q1.jpeg') no-repeat center center/cover;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero .overlay {
  background: rgba(105, 91, 91, 0.342);
  padding: 10px;
  border-radius: 12px;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: yellow;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 600;
}
.btn:hover {
  background: orange;
  color: #fff;
}

/* ===== Sections ===== */
section {
  padding: 60px 20px;
  text-align: center;
}
section h2 {
  font-size: 38px; <!--28-->
  margin-bottom: 25px;
  color: #28a745;
}

/* ===== About ===== */
#about p {
  max-width: 800px;
  margin: auto;
  font-size: 14px;
}
.about-description strong {
  color: #006400; /* highlight important words in green */
}
.about-description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 20px;
  text-align: justify;
}
.farmer {
  color: rgb(255, 145, 0);
}

/* ===== Services ===== */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 10px;
  color: red;
}
.card p {
  font-size: 20px;
  color: darkblue;
}

/* ===== Gallery ===== */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* ===== Contact ===== */
form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 30px;
}
form input, form textarea, form button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 28px;
}
form textarea {
  resize: none;
  min-height: 120px;
}
form button {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
form button:hover {
  background: #218838;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  font-size: 14px;
}

/* ===== Floating Buttons ===== */
#translate-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}
#translate-btn:hover {
  background: yellow;
  border-radius: 8px;
  font-weight: bold;
  font-size: 20px;
}
#whatsapp-btn {
  position: fixed;
  bottom: 70px; /* Above translate button */
  right: 20px;
  background: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}
#whatsapp-btn:hover {
  background: #128C7E;
}
.chicks{
  
  font-weight: bold;
  font-size:25px;
  text-align: center;
}
.home_del{
  font-weight: bold;
  font-size:30px;
  text-align: center;
  

}
.home_del1{
  font-weight: bold;
  font-size:33px;
  text-align: center;
  color:red;
  

}


.button_phonepay{
  border-radius: 30px;
  background-color: purple;
  color: white;
  margin: auto; 
  font-size: 40px;

}