body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

/* Header Section */
.page-header {
  padding-left: 50px;
  margin-top: 30px;
}

.page-header h1 {
  font-family: 'Merienda', cursive;
  font-size: 2rem;
  font-weight: 600;
}

/* Pagination */
.pagination {
  gap: 10px;
}

.pagination .page-link {
  color: #e6681e;
  border: 1px solid #e6681e;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background-color: #e6681e;
  color: #fff;
}

/* Sanstha Card */
.sanstha-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.sanstha-card:hover {
  transform: scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

/* Image */
.sanstha-image {
  position: relative;
  overflow: hidden;
}

.sanstha-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sanstha-image img:hover {
  transform: scale(1.1);
}

/* Special Badge */
.special-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff6b5c;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Content */
.sanstha-content {
  padding: 1rem 1.25rem;
}

.sanstha-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.sanstha-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  background: #e6681e;
  color: #fff;
  border-radius: 2rem;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(135deg,#ff3d2f,#ff6b5c);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  color: #fff;
}
