
/* 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;
}




#call-to-action-13 {
  padding: 120px 0;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}
#call-to-action-13::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
#call-to-action-13 .container {
  position: relative;
  z-index: 1;
}
#call-to-action-13 h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#call-to-action-13 .btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  animation: pulse 2s infinite alternate;
}
#call-to-action-13 .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
#call-to-action-13 .btn.primary {
  background-color: #007bff;
  color: #fff;
}
#call-to-action-13 .btn.primary:hover {
  background-color: #0056b3;
}
#call-to-action-13 .btn.secondary {
  background-color: #ffc107;
  color: #333;
}
#call-to-action-13 .btn.secondary:hover {
  background-color: #e0a800;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}


