
body {
  font-family: 'Segoe UI', sans-serif;
  font-family: Georgia, 'Times New Roman', Times, serif;
  width: 100%;
  margin: 0;
  background-color: #f7fff7;
  color: #2e4d36;
}
.video-container video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 1 4px 10px rgba(0,0,0,0.2);
  }
.header {
  text-align: center;
  background-color: #e6f2e6;
  padding: 30px 20px;
}
.logo {
  width: 100px;
  height: auto;
}

.header h1 {
  margin: 10px 0;
  color: #7c2d34;
  text-decoration: gold;
}
.header p {
  font-style: italic;
  color: #4a774a;
}
.about, .featured-products, .product-list {
  padding: 30px 20px;
  text-align: center;
}
.about h2, .featured-products h2, .product-list h2 {
  color: #316c41;
}
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.product-card {
  background-color: #ffffff;
  border: 1px solid #cceccc;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
}
.product-card img {
  width: 100%;
  border-radius: 8px;
}



body {
  background-image: url('walpaper.jfif'); /* Change to your file name */
  background-size: cover; /* Makes image fill the screen */
  background-repeat: no-repeat; /* Prevent tiling */
  background-attachment: fixed; /* Stays fixed when scrolling */
  background-position: center;
}


.why-choose {
  text-align: center;
  padding: 20px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose li {
  margin: 8px 0;
  /* font-size: 1.1em; */
   font-size: 18px;
}


.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.header1 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #e6f2e6;
  color: #316c41;
  font-size: 14px;
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #e6f2e6;
  color: #316c41;
  font-size: 14px;
}




/* Slider Section */
.slider {
  position: relative;
  max-width: 100%;
  height: 200px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 12s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 100, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 18px;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  user-select: none;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
}

/* Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}


