body{
margin:0;
font-family:Arial;

}

body nav{
    color: white;
}


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



/* NAVBAR */

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(180deg, #3b5e1c, #1f3a0d);
  position: fixed;
  top: 0px;
  z-index: 900;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span {
  font-size: 20px;
  margin-left: 15px;
  color: white;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: wheat;
}

/* hamburger */

.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  background: #00000000;
  color: white;
  padding-left: 10px;
}

.dropdown-menu ul {
  padding-left: 20px;
}

.dropdown-menu li {
  padding: 8px 0;

}

.dropdown.active .dropdown-menu {
  display: flex;
}


.arrow {
  float: right;
}

/* search bar */

.search {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.search input {
  width: 200px;
  font-family: arial;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  box-shadow: 0px 0px 5px rgb(0, 0, 0.2);
}

.search i {
  position: relative;
  top: 8px;
  right: 40px;
  transform: translateY(-50%);
  color: #000;
}

/* Base */
.dropdown {
    position: relative;
}

/* Hidden by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f3a0d;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

/* Show when active */
.dropdown.active .dropdown-menu {
    display: block;
}

/* Items */

.dropdown-menu li {
    padding: 10px 20px;
    list-style: none;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background: #1f3a0d;
}


/* hero section*/

/* HERO */
.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
  top: 0%;
  left: 0%;
}

/* VIDEO */
.video-container{
  position:absolute;
  width:100%;
  height:100%;
  top: 0%;
  left: 0%;
}

.video-container video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY + TEXT */
.text{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.7), transparent);
  color:white;
  padding-left:40px;
  padding-top:20%;
  text-align: start;
  top: 0%;
  left: 0%;
}

/* HEADING */
.text h1{
  font-size:48px;
  margin-bottom:10px;
  padding-left:40px;
}

/* SUBTEXT */
.text p{
  font-size:18px;
  margin-bottom:15px;
  padding-left:40px;
}



/* BUTTON GROUP */
.btn-group{
  display:flex;
  gap:15px;
  padding-left: 40px;
  margin-top: 20px;
}

/* BUTTON 1 */
.btn{
  padding:12px 25px;
  background:linear-gradient(135deg,#4CAF50,#2e7d32);
  color:white;
  border:none;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-5px);
}

/* BUTTON 2 */
.btn2{
  padding:12px 25px;
  background:transparent;
  border:1px solid white;
  color:white;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

.btn2:hover{
  background:white;
  color:black;
}

/* SCROLL INDICATOR */
.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  color:white;
}

.scroll-indicator span{
  font-size:12px;
  letter-spacing:2px;
}

/* MOUSE */
.mouse{
  width:28px;
  height:45px;
  border:2px solid white;
  border-radius:20px;
  margin:10px auto;
  position:relative;
}

/* DOT */
.wheel{
  width:4px;
  height:8px;
  background:white;
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  animation:scroll 1.5s infinite;
}

/* ANIMATION */
@keyframes scroll{
  0%{opacity:1; top:8px;}
  100%{opacity:0; top:25px;}
}


/* about section */

section{
padding:80px 20px;
text-align:center;
}

@media (max-width: 768px) {
  section {
    padding:40px 15px;
  }
}

@media (max-width: 480px) {
  section {
    padding:30px 10px;
  }
}

.about{
background:rgb(221, 220, 220);
}

.contact form{
width:350px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:12px;
border:1px solid #ccc;
}

/*products*/

.products{
scroll-behavior: smooth;
background:rgb(221, 220, 220);
padding:80px;
height: 600px;
border-top: gray 4px solid;
}

