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

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

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

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

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

.nav-links a:hover {
  color: #1e925f;
}

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

.hamburger span {
  height: 4px;
  width: 25px;
  background: #c7e996;
  margin: 4px 0;
  border-radius: 2px;
}

/* INTRO SECTION */
.intro-section {
  padding: 120px 50px 120px; /* Equal top and bottom padding */
  background: #5a9137;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.intro-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.intro-text {
  flex: 1 1 400px;
}

.tagline {
  font-size: 2rem;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 10px;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 25px;
}
.read-more {
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
  padding-left: 5px;
}

/* ABOUT IMAGE SECTION FIXED */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.about-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
}

/* PRODUCTS */
.products-highlight {
  padding: 80px 20px;
  background: #fff;
}

.products-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.products-text {
  flex: 1 1 400px;
  text-align: center;
}

.products-text h2 {
  font-size: 2rem;
 
  color: #5a9137;
 
  margin-bottom: 30px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  background-color: #5a9137; /* purple */
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  gap: 12px;
  transition: background-color 0.3s ease;
}

.product-icon {
  background-color: white;
  color: #A164C4;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon i {
  font-size: 16px;
}

.product-btn:hover {
  background-color: #904fb1;
}
.product-btn:hover {
  background-color: #7BB038; /* darker green on hover */
}

.products-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.products-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* FEATURES BAR */

.features-bar {
  display: flex;
  justify-content: space-around; /* or use space-evenly */
  flex-wrap: wrap;
  background-color: #5a9137;
  color: white;
  padding: 20px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 15px 0;
}

.feature img.icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

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

.contactus-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Keep image and text side-by-side on large screens */
}

.contact-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
  padding-right: 40px;
}

.contact-text h1 {
  font-size: 2.8rem; /* Preserve font size */
  font-weight: 700;   /* Preserve weight */
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-us {
  font-size: 1rem;
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}


.contact-us-button {
  display: inline-flex;
  align-items: center;
  background-color: #5a9137; /* Purple background */
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px; /* Fully rounded sides */
  transition: background-color 0.3s ease;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #5a9137;;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  font-size: 1rem;
}

.contact-us-button:hover {
  background-color: #c7e996;
}

.contact-container {
  flex: 1;
  max-width: 50%;
  text-align: right;
}

.contact-image img {
  width: 100%;
  max-width: 700px; /* You can raise or lower this */
  height: auto;
  margin-top: 100px;
  object-fit: contain;
}

.contact-container {
  padding-left: 40px;
}

/* Responsive fallback (mobile & tablet) */
@media (max-width: 768px) {
  .contactus-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contact-text,
  .contact-container {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .contact-image img {
    width: 100%;
    max-width: 400px; /* Scales image */
    margin-top: 30px;
  }

  .contact-text h1 {
    font-size: 2rem;
  }

  .contact-text p {
    font-size: 1rem;
  }
}
.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;
}

/* CAROUSEL (if you're using it) */
.carousel {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-item {
  width: 300px;
  object-fit: contain;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #bdc5ba;
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: #ffffff;
  }

  .contactus-section {
    flex-direction: column-reverse;
  }

  .contact-text, .contact-container {
    text-align: center;
  }
}