.testimonials {
  padding: 80px 10%;
  background: #f8f9fb;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #171994;
}

.testimonials h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

.testimonials p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white; 
  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* .testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
} */

.testimonial-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #171994;
}

.testimonial-card .designation {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-card .feedback {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Video Grid */
/* .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
} */

/* Review Form */
.review-section {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-family: "Jost", sans-serif;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  width: 100%;
}

.review-form input, .review-form textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: "Jost", sans-serif;
}

.review-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #171994;
  color: white;
  border: 2px solid transparent;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
}

.review-form button:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}

/* Google Review Button */
.google-review .google-btn {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  border: 2px solid #0f4c61;
  color: #0f4c61;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-review .google-btn:hover {
  background: #0f4c61;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid, .video-grid {
    grid-template-columns: 1fr;
  }
  .review-section {
    flex-direction: column;
  }
}