
.customer-review-section {
  background-color: #dedede;
  padding: 60px 0;
}

.section-title {
  font-size: 33px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.review-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.review-wrapper::-webkit-scrollbar {
  display: none;
}

.review-card {
  background-color: #ffffff;
  flex: 0 0 300px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px #404040;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px #000000;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.review-text {
  font-size: 14px;
  color: #404040;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 250px;
  }
}
