body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f1f4f9; /* Add this line */
  background-image: url("bodyimage.jpeg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.popupInner {
  border-color: rgb(81, 81, 81);
  border-width: 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #f5f5f5; /* Updated background color */
  box-shadow: 4px 5px 4px -1px rgb(105 105 105);
  max-width: 486px;
  border-style: solid;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px;
  position: relative;
  top: 139px;
  display: block;
}

.popTitle h2 {
	margin: 0;
	text-align: center;
	font-size: 26px;
}

.popTitle h4 {
	margin: 12px 0 20px;
	text-align: center;
	text-decoration: underline;
	line-height: 35px;
	font-size: 22px;
	font-weight: 400;
}

.tapBtn a {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	background-color: rgb(12, 145, 102);
	box-shadow: 2px 2px 4px 0px #000;
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 30px;
	padding: 12px 0;
	font-weight: 600;
	margin-top: 22px;
	font-family: 'Poppins', sans-serif;
}

.popupMain {
	display: flex;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: start;
}
@media (max-width:767px)
{
	.popTitle h2 {
		font-size: 24px;
		line-height: 38px;
	}

	.popTitle h4 {
		font-size: 14px;
		margin: 0 0 20px;
	}

	.popupInner {
		max-width: 320px;
		margin: 0 auto;
		width: 100%;
		padding: 20px;
		top: 140px;
	}
	.popContent p {
		font-size: 14px;
		line-height: 22px;
	}
	.tapBtn a {
		font-size: 20px;
	}
}

.testimonials {
  margin-top: 30px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.testimonial {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.testimonial strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .testimonials h3 {
    font-size: 20px;
  }

  .testimonial {
    font-size: 12px;
  }
}



