
#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;
  }
}



/* Scoped variables for section */
#category-posts-24 {
  --cp-gradient-bg: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
  padding: 80px 20px;
  background: var(--cp-gradient-bg);
  overflow: hidden;
  position: relative;
}

/* Header */
#category-posts-24 .section-header {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
#category-posts-24 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-24 .section-subtitle {
  font-size: 1.125rem;
  opacity: .9;
}

/* Grid */
#category-posts-24 .flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

/* Fade-in on scroll */
#category-posts-24 .flip-card-wrapper {
  perspective: 1000px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
#category-posts-24 .flip-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card */
#category-posts-24 .flip-card {
  width: 100%;
  height: 360px;
  position: relative;
}
#category-posts-24 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
#category-posts-24 .flip-card-wrapper:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
#category-posts-24 .flip-card-front,
#category-posts-24 .flip-card-back {
  position: absolute;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Front side */
#category-posts-24 .flip-card-front {
  background: #fff;
  display: flex;
  flex-direction: column;
}
#category-posts-24 .flip-card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#category-posts-24 .flip-card-front .front-body {
  padding: 1rem;
  flex: 1;
}
#category-posts-24 .flip-card-front h3 {
  font-size: 1.125rem;
  margin: 0;
  color: #333;
}

/* Back side */
#category-posts-24 .flip-card-back {
  background: rgba(255,255,255,0.95);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
#category-posts-24 .flip-card-back p {
  font-size: .95rem;
  color: #444;
  flex: 1;
  margin-bottom: 1rem;
}
#category-posts-24 .flip-card-back .btn-readmore {
  align-self: flex-end;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  background: #66a6ff;
  border-radius: .5rem;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}
#category-posts-24 .flip-card-back .btn-readmore:hover {
  background: #89f7fe;
  transform: translateY(-2px);
}

/* Pagination & Load More */
#category-posts-24 .pagination-wrapper,
#category-posts-24 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}



