body {
  font-family: Arial, sans-serif;
  padding: 40px;
}

.reviews-section {
  max-width: 1200px;
  margin: auto;
}

.sub-heading {
  color: #00a39a;
  font-size: 14px;
}

.main-heading {
/*   font-size: 32px;
  font-weight: 700; */
  margin-bottom: 40px;
	width: 60%;
}

.review-wrapper {
  display: flex;
  gap: 40px;
}

/* LEFT CARDS */
.left-boxes {
  display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
  gap: 30px;
}

.review-card {
  width: 190px;
  padding: 25px;
  text-align: center;
  border-radius: 20px;
  background: #fdf7ea;
  text-decoration: none;
	align-items: center;
  color: black;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.review-card.alt {
  background: #e8f8f2;
}

.platform-logo {
  width: 55px;
  margin-bottom: 10px;
}

/* RIGHT SECTION */
.right-content {
  width: 100%;
}

.top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  font-size: 24px;
  color: #00c47a;
}

.read-btn {
  background: linear-gradient(to right, #00c4a7, #007590);
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
}

.testimonial {
  font-size: 38px;
  width: 85%;
  margin: 25px 0;
	color: black;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* PERSON INFO + ARROWS */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.person-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.arrows {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  background: #00c4a7;
  color: white;
  padding: 10px 14px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
}


/* =======================================
   RESPONSIVE — TABLET (max-width: 992px)
======================================= */
@media (max-width: 992px) {

  .review-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .main-heading {
    width: 100%;
    text-align: center;
  }

  .left-boxes {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .review-card {
    width: 160px;
    padding: 20px;
  }

  .right-content {
    text-align: center;
  }

  .testimonial {
    width: 100%;
    font-size: 30px;
  }

  .bottom-row {
    flex-direction: column;
    gap: 20px;
  }
}


/* =======================================
   RESPONSIVE — MOBILE (max-width: 600px)
======================================= */
@media (max-width: 600px) {

  body {
    padding: 20px;
  }

  .sub-heading {
    font-size: 12px;
    text-align: center;
  }

  .main-heading {
/*     font-size: 24px; */
    text-align: center;
    margin-bottom: 25px;
  }

  .review-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .left-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    width: 100%;
    max-width: 260px;
  }

  .platform-logo {
    width: 45px;
  }

  .testimonial {
    font-size: 24px;
    width: 100%;
    margin: 15px 0;
  }

  .top-line {
    flex-direction: column;
    gap: 10px;
  }

  .stars {
    font-size: 20px;
  }

  .read-btn {
    font-size: 12px;
    padding: 8px 18px;
  }

  .person-info {
    justify-content: center;
  }

  .arrows {
    justify-content: center;
  }
}
