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

body {
    font-family: Arial, sans-serif;
   
}


.banner,.banner1 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}


.banner img {
    width: 100%;
    height: 40rem;
    display: block;
    animation: zoomMove 8s ease-in-out infinite alternate;
    object-fit: cover;
}
.banner1 img {
    width: 100%;
    height: 35rem;
    display: block;
    animation: zoomMove 8s ease-in-out infinite alternate;
    object-fit: cover;
  
}

@keyframes zoomMove {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-10px);
    }
}

.nav {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #a0f894; 
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav img {
    width: 100px; 
    height: auto;
}

.nav ul {
  
    list-style: none; 
    display: flex;
    gap: 30px;
}

.nav ul li {
    color: rgb(24, 21, 21);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}



.nav ul li a {
    color: #000;
    text-decoration: none; 
    font-size: 18px;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ffd700; 
    text-decoration: none; 
}



.CommunityInitiative {
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    height: 30rem;
    width: 100%;
    padding: 2rem;
    gap: 2rem;
    background-color: #bcfab4; 
}
.left, .right {
    flex: 1;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .CommunityInitiative {
        flex-direction: column;
    }
}
h1,h5{
    display: flex;
    justify-content: center;
}

.content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding: 5rem;
}


.left-content {
  flex: 1;
  min-width: 300px;
}

.right-content {
  flex: 1;
  min-width: 300px;
}

.feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.icon {
  width: 6rem;
  height: 6rem;
  margin-top: 5px;
}
.right-content img {
    width: 20rem;
    height: 20rem;
    transition: transform 0.3s ease-in-out; 
}
.right-content img:hover {
    transform: scale(1.2); 
}
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
  }

  .main-heading {
    font-size: 1.5rem;
  }
}

.image-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
}

.image-row {
  display: flex;
  gap: 20px;
}

.image-row img {
  width: 20rem;  
  height: 20rem; 
  border-radius: 8px; 
  transition: transform 0.3s ease-in-out; 
}


.image-row img:hover {
  
  transform: scale(1.05); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h1 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.contact-form h5 {
  color: #555;
  margin-bottom: 25px;
}

.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.input-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
}

