
#overview-7 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
#overview-7 .overview-section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#overview-7 .content-column {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
}
#overview-7 .image-column {
  position: relative;
  z-index: 1;
}
#overview-7 .overview-image-wrapper {
  position: relative;
}
#overview-7 .overview-image {
  max-width: 115%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}
#overview-7 .section-heading {
  margin-bottom: 1rem;
}
#overview-7 .lead {
  margin-bottom: 1.5rem;
}
#overview-7 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
#overview-7 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: #343a40;
}
#overview-7 .feature-list li i {
  color: var(--bs-success);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#overview-7 .animated-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: var(--animation-delay, 0s);
}
#overview-7 .section-heading {
  --animation-delay: 0.1s;
}
#overview-7 .lead {
  --animation-delay: 0.2s;
}
#overview-7 .feature-list li:nth-child(1) {
  --animation-delay: 0.3s;
}
#overview-7 .feature-list li:nth-child(2) {
  --animation-delay: 0.4s;
}
#overview-7 .feature-list li:nth-child(3) {
  --animation-delay: 0.5s;
}
#overview-7 .feature-list li:nth-child(4) {
  --animation-delay: 0.6s;
}
#overview-7 .btn {
  --animation-delay: 0.7s;
}
#overview-7 .overview-image {
  --animation-delay: 0.2s;
  animation: fadeInUp 0.8s ease-out forwards;
}
@media (max-width: 991.98px) {
  #overview-7 .overview-image {
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
  #overview-7 .image-column {
    order: 2;
  }
  #overview-7 .content-column {
    order: 1;
    padding-left: 0;
  }
  #overview-7 .overview-section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}



/* Section & gradient background */
#category-posts-20 {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #14b8a6 100%);
  color: #fff;
  padding: 100px 0 0;
  overflow: hidden;
}

/* Top wave */
#category-posts-20 .wave-top {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  line-height: 0;
  transform: translateY(-1px);
  z-index: 1;
}

/* Bottom wave */
#category-posts-20 .wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  line-height: 0;
  transform: translateY(1px) rotate(180deg);
  z-index: 1;
}

/* Container above waves */
#category-posts-20 .container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

/* Header */
#category-posts-20 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-20 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
#category-posts-20 .section-subtitle {
  font-size: 1rem;
  opacity: .85;
}

/* Grid cards */
#category-posts-20 .post-card-wrapper {
  display: block;
  color: inherit;
  text-decoration: none;
}
#category-posts-20 .post-card {
  background: #ffffff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  color: #212529;
}
#category-posts-20 .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Image */
#category-posts-20 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-20 .card-body {
  padding: 1rem;
}
#category-posts-20 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-20 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-20 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-20 .btn-readmore:hover {
  color: #14b8a6;
}
#category-posts-20 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-20 .pagination-wrapper,
#category-posts-20 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}



