/* === Testimonials Page CSS === */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.review-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
}

/* Video section */
.video-review {
  margin: 40px auto;
  max-width: 500px;
  text-align:center;
}

.video-review h3 {
  margin-bottom: 15px;
  color: #333;
}

.video-review video {
  width: 100%;
  height:auto;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }
  .video-review video {
    height: 250px;
  }
}
.review-card {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.review-image {
  width: 80px; /* Adjust size */
  height: 80px; /* Adjust size */
  border-radius: 50%; /* Makes it circular */
  object-fit: cover;
  margin-bottom: 10px;
}
.testimonials-page {
  margin-top: 80px; /* Push content below the fixed navbar */
  padding-bottom: 40px; /* Space before footer */
}

.testimonials-page section {
  scroll-margin-top: 120px; /* Optional: fixes anchor links */
}


