/*Review Section*/

.review .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.review .box-container .box {
  text-align: center;
  flex: 1 1 30rem;
  border: 0.6rem solid #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  background: #2f2f2f;
  margin-top: 6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review .box-container .box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review .box-container .box img {
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  border: 1rem solid #fff;
  margin-top: -8rem;
  object-fit: cover;
}

.review .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.5rem 0;
}

.review .box-container .box p {
  font-size: 1.6rem;
  color: #eee;
  line-height: 1.65;
  padding: 1rem 0 0.4rem;
}

.review .box-container .box li {
  color: gold;
  font-size: 1.7rem;
  padding: 1rem 0.1rem;
}

.review .box-container .box li:last-of-type {
  color: rgb(134, 134, 134);
}
