body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #ffe4e6, #fff);
  margin: 0;
  padding: 40px;
}

.testimonial-section {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 50px;
  height: 350px;
}

.testimonial-card.reverse {
  flex-direction: row-reverse;
}

.video-container, .testimonial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-container {
  position: relative;
  flex: 0 0 250px;
  max-width: 250px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 192, 203, 0.7);
  animation: glowPulse 2s infinite alternate;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.testimonial-text {
  padding: 30px;
  color: #374151;
}

.testimonial-text h3 {
  color: #db2777;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
}

.testimonial-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
}

/* Pink 5-star styling */
.stars {
  margin-top: 15px;
}

.stars i {
  color: #fec447;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card, .testimonial-card.reverse {
    flex-direction: column;
    height: auto;
  }

  .video-container {
    max-width: 100%;
    flex: none;
  }

  .testimonial-text {
    text-align: center;
  }

  .testimonial-text h3 {
    font-size: 22px;
  }

  .testimonial-text p {
    font-size: 16px;
  }
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 20px rgba(255, 192, 203, 0.4);
  }
  to {
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.8);
  }
}

