.custom-gradient {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.custom-gradient2 {
  background: linear-gradient(45deg, #10ac84, #1dd1a1);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.custom-gradient:hover {
  transform: scale(1.05);
}

.pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: none;
    background: #f1f3f5;
    color: #333;
}

.pagination .active .page-link {
    background: #0d6efd;
    color: white;
}

.pagination .page-link:hover {
    background: #e2e6ea;
}
.hero-blur {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.overlay-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(15px);
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}