.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a {
  color: #0d6efd;
  background: #f5f7ff;
  border: 1px solid #e2e8f0;
}

.pagination a:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.pagination .active span {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.pagination .disabled span {
  color: #94a3b8;
  background: #f8fafc;
  border-color: #e2e8f0;
}

ul.pagination li.active a {
  background: #1879bc;
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  font-size: 0.95rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb .active {
  color: #6c757d;
}

.blog-detail-image {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.blog-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
 
 
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.award-img {
    width: 200px; /* adjust as needed */
    height: auto;
}
@media (max-width: 576px) {
    .award-img {
        max-width: 70px; /* Smaller images on mobile */
    }
    .hero-badge {
      margin-top: 30px;
  }
}