.contact-form button {
  width: 100%;
  background-color: #2e7d32;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

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

.contact-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.contact-image img {
  max-width: 100%;
  border-radius: 10px;
  
}


.footer {
  background-color: #063a1e;
  color: white;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-icons i {
  font-size: 1.2rem;
  background-color: #fff;
  color: #063a1e;
  border-radius: 50%;
  padding: 0.5rem;
}

.links h3,
.contact h3 {
  margin-bottom: 1rem;
  color: #00cc66;
}

.link-columns {
  display: flex;
  gap: 2rem;
}

.link-columns ul {
  list-style: none;
  padding: 0;
}

.link-columns li {
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.contact p {
  margin-bottom: 0.6rem;
}

hr {
  border: none;
  border-top: 1px solid #ffffff44;
  margin: 2rem 0 1rem 0;
}

.footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.footer {
  position: relative;
  background-image: url("https://th.bing.com/th/id/OIP.1i4erZ_17vSafdIDDvDxQAHaE9?cb=iwc2&rs=1&pid=ImgDetMain"); 
  height: 30rem;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 2rem;
  gap: 2rem;
  font-family: Arial, sans-serif;
  overflow: hidden;
}
.footer li a{
  text-decoration: none;
  color: #f8f5f5;
}
.footer-container li:hover {
  background-color: #77b66f;
  border-radius: 5px;
  padding: 5px;
  
 
}


/* service section*/

.plant-guidance,
.compost-info,
.fertilizer-info {
  padding: 2rem 0;
  background-color: #9ae7b4; 
  margin-bottom: 1.5rem;
}

.plant,
.compost,
.fertilizer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Image Styling ===== */
.plant-image,
.compost-image,
.fertilizer-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.plant-image img,
.compost-image img,
.fertilizer-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  
}
.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}


/* ===== Text Content Styling ===== */
.plant-text,
.compost-text,
.fertilizer-text {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Headings */
.plant-text h2,
.compost-text h2,
.fertilizer-text h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

/* ===== List Styling - NONE ===== */
.plant-text ol,
.compost-text ul,
.fertilizer-text ul,
.plant-text ul, 
.fertilizer-text ol { 
  list-style: none !important; 
  padding-left: 0 !important; 
  margin-left: 0;
}

.plant-text li,
.compost-text li,
.fertilizer-text li {
  margin-bottom: 0.8rem;
  padding-left: 0;
  position: relative;
}

/* Emoji/icon positioning */
.plant-text li::before,
.compost-text li::before,
.fertilizer-text li::before {
  position: absolute;
  left: -1.5em;
}

/* ===== Section-Specific Colors ===== */
/* Plant Section */
.plant-text h2 {
  color: #2e7d32; 
}

/* Compost Section */
.compost-text h2 {
  color: #5d4037; 
}

/* Fertilizer Section */
.fertilizer-text h2 {
  color: #689f38; 
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .plant,
  .compost,
  .fertilizer {
    flex-direction: column;
  }
  
  .plant-image,
  .compost-image,
  .fertilizer-image,
  .plant-text,
  .compost-text,
  .fertilizer-text {
    min-width: 100%;
  }
  
  .plant-text,
  .compost-text,
  .fertilizer-text {
    padding-top: 1.5rem;
  }
  
  /* Adjust emoji positioning on mobile */
  .plant-text li::before,
  .compost-text li::before,
  .fertilizer-text li::before {
    position: static;
    margin-right: 0.5em;
  }
}
/* about section */
.key-activities {
  padding: 3rem 2rem;
  background-color: #f0fff0;
  text-align: center;
}

.key-activities h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: green;
}

.activities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.activity-card {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  width: 300px;
 
  transition: transform 0.3s ease;
}

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

.activity-card img {
  width: 250px;
  height: 250px;
  margin-bottom: 2rem;
}

.activity-card h3 {
  color: #097c29;
  margin-bottom: 0.5rem;
}

.activity-card p {
  font-size: 0.95rem;
  color: #333;
}


/* about section */
.about-section2 h1{
  position: absolute;
  top: 40%;
  left: 40%;

}
.about-section2 p{
 padding: 2rem;

}

.goals-values {
  padding: 3rem 2rem;
  background-color: #f9fff9;
}

/*Common Section Layout  */
.vision-section,
.goals-section,
.values-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  background-color: #f5fff7;
}
.quote{
  display: flex;
  flex-direction: row;
  color: #063a1e;
  padding: 3rem;
  gap: 6rem;
}

/*  Text & Image Layout  */
.vision-text, .goals-text, .values-text,
.vision-image, .goals-image, .values-image {
  flex: 1;
  min-width: 280px;
  padding: 2rem;
}

.vision-image, .goals-image, .values-image {
  text-align: center;
}

.vision-image img,
.goals-image img,
.values-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*  Text Styling */
.vision-text h2,
.goals-text h2,
.values-text h2 {
  font-size: 2rem;
  color: #05652d;
  margin-bottom: 1rem;
}

.vision-text p,
.goals-text p,
.values-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* === Responsive Mobile View === */
@media (max-width: 768px) {
  .vision-section,
  .goals-section,
  .values-section {
    flex-direction: column;
    text-align: center;
  }

  /* Keep vision: image first, then text */
  .vision-image {
    order: 1;
  }
  .vision-text {
    order: 2;
  }

  /* Reverse for goals: text first, image second */
  .goals-text {
    order: 1;
  }
  .goals-image {
    order: 2;
  }

  /* Reverse for values: image first, text second */
  .values-image {
    order: 1;
  }
  .values-text {
    order: 2;
  }
}
