
/* 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;
}




/* === Section Base === */
#post-section-10 .post-section {
  padding: 60px 0;
  background: #f5f5f5;
}
#post-section-10 .post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#post-section-10 .post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
#post-section-10 .post-section .section-header p {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
}

/* === Card Grid === */
#post-section-10 .post-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
#post-section-10 .post-card {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 15px;
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
@media (min-width: 992px) {
  #post-section-10 .post-card {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
#post-section-10 .post-card:hover {
  transform: translateY(-8px);
}

/* Thumbnail */
#post-section-10 .post-card img {
  width: 100%;
  display: block;
}

/* Tag Badge */
#post-section-10 .post-card .tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 123, 255, 0.85);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

/* Overlay */
#post-section-10 .post-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
#post-section-10 .post-card:hover .overlay {
  transform: translateY(0);
}
#post-section-10 .post-card .overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
#post-section-10 .post-card .overlay .meta {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 1rem;
}
#post-section-10 .post-card .overlay .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
#post-section-10 .post-card .overlay .btn-readmore:hover {
  background: #fff;
  color: #000;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}





#offers-3 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-3 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-3 .offer-tier-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  height: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
#offers-3 .offer-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
#offers-3 .offer-tier-card .card-header-custom {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}
#offers-3 .offer-tier-card .tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
#offers-3 .offer-tier-card .tier-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
  margin-bottom: 0.75rem;
}
#offers-3 .offer-tier-card .tier-description {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#offers-3 .offer-tier-card .tier-condition {
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.5rem;
}
#offers-3 .offer-tier-card .btn-tier-cta {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: auto;
}



#testimonials-17 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f8f9fa);
}
#testimonials-17 .container {
  max-width: 1140px;
}
#testimonials-17 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-17 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-17 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-17 .minimalist-quote-wall {
  column-gap: var(--column-gap, 2.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-17 .minimalist-quote-item {
  padding: 25px 0;
  margin-bottom: var(--column-gap, 2.5rem);
  page-break-inside: avoid;
  break-inside: avoid;
  border-top: 2px solid #e9ecef;
}
#testimonials-17 .minimalist-quote-item blockquote {
  font-size: 1.3rem;
  font-weight: 400;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: normal;
  border-left: none;
  padding-left: 0;
  position: relative;
}
#testimonials-17 .minimalist-quote-item blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: #adb5bd;
  position: absolute;
  left: -15px;
  top: -10px;
  line-height: 1;
  opacity: 0.6;
}
#testimonials-17 .minimalist-quote-item .quote-author {
  text-align: right;
}
#testimonials-17 .minimalist-quote-item .client-name {
  display: block;
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}
#testimonials-17 .minimalist-quote-item .client-position {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
}
@media (min-width: 768px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-17 {
    padding: 50px 0;
  }
  #testimonials-17 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote {
    font-size: 1.15rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote::before {
    font-size: 3rem;
    left: -10px;
    top: -5px;
  }
}


