
/* Root variables */
:root {
  --card-bg: #ffffff;
  --card-radius: .75rem;
  --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
  --accent-color: #4f46e5; /* indigo-600 */
}

/* Section container */
#category-posts-10 {
  padding: 80px 0;
  background: #f8f9fa;
}
#category-posts-10 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-10 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
}
#category-posts-10 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Grid */
#category-posts-10 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Card */
#category-posts-10 .post-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  perspective: 1000px;
}
#category-posts-10 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-10 .post-card:hover {
  transform: rotateX(2deg) rotateY(-2deg);
}

/* Image */
#category-posts-10 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-10 .card-body {
  padding: 1rem;
}
#category-posts-10 .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-10 .btn-readmore {
  font-size: .875rem;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}
#category-posts-10 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-10 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-10 .pagination-wrapper,
#category-posts-10 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




#text-block-23 {
  padding: 120px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#text-block-23 .container {
  position: relative;
  z-index: 2;
}
#text-block-23 .color-wash-box {
  background-color: var(--text-box-bg, rgba(0, 50, 100, 0.75));
  color: var(--text-color, #ffffff);
  padding: 45px 50px;
  border-radius: var(--box-radius, 8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#text-block-23 .text-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#text-block-23 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#text-block-23 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #text-block-23 {
    padding: 100px 0;
  }
  #text-block-23 .text-heading {
    font-size: 2.3rem;
  }
  #text-block-23 .text-paragraph {
    font-size: 1.05rem;
  }
}
@media (max-width: 767.98px) {
  #text-block-23 {
    padding: 80px 15px;
    min-height: auto;
  }
  #text-block-23 .color-wash-box {
    padding: 35px 30px;
  }
  #text-block-23 .text-heading {
    font-size: 2rem;
  }
  #text-block-23 .text-paragraph {
    font-size: 1rem;
  }
}


