.testimonial-section {
  position: relative;
  padding: 80px 5%;
  background: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-family: var(--main-font);
}

.top-right-img {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 400px;
  height: auto;
  z-index: 1;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 50px;
  flex-wrap: wrap;
}

.testimonial-image {
  position: relative;
  flex: 1 1 30%;
  border-radius: 12px;
  overflow: hidden;
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Overlay Box */
.overlay-box {
  position: absolute;
  top: 0px;
  /* left: 20px; */
  background: #0c4a5f;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.smile-icon {
  width: 45px;
  height: 45px;
}

.overlay-text .small {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

.overlay-text h3 {
  margin: 4px 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.stars {
  color: #fbc02d;
  letter-spacing: 2px;
}

.testimonial-content {
  flex: 1 1 50%;
}

.subtitle {
  color: #85c12f;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.title {
  font-size: 2rem;
  color: #04364a;
  line-height: 1.3;
  margin-bottom: 15px;
}

.description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #0c4a5f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #08506b;
}

@media (max-width: 1300px) {
  .top-right-img {
    width: 300px;
  }
}
@media (max-width: 1100px) {
  .top-right-img {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }
.main-img {
  width: 80% !important;
}
  .top-right-img {
    width: 150px;
  }
  .overlay-box {

    padding: 12px 15px;
  }

  .overlay-text h3 {
    font-size: 1.3rem;
  }

  .smile-icon {
    width: 35px;
    height: 35px;
  }

  .title {
    font-size: 1.6rem;
  }
}