
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



/* Section spacing & background */
#category-posts-12 {
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
#category-posts-12 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-12 .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
}
#category-posts-12 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Make entire card clickable */
.card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card style */
#category-posts-12 .post-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff;
}
#category-posts-12 .post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Image */
#category-posts-12 .post-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card body */
#category-posts-12 .card-body {
  padding: 1rem;
}
#category-posts-12 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#category-posts-12 .card-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Read more badge */
#category-posts-12 .btn-readmore {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f46e5;
  border: 1px solid #4f46e5;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, color .3s ease;
}
#category-posts-12 .btn-readmore i {
  margin-left: 0.5rem;
  transition: transform .3s ease;
}
#category-posts-12 .btn-readmore:hover {
  background: #4f46e5;
  color: #fff;
}
#category-posts-12 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-12 .pagination-wrapper,
#category-posts-12 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



