/* SECTION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.feedback-section {
  height: 100vh;
  padding: 80px 20px;
  background: linear-gradient(to right, #002c3c, #004d66);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.feedback-header {
  text-align: center;
  margin-bottom: 50px;
}

.feedback-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  padding-top: 20px !important;
}

.feedback-header p {
  font-size: 1rem;
  opacity: 0.8;
}

/* CONTAINER */
.feedback-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.feedback-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s forwards;
}

/* STAGGER */
.feedback-card:nth-child(1) { animation-delay: 0.3s; }
.feedback-card:nth-child(2) { animation-delay: 0.6s; }
.feedback-card:nth-child(3) { animation-delay: 0.9s; }

/* HOVER */
.feedback-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* VIDEO */
.video-box video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.feedback-content {
  padding: 20px;
}

.feedback-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.feedback-content h4 {
  color: #26c6da;
}

.feedback-content span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feedback-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feedback-container {
    grid-template-columns: 1fr;
  }

  .video-box video {
    height: 180px;
  }
}