* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: #f5f7fa;
  scroll-behavior: smooth;
}
header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 999;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
    height: 60px;
    width: 170px;
}
.logo span {
  font-weight: 700;
  font-size: 1.3rem;
  color: #28a745;
}
.banner img {
    width: 100%;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #28a745;
}

.hero {
    /* background: linear-gradient(135deg, #28a745, #1e7e34); */
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: absolute;
    top: 0;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
/* About_us start */
.about-us_content {
    width: 600px;
    margin-left: 46px;
    margin-top: 57px;
    margin-bottom: 60px;
    float: left;
}
.about-us p {
    font-size: 14px;
    font-weight: normal;
    color: #555555;
    padding-top: 15px;
    line-height: 29px;
}
.about-us span.tagline {
    color: #84c341;
    font-size: 21px;
}
.about-us h1 {
    padding-top: 25px;
}
.about-us_img img {
    padding-left: 251px;
    margin-bottom: 41px;
}
.about-us_img {
    padding-top: 50px;
    left: 63px;
}
/* end */
.cta-button {
  background-color: white;
  color: #28a745;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background-color: #f1f1f1;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.section p {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}
.dark {
  background-color: #f0f0f0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.card h3 {
  margin-bottom: 1rem;
  color: #28a745;
}
.card p {
  color: #555;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
  max-width: 600px;
  margin: 1rem auto;
}
.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: #28a745;
}

footer {
  text-align: center;
  background-color: #222;
  color: #ccc;
  padding: 1rem;
  font-size: 0.9rem;
}