
#hero-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-14::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-14 .container {
  position: relative;
  z-index: 2;
}
#hero-14 .hero-content-wrapper-14 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .hero-title-14 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-14 .hero-subtitle-14 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-14 .hero-form-wrapper-14 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .input-group .form-control {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.3rem 0 0 0.3rem;
  border: none;
}
#hero-14 .input-group .btn-form-submit-14 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  border: none;
  background-color: #0d6efd;
  color: #ffffff;
  transition: filter 0.2s ease;
}
#hero-14 .input-group .btn-form-submit-14:hover {
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-14 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-14 .hero-title-14 {
    font-size: 2.2rem;
  }
  #hero-14 .hero-subtitle-14 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #hero-14 .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  #hero-14 .input-group .form-control,
  #hero-14 .input-group .btn-form-submit-14 {
    border-radius: 0.3rem;
    width: 100%;
  }
}



/* 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;
}




#content-block-28 {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--cb28-text-color, #343a40);
  text-align: center;
  z-index: 1;
}
#content-block-28.bg-image-mode {
  background-size: cover;
  background-position: center center;
}
#content-block-28.bg-image-mode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cb28-overlay-color, rgba(0, 0, 0, 0.5));
  z-index: -1;
}
#content-block-28 .cta-content-wrapper {
  position: relative;
  z-index: 2;
}
#content-block-28 .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
#content-block-28 .cta-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: inherit;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
#content-block-28 .cta-buttons .btn {
  margin: 0.5rem 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  min-width: 150px;
}
#content-block-28 .cta-buttons .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #content-block-28 {
    padding: 4rem 0;
  }
  #content-block-28 .cta-title {
    font-size: 2rem;
  }
  #content-block-28 .cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #content-block-28 .cta-buttons .btn {
    display: block;
    width: 80%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}


