/* Overall Page Background */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fffaf1;  /* soft golden gur tone */
  color: #3b2a15;
}

/* Section Title */
h2 {
  text-align: center;
  margin: 30px 0 20px;
  font-size: 26px;
  color: #7a4a12; /* jaggery-brown */
}

/* ===================== TEXT TESTIMONIALS ===================== */
.text-testimonials {
  width: 90%;
  margin: auto;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.text-box {
  background: #fff5e1;     /* subtle golden tone */
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e6c079;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.text-box .msg {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 10px;
}

.text-box .person {
  font-weight: bold;
  color: #6d3f0c;
}

/* ===================== VIDEO FEEDBACK ===================== */
.video-section {
  width: 90%;
  margin: 40px auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.video-card {
  background: #fff5e6;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e2b96f;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.video-card video {
  width: 100%;
  height: 300px;     /* reduced height (half size) */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-info h4 {
  margin: 0;
  font-size: 18px;
  color: #7a4a12;
}

.video-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #57380a;
}
