body{
	color: #333;
  line-height: 1.6;
  background:url("sikshantar_images/nda.png") center/cover no-repeat;
}
.testimonials-section {
  padding: 80px 20px;
  background: #f6f7fb;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center h2 {
  font-size: 30px;
  color: #6b0f1a;
  margin-bottom: 8px;
}

.section-header-center p {
  font-size: 14px;
  opacity: 0.8;
}

/* Grid */
.testimonials-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image handling */
.image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;   /* SAME SIZE FOR ALL IMAGES */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #ddd;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* Handles different image sizes */
}

/* Text */
.testimonial-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #555;
}

/* Link */
.read-more {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #6b0f1a;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .section-header-center h2 {
    font-size: 24px;
  }
}
.social-stats {
  display: flex;
  justify-content: center;
  gap: 249px;
  flex-wrap: wrap;
}

.social-card {
  text-decoration: none;
  background: #fff;
  padding: 34px 48px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* ICON SIZE */
.social-card img {
  width: 52px;
  height: 52px;
}

/* BRAND COLORS */
.social-card img[alt="WhatsApp"] {
  filter: invert(36%) sepia(96%) saturate(403%) hue-rotate(88deg) brightness(94%) contrast(90%);
}

.social-card img[alt="Instagram"] {
  filter: invert(29%) sepia(96%) saturate(749%) hue-rotate(317deg) brightness(96%) contrast(92%);
}

.social-card img[alt="Facebook"] {
  filter: invert(28%) sepia(94%) saturate(1712%) hue-rotate(202deg) brightness(96%) contrast(92%);
}

.social-card span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
