.testimonial-section {
  padding: 40px;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat; 
  background-position: top; 
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden; /* Ensure the container does not stretch */
  flex-wrap: wrap;
}

.testimonial-content {
  width: 60%;
  padding-right: 20px;
  box-sizing: border-box;
}

.quote-icon {
  font-size: 420px;
  color: #ffc627;
  line-height: .8;
  margin-bottom: -200px;
}

.student-major {
  margin-top: -16px;
}

.circular-image-container {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: visible;
}

.circular-image-container .circular-image {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  border-radius: 50%;
}

.circular-image-container .yellow-circle {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 40px;
  height: 40px;
  background-color: #ffc627;
  border-radius: 50%;
}

.square-image-container {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: visible;
}

.square-image-container .square-image {
  width: 250px;
  height: 250px !important;
  object-fit: cover;
  border-radius: 20%;
}

.square-image-container .yellow-circle {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background-color: #ffc627;
  border-radius: 50%;
}

.wraparound-text {
	float: left;
  margin-right: 20px;
  border-radius: 50%;
  width: 200px; /* Adjust the size as needed */
  height: 200px; /* Adjust the size as needed */
  object-fit: cover;
}

.dark-text {
  color: black !important;
}

.yellow-circle-behind {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.yellow-circle-behind::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 200px;
  height: 200px;
  background-color: #ffc627;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-section {
    padding:2px;
  }

  .testimonial-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .quote-icon {
    font-size: 200px;
    margin-bottom: -100px;
  }

  .circular-image-container {
    margin-bottom: 20px;
  }

  .yellow-circle-behind::before {
    top: 7px;
    left: 7px;
    width: 100%;
    height: 100%;
  }
}
