/* Testimonial Section */
.testimonials-section {
  background: #FFF7F4 !important;
  /* background: linear-gradient(to bottom, #ffffff,rgb(245, 170, 127)); */
}

.testimonial-card {
  border: none;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px; /* Optional spacing */
}

.testimonial-name {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.testimonial-designation {
  font-size: 14px;
  color: #6c757d;
}

blockquote {
  font-size: 16px;
  color: #333333;
  position: relative;
  margin: 0;
  overflow: visible;
}

blockquote p {
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.quote-start {
  font-size: 100px;
  line-height: 0.6;
  color: #f76300;
  position: absolute;
  top: -10px;
  left: 0;
}

.quote-end {
  font-size: 100px;
  line-height: 0.6;
  color: #f76300;
  position: absolute;
  bottom: -45px;
  right: 0;
}