
#hero-10 {
  padding: 120px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-10 .hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-10 .hero-subtitle {
  font-size: 22px;
  color: #777;
  margin-bottom: 30px;
}
.btn.btn-primary {
  padding: 14px 40px;
  font-size: 18px;
}



/* Section & dark animated background */
#category-posts-29 {
  position: relative;
  padding: 100px 20px;
  background: #0d0f14;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Floating neon bubbles */
#category-posts-29::before,
#category-posts-29::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,110,254,0.7), transparent 70%);
  width: 300px; height: 300px;
  animation: bubble 20s infinite ease-in-out;
  opacity: 0.6;
}
#category-posts-29::before {
  top: -150px; left: -100px;
}
#category-posts-29::after {
  bottom: -120px; right: -80px;
  animation-duration: 25s;
}
#category-posts-29 .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,115,245,0.5), transparent 70%);
  width: 200px; height: 200px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: bubble 22s infinite ease-in-out;
  opacity: 0.5;
}

@keyframes bubble {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50%     { transform: translate(-40%, -60%) scale(1.2); }
}

/* Container */
#category-posts-29 .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
#category-posts-29 .section-header h2 {
  font-size: 2.75rem;
  margin-bottom: .5rem;
}
#category-posts-29 .section-header p {
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 60px;
}

/* Grid */
#category-posts-29 .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

/* Card wrapper */
#category-posts-29 .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card */
#category-posts-29 .post-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .3s ease;
}
#category-posts-29 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-29 .post-card:hover {
  box-shadow: 0 8px 30px rgba(120,115,245,0.7);
}
#category-posts-29 .post-card:hover .post-media img {
  filter: none;
}

/* Media */
#category-posts-29 .post-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter .5s ease;
}

/* Body */
#category-posts-29 .card-body {
  padding: 1rem;
}
#category-posts-29 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-29 .card-meta {
  font-size: .875rem;
  opacity: .7;
  margin-bottom: .75rem;
}
#category-posts-29 .card-excerpt {
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* Neon border on hover */
#category-posts-29 .post-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
}
#category-posts-29 .post-card:hover::before {
  opacity: 1;
}

/* Read More */
#category-posts-29 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(120,115,245,0.3);
  padding: .5rem 1rem;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, transform .3s ease;
}
#category-posts-29 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-29 .btn-readmore:hover {
  background: rgba(120,115,245,0.6);
  transform: translateY(-2px);
}
#category-posts-29 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-29 .pagination-wrapper,
#category-posts-29 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}



