
.nav-item{
	border:3px solid black;
	background-color: #fff;
	margin:15px 20px;
	font-weight:bold;
}
.nav-link{
	color:#000 !important;
	font-family: "Oleo Script", system-ui;
}
.nav-link.active{
	background-color: grey;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  min-height: 100vh;
  background-color: rgb(249, 250, 251);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: system-ui, -apple-system, sans-serif;
}
*/
/*.container {
  max-width: 80rem;
  margin: 0 auto;
}*/

body{
	background-color: #d0f9db !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 24rem;
}

.testimonial-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(31, 41, 55);
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgb(75, 85, 99);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: rgb(55, 65, 81);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
}

.star.filled {
  color: rgb(250, 204, 21);
  fill: rgb(250, 204, 21);
}

.star.empty {
  color: rgb(209, 213, 219);
}











  .review-section {
      max-width: 700px;
      margin: auto;
    }

    .review {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .review h4 {
      margin: 0;
      color: #333;
    }

    .rating {
      color: gold;
      margin: 5px 0;
    }

    .review p {
      margin: 10px 0 0;
      color: #555;
    }

    .title {
      text-align: center;
      margin-bottom: 30px;
      color: #444;
    }