.products h2{
font-size:35px;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(5, minmax(0, 1fr));
gap:25px;
margin-top:30px;
width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.grid a{
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family:Arial;
    transition:0.3s;
}

.box{
background:rgb(221, 220, 220);
box-shadow: 0px 5px 10px #000000b4;
border-radius: 20px;
padding:15px;
text-align:center;
transition:0.3s;
width: 100%;
font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.grid a:hover{
transform:scale(1.08);
}

.box img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
margin-top: 10px;
border: 4px solid grey;
transition:0.4s;
}

.box img:hover{
transform:scale(1.08);
}

.box h3{
margin-top:15px;
font-size:18px;
}

/* WHY CHOOSE US */

.why-choose{
    border-top: 2px solid gray;
padding:30px 20px;
text-align:center;
background:#f6f3ec;
background-image: url(backg.jpeg) ;
background-size: cover;
background-position: center;


}

.why-choose h2{
font-size:36px;
margin-bottom:10px;
font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

.features{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
margin-bottom:0px;

}


.feature{
width:200px;
background:#f5f1e8;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
padding:15px;
text-align:center;
transition:0.3s;
}

.feature:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.feature img{
width:60px;
margin-bottom:10px;
}

.feature h4{
font: size 16px;
color:#333;
}

/* About Section */
/* HERO */

.about{
  padding: 0%;
  border-top: 4px solid gray;
}

.about-hero {
  min-height:400px;
  height: 800px;
  width: 100%;
  font-weight: 300px;
  background: url('about.jpeg')  no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .about-hero {
    min-height:300px;
  }
}

.overlay {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background:linear-gradient(90deg,#00000000, #000000c4,#00000000);
}

.overlay h1 {
  font-size: 40px;

}

.overlay p {
  font-size: 18px;
  margin-top: 10px;
}

/* ABOUT */
.about-content {
  display: flex;
  padding: 50px 10%;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.text {
  flex: 1;
}

.text h2 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text p {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}

.image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 10%;
  gap: 20px;
}
.about-features h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}


.about-box {
background:#f5f1e8;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
}

.about-box h3{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.about-box:hover {
  background: #2e7d32;
  color: white;
  transform: scale(1.05);
}

/* TIMELINE */
.timeline {
  padding: 50px 10%;
  text-align: center;
}

.timeline h2 {
  margin-bottom: 20px;
  color: #2e7d32;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.timeline-item {
  margin: 15px 0;
}

.timeline-item span {
  font-weight: bold;
  color: #4CAF50;
}

/* MISSION VISION */
.mv {
  display: flex;
  padding: 50px 10%;
  gap: 20px;
}

.mv-card {
  flex: 1;
  background: linear-gradient(135deg, #257e28, #397c3c);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv {
    flex-direction: column;
  }
}

/*contect us*/

.contact-section{
  scroll-behavior: smooth;
  background:url("images/rice-field.jpg");
  background:rgb(221, 220, 220);
  background-size:cover;
  background-position:center;
  padding:80px 20px;
  text-align:center;
  border-top: 4px solid grey;
}

.contact-section h1{
font-size:40px;
color:#294f12;
font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: normal;
}


.subtitle{
margin-bottom:50px;
font-size:18px;
}

.contact-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top: 50px;
}

/* LEFT BOX */

.contact-info{
  background:linear-gradient(180deg,#4c7a24,#294f12);
  color:white;
  padding:40px;
  border-radius:20px;
  width:350px;
  text-align:left;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-info p{
margin:15px 0;
font-size:17px;
}

.Qr{
  width: 270px;
  height: 250px;
  background: url("QR.jpeg") no-repeat center center;
  background-size: contain;
  margin-top: 20px;
}

/* RIGHT FORM */

.contact-form{
background:rgb(221, 220, 220);
box-shadow: 0px 5px 10px #000000b4;
padding:40px;
border-radius:20px;
width:400px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
background:rgb(221, 220, 220);
padding:12px;
border:2px solid gray;
border-radius:8px;
}

.contact-form textarea{
height:120px;
}

.contact-form button{
background:linear-gradient(180deg,#4c7a24,#294f12);
color:white;
padding:12px;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
}

.contact-form button:hover{
background:#1f4f2e;
}

.last{
    background-image: url(last.jpeg);
    
}


/*side contect*/

.contact-icons{
position:fixed;
right:20px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
background:linear-gradient(180deg,#3b5e1c,#1f3a0d);
border-radius: 30px;
height: 200px;
width: 50px;
padding-top: 10px;

}

.contact-icons img{
background:#f8e8ca;
width:35px;
height:35px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

.contact-icons img:hover{
animation:shake 0.4s;
}

.map iframe{
width:100%;
height:400px;
border:0;
}

iframe{
  margin-top: 5%;
}

/* footer */

.footer {
    background: linear-gradient(135deg, #333333, #3f3f3f);
    color: #fff;
    padding: 60px 8%;
    margin-top: 0px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: start;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    font-family: Poppins, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #2f8f2f;
    border-radius: 10px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section{
  width: 100%;
}

.footer-section p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #d0d0d0;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #48b648;
    transform: translateX(6px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #2f8f2f;
    transform: translateY(-5px);
}

.footer-section p i {
    color: #48b648;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #bdbdbd;
    font-size: 14px;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 700px) {

  .navbar {
    padding: 8px 15px;
    width: 100%;
    min-height: 60px;
  }

  /* logo */
  .logo {
    height: 50px;
    width: 100px;
    font-size: 12px;
  }

  /* right side container fix */
  .search {
    display: none;
  }

  /* hide search input */
  .search input {
    display: none;
  }

  /* search icon */
  .search i {
    position: static;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 11px;
    ;
  }

  /* toggle button */
.menu-toggle {
    display: inline-block;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 130px;
  }

  body.menu-open {
    padding-top: 70px;
  }

  /* mobile menu */
.nav-links {
    position: absolute;
    top: 100%;
    right: 10;
    width: 70%;
    background: #1f3a0d;
    border-radius: 10px;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    display: flex;
    padding: 30px;
  }

}

@media (max-width: 768px) {

  .hero {
    height: 270px;
    padding: 0%;
    padding-top: 17%;
    width: 100%;
  }

  .video-container {
    position: relative;
    height: auto;
  }

  .video-container video {
    width: 100%;
    height: 100%; /* FULL VIDEO SHOW */
  }

  .text {
    position: absolute;
    padding: 80px 20px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  }

  .text h1 {
    font-size: 13px;
    line-height: 1.3;
  }

  .text p {
    font-size: 8px;
  }


  .btn, .btn2 {
    font-size: 3px;
    width: 0px;
    padding: 8px;
  }

 
}

/* Small Mobile */

@media (max-width: 480px) {

  .text h1 {
    font-size: 15px;
  }

  .text p {
    font-size: 10px;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn, .btn2 {
    width: 80px;
    font-size: 6px;
  }

  @media (max-width: 600px) {
  .scroll-indicator {
    display: none;
  }
}
}

@media (max-width:768px){

/* section padding */
section{
padding:40px 20px;
}


/* products grid */
.grid{
grid-template-columns: repeat(2, 1fr);
gap:15px;
}

.box img{
height:150px;
}

/* about section */
.about2{
flex-direction:column;
padding:20px;

}

.about2-img{
height:auto;
background-size: fit;
}

/* features */
.featur{
flex-direction:column;
padding:20px;
}

/* mission */
.mission{
flex-direction:column;
padding:20px;
}

/* why choose */
.features{
gap:20px;
}

.feature{
width:100%;
}

/* contact */
.contact-container{
flex-direction:column;
align-items:center;
}

.contact-info,
.contact-form{
width:100%;
}

/* footer */
.footer-container{
grid-template-columns:1fr;
gap:30px;
}

.footer-section{
width:100%;
}

/* side icons */
.contact-icons{
right:10px;
height:auto;
width:45px;
}

/* map */
.map iframe{
height:250px;
}

}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {


  /* PRODUCTS GRID */
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ABOUT */
  .about-content {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }

  /* WHY CHOOSE */
  .features {
    gap: 30px;
  }

  /* CONTACT */
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 90%;
  }
}


/* Mobile */
@media (max-width: 600px) {

  section {
    padding: 50px 15px;
  }

  
  /* PRODUCTS */

  .products {
    height: auto;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .box img {
    height: 180px;
  }

  /* ABOUT HERO */
  .about-hero {
    height: 350px;
  }

  .overlay h1 {
    font-size: 26px;
  }

  .overlay p {
    font-size: 14px;
  }

  /* FEATURES */
  .about-features {
    grid-template-columns: 1fr;
  }

  .feature {
    width: 100%;
  }

  /* TIMELINE */
  .timeline {
    padding: 30px 10px;
  }

  /* CONTACT */
  .contact-form {
    width: 100%;
  }

  .contact-info {
    width: 100%;
  }

  /* MAP */
  .map iframe {
    height: 250px;
  }
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #294f12;
  list-style: none;
  padding: 10px;
  margin: 0;
  top: 100%;
  left: 0;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.dropdown-menu li {
  padding: 8px 10px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.dropdown-menu li:hover {
  background: #00000000;
}

/* show dropdown */
.dropdown-menu.show {
  display: block;
}
.search {
  position: relative;
  width: 200px;
}

#searchBox {
  width: 100%;
  padding: 8px;
}

#searchResults {
  position: absolute;
  width: 100%;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 40px;
  left: 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  max-height: 200px;
  overflow-y: auto;
}

#searchResults li {
  padding: 8px;
  cursor: pointer;
}

#searchResults li:hover {
  background: #f2f2f2;
}
.navbar-brand img {
  mix-blend-mode: multiply;
  background: transparent;
}
.navbar-brand img {
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6))
          drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
  transition: 0.3s ease;
}

.navbar-brand img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9))
          drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}
.navbar-brand img {
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.6))
          drop-shadow(0 0 10px rgba(255,255,255,0.4));
}
