/* ===== Testimonials Section & Page ===== */

.testimonials-section, .testimonials-page {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.section-title, .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.btn-view-all {
  display: inline-block;
  padding: 10px 25px;
  background-color: #8B4513;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-view-all:hover {
  background-color: #5e2e0f;
}
/* 
h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #263d98;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
} */

.testimonials-page h1 {
  font-size: 36px;
  color: #263d98;
  position: relative;
  margin-bottom: 20px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 300px;
  }
  .section-title, .page-title {
    font-size: 1.6rem;
  }
}
