/* General Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f7fff9;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #fff;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .logo {
  font-size: 1.6rem;
  font-weight: 700;
}
.nav-links li {
  display: inline-block;
  margin: 0 15px;
}
.nav-links a {
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #a0f3b6;
}

/* Hero Section */
.hero {
  background: url('/img/img (26).jpeg') no-repeat center center/cover;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #38b000;
  color: white;
  padding: 12px 25px;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #2c8e00;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* Services */
.services {
  padding: 60px 10%;
  text-align: center;
}
.services h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #2b5d34;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
}
.card i {
  font-size: 2rem;
  color: #2d7a41;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Benefits */
.benefits {
  background: #e7fff0;
  padding: 60px 10%;
  text-align: center;
}
.benefits h2 {
  font-size: 2rem;
  color: #2b5d34;
  margin-bottom: 40px;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.benefits-grid div {
  max-width: 300px;
}
.benefits-grid i {
  font-size: 2rem;
  color: #3b8b4c;
  margin-bottom: 10px;
}

/* Reviews */
.reviews {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}
.reviews h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.review-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.review {
  max-width: 300px;
  background: #f1fff3;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Footer */
footer {
  background: #00008B;
  color: #fff;
  padding: 30px 10%;
  text-align: center;
}
.footer-content .social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer-content .social-icons a:hover {
  color: #a0f3b6;
}
/*about*/
.about {
  background: #f0fff0;
  padding: 60px 20px;
 
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: justify;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.about-text p {
	text-indent: 50px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
. about-text p::first-line {
  margin-left: 20px; /* doesn't work on ::first-line */
}
.about-text p::first-letter {
  font-size: 1.2rem;
  font-weight: bold;
}
.about-image {
  flex: 1;
  text-align: center;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 128, 0, 0.2);
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background: #e8f5e9;
  text-align: center;
}
.gallery h2 {
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 200px; /* Fixed height to make all images equal */
  object-fit: cover; /* Ensures image fills area without stretching */
  border-radius: 15px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #9be15d 0%, #00e3ae 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta .cta-button {
  background: white;
  color: #006d5b;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.cta .cta-button:hover {
  background: #e0f2f1;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: justify;
  }
  .about-image img {
    max-width: 100%;
  }
  .cta h2 {
    font-size: 1.5rem;
  }
  .cta p {
    font-size: 1rem;
  }
}
/*menu toggle*/
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #2d7a41;
    position: absolute;
    top: 100%;
    right: 10%;
    width: 200px;
    padding: 15px 0;
    border-radius: 10px;
  }
  .nav-links li {
    margin: 10px 0;
    text-align: right;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}
