
#hero-8 {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-8 .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
#hero-8 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.registration-form {
  max-width: 500px;
  margin: 0 auto;
}
.registration-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.registration-form button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background-color: #2575fc;
  color: #fff;
  border: none;
  border-radius: 4px;
}



/* Section & animated blobs */
#category-posts-13 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #f0f4ff;
}
#category-posts-13::before,
#category-posts-13::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  animation: blobMove 20s infinite alternate;
}
#category-posts-13::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 30%, #a18cd1 0%, #fbc2eb 100%);
  top: -100px;
  left: -100px;
}
#category-posts-13::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 70% 70%, #fad0c4 0%, #ffd1ff 100%);
  bottom: -150px;
  right: -150px;
  animation-duration: 25s;
}

@keyframes blobMove {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Container above blobs */
#category-posts-13 .container {
  position: relative;
  z-index: 1;
}

/* Header */
#category-posts-13 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-13 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333;
}
#category-posts-13 .section-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Grid */
#category-posts-13 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Clickable card */
.card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card style */
#category-posts-13 .post-card {
  background: #ffffff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-13 .post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image */
#category-posts-13 .post-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card body */
#category-posts-13 .card-body {
  padding: 1rem;
}
#category-posts-13 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-13 .card-excerpt {
  font-size: .95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Read more badge */
#category-posts-13 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #667eea;
  border: 1px solid #667eea;
  border-radius: .5rem;
  padding: .375rem .75rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, color .3s ease;
}
#category-posts-13 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-13 .btn-readmore:hover {
  background: #667eea;
  color: #fff;
}
#category-posts-13 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-13 .pagination-wrapper,
#category-posts-13 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



