
/* Section & dark animated background */
#category-posts-29 {
  position: relative;
  padding: 100px 20px;
  background: #0d0f14;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Floating neon bubbles */
#category-posts-29::before,
#category-posts-29::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,110,254,0.7), transparent 70%);
  width: 300px; height: 300px;
  animation: bubble 20s infinite ease-in-out;
  opacity: 0.6;
}
#category-posts-29::before {
  top: -150px; left: -100px;
}
#category-posts-29::after {
  bottom: -120px; right: -80px;
  animation-duration: 25s;
}
#category-posts-29 .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,115,245,0.5), transparent 70%);
  width: 200px; height: 200px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: bubble 22s infinite ease-in-out;
  opacity: 0.5;
}

@keyframes bubble {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50%     { transform: translate(-40%, -60%) scale(1.2); }
}

/* Container */
#category-posts-29 .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
#category-posts-29 .section-header h2 {
  font-size: 2.75rem;
  margin-bottom: .5rem;
}
#category-posts-29 .section-header p {
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 60px;
}

/* Grid */
#category-posts-29 .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

/* Card wrapper */
#category-posts-29 .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card */
#category-posts-29 .post-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .3s ease;
}
#category-posts-29 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-29 .post-card:hover {
  box-shadow: 0 8px 30px rgba(120,115,245,0.7);
}
#category-posts-29 .post-card:hover .post-media img {
  filter: none;
}

/* Media */
#category-posts-29 .post-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter .5s ease;
}

/* Body */
#category-posts-29 .card-body {
  padding: 1rem;
}
#category-posts-29 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-29 .card-meta {
  font-size: .875rem;
  opacity: .7;
  margin-bottom: .75rem;
}
#category-posts-29 .card-excerpt {
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* Neon border on hover */
#category-posts-29 .post-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
}
#category-posts-29 .post-card:hover::before {
  opacity: 1;
}

/* Read More */
#category-posts-29 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(120,115,245,0.3);
  padding: .5rem 1rem;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  transition: background .3s ease, transform .3s ease;
}
#category-posts-29 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-29 .btn-readmore:hover {
  background: rgba(120,115,245,0.6);
  transform: translateY(-2px);
}
#category-posts-29 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-29 .pagination-wrapper,
#category-posts-29 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}




#call-to-action-7 {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
}
#call-to-action-7 .cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
#call-to-action-7 .cta-text {
  flex: 1 1 300px;
  text-align: left;
}
#call-to-action-7 .cta-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
#call-to-action-7 .cta-text p {
  font-size: 16px;
  margin-bottom: 20px;
}
#call-to-action-7 .cta-btn {
  padding: 10px 25px;
  background-color: #17a2b8;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-7 .cta-btn:hover {
  background-color: #138496;
}
#call-to-action-7 .cta-image {
  flex: 1 1 300px;
  text-align: center;
}
#call-to-action-7 .cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  #call-to-action-7 .cta-container {
    flex-direction: column;
    text-align: center;
  }
  #call-to-action-7 .cta-text {
    text-align: center;
  }
}



#faq-26 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #212529;
}
#faq-26::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#faq-26 .container {
  position: relative;
  z-index: 2;
}
#faq-26 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-content-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
#faq-26 .faq-minimal-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-26 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
#faq-26 .faq-minimal-answer {
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.9;
}
#faq-26 .accordion-item {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border-radius: 6px !important;
  overflow: hidden;
}
#faq-26 .accordion-button {
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
  background-color: transparent;
}
#faq-26 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: rgba(231, 241, 255, 0.8);
}
#faq-26 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
  filter: brightness(0.6);
}
#faq-26 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
  filter: none;
}
#faq-26 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
#faq-26 .accordion-body p:last-child {
  margin-bottom: 0;
}


