
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fdf5;
    color: #333;
        background-image: url(../images/happy\ customer.png);
}

header {
    background-color: #2e5d34;
    color: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

header .logo span {
    margin-left: 8px;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
    color: rgb(184, 155, 116);
}



.hero {
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 2.5rem;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 5%;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-card h3 {
  color: #2e5d34;
}

footer {
    background-color: #2e5d34;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .testimonials {
        padding: 3rem 5%; 
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 7rem 2rem;
  }
  .testimonials {
        padding: 5rem 5%; 
    }
}

