
/* Section & background accents */
#category-posts-14 {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Accent shapes */
#category-posts-14::before,
#category-posts-14::after,
#category-posts-14 .accent-shape {
  position: absolute;
  pointer-events: none;
}
#category-posts-14::before {
  content: '';
  width: 200px; height: 200px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  top: -40px; left: -40px;
}
#category-posts-14::after {
  content: '';
  width: 150px; height: 150px;
  background: rgba(239, 68, 68, 0.1);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: -30px; right: 20%;
}
#category-posts-14 .accent-shape.shape-1 {
  width: 120px; height: 120px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  top: 30%; left: 80%;
}
#category-posts-14 .accent-shape.shape-2 {
  width: 100px; height: 100px;
  background: rgba(234, 179, 8, 0.1);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  bottom: 20%; left: 10%;
}

/* Container above accents */
#category-posts-14 .container {
  position: relative;
  z-index: 1;
}

/* Header */
#category-posts-14 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-14 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}
#category-posts-14 .section-subtitle {
  font-size: 1rem;
  color: #6b7280;
}

/* Make entire card clickable */
.card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card style */
#category-posts-14 .post-card {
  background: #ffffff;
  border-radius: .75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .3s ease;
}
#category-posts-14 .post-card.visible {
  transform: translateY(0);
  opacity: 1;
}
#category-posts-14 .post-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Image */
#category-posts-14 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-14 .card-body {
  padding: 1rem;
}
#category-posts-14 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
#category-posts-14 .card-excerpt {
  font-size: .95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Read more badge */
#category-posts-14 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-14 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-14 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-14 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-14 .pagination-wrapper,
#category-posts-14 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




#offers-6 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#offers-6 .wheel-content-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#offers-6 .wheel-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #dc3545;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}
#offers-6 .wheel-description {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#offers-6 .prize-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#offers-6 .prize-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #343a40;
}
#offers-6 .prize-list li i {
  color: #ffc107;
  margin-right: 10px;
  font-size: 1.1em;
  width: 20px;
  text-align: center;
}
#offers-6 .btn-spin-cta {
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #dc3545;
  border: none;
  color: #fff;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#offers-6 .btn-spin-cta:hover {
  background-color: #c82333;
  transform: scale(1.05);
}
#offers-6 .wheel-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
#offers-6 .lucky-wheel-image {
  max-width: 90%;
  height: auto;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991.98px) {
  #offers-6 .wheel-content-col {
    text-align: center;
    order: 2;
    margin-top: 2rem;
  }
  #offers-6 .wheel-image-col {
    order: 1;
  }
  #offers-6 .lucky-wheel-image {
    max-width: 70%;
    margin: 0 auto;
    display: block;
    animation: none;
  }
  #offers-6 .prize-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  #offers-6 .prize-list li i {
    width: auto;
  }
  #offers-6 .btn-spin-cta {
    align-self: center;
  }
}
@media (max-width: 767.98px) {
  #offers-6 .wheel-title {
    font-size: 2.2rem;
  }
  #offers-6 .lucky-wheel-image {
    max-width: 80%;
  }
}



#testimonials-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#testimonials-10 .nav-tabs .nav-link {
  font-size: 1rem;
  padding: 10px 15px;
}
#testimonials-10 .tab-content {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
#testimonials-10 .testimonial-tab {
  text-align: center;
}
#testimonials-10 .testimonial-tab img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-10 .testimonial-tab p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-10 .client-info {
  font-size: 0.95rem;
  color: #777;
}


