.review-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #02142b, #003b8f);
  color: #fff;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #bcd7ff;
  font-size: 15px;
}

.review-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,191,255,0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.review-card:hover::before {
  left: 100%;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.4);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-top img {
  border-radius: 50%;
  border: 2px solid #00c6ff;
}

.review-top h4 {
  margin: 0;
  font-size: 16px;
}

.review-top span {
  font-size: 12px;
  color: #8ecaff;
}

.review-text {
  font-size: 14px;
  color: #d6eaff;
  margin-bottom: 15px;
  line-height: 1.6;
}

.rating {
  color: #ffd700;
  font-size: 16px;
}

.review-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.review-card {
  min-width: 280px;
  scroll-snap-align: center;
}