.navbar {
  display: flex;
  left: 0px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #5a9137;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  
 
  
}

body {
  font-family: 'Montserrat', sans-serif;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  
}

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


 .nav-links.active {
    display: flex;
    gap: 20px;
  }


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

  

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

.nav-links a:hover {
  color: #b6ffdf;
  
}
.nav-links.active {
    display: flex;
  }


/* Make room for fixed navbar */

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
 background-color: #5a9137;
}
.about-image img {
  width: 100%;
  max-width: 1550px;
  height: auto;
  margin-top: 60px;
  display: block; /* removes inline spacing */
  object-fit: cover; /* if you want it to crop nicely within a container */
}

@media (max-width: 768px) {
  .about-image img {
    margin-top: 30px;
  }

}

@media (max-width: 768px) {
  .about-us {
    padding: 6vw 8vw;
    margin-top: -100px;
  }
}




/* Responsive Menu (optional burger later if needed) */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #bdc5ba;
    position: absolute;
    top: 70px;
    right: 20px;
    display: none; /* can add JS toggle later */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
.hamburger {
  display: block;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
  
}
  
}
.hamburger span {
  height: 4px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}


.about-us {
  background-color: #5a9137;
  color: #ffffff;
  padding: 7vw 13vw;
  text-align: center;
  font-size: larger;
  margin: 80px auto 60px auto; /* Push down from top and separate from bottom */
  width: fit-content;
  max-width: 90%;
 
}

.about-us h1 {
    font-size: clamp(1.5rem, 5vw, 3rem); /* Responsive font size */
    margin: 0;
}







@media (max-width: 600px) {
  .story-text {
    padding: 0 1rem;
  }

  .story-text p {
    font-size: 0.95rem;
    text-align: left; /* or center, based on your preference */
  }
}

.story-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.story-carousel {
  flex: 1 1 50%;
  overflow: hidden;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  margin-top: 200px;
}

.story-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.story-text {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
 
}

.story-text h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.story-text p {
  line-height: 1.6;
  font-size: 1rem;
  padding: 0 1rem;
  text-align: justify;
}
.carousel-track {
  display: flex;
  width: fit-content;
  animation: scrollCarousel 20s linear infinite;
}

.carousel-track img {
  width: 250px;
  height: auto;
  margin-right: 1rem;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .story-section {
    flex-direction: column;
    text-align: center;
  }

  .story-carousel {
    margin-top: 2rem;
  }
}


.footer {
  background-color: #333;
  color: #ccc;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Responsive behavior for mobile/small screens */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    margin-top: 40px; /* Add spacing from text */
  }

  .footer-nav a {
    font-size: 16px;
  }
}

.footer-left {
  max-width: 600px;
}

.footer-left .logo span {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.footer-left p {
  margin-top: 16px;
  line-height: 1.6;
}

.footer-right {
  width: 180px; /* Reduced width to better align */
  margin-top: 12px; /* Align better with paragraph start */
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a:first-child {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
  position: relative;
}

.footer-nav a:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #555; /* Keep this subtle */
  margin-top: 8px;
  margin-bottom: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #ccc;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444; /* Keep this subtle one only */
  font-size: 14px;
  margin-top: 10px;
}

/* Remove extra bright <hr /> from HTML if present */
footer hr {
  display: none;
}

























/* Features Bar */
.features-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #5a9137;
  color: white;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: sans-serif;
  max-width: 250px;
  padding: 15px 0;
}

.feature img.icon {
  width: 24px;     /* consistent icon size */
  height: 24px;
  object-fit: contain;
  display: block;
}

.feature h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}




.icon {
      width: 20px;
      height: 20px;
       display: flex;
       
    }






html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}