
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#features-21 {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: {{ $data['features-21']['text_color'] ?? '#ffffff' }};
}
#features-21::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: {{ $data['features-21']['overlay_color'] ?? 'rgba(0, 0, 0, 0.6)' }};
  z-index: 1;
}
#features-21 .container {
  position: relative;
  z-index: 2;
}
#features-21 .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: inherit; 
}
#features-21 .feature-block {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1); 
  transition: background 0.3s ease;
  height: 100%; 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
}
#features-21 .feature-block:hover {
   background: rgba(255, 255, 255, 0.2);
}
#features-21 .feature-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  color: inherit; 
  opacity: 0.9;
}
#features-21 .feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: inherit;
}
#features-21 .feature-description {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #features-21 {
    padding: 60px 0;
  }
  #features-21 .section-header h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
   #features-21 .section-header h2 {
     font-size: 28px;
   }
   #features-21 .feature-icon i {
     font-size: 36px;
   }
   #features-21 .feature-title {
      font-size: 17px;
   }
   #features-21 .feature-description {
      font-size: 14px;
   }
}



#how-it-works-22 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f6f8;
}
#how-it-works-22 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-22 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
}
#how-it-works-22 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5c677d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-22 .components-grid {
}
#how-it-works-22 .component-item {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
#how-it-works-22 .component-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#how-it-works-22 .component-icon {
  font-size: 2.8rem;
  color: #0d6efd;
  margin-bottom: 20px;
  line-height: 1;
}
#how-it-works-22 .component-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}
#how-it-works-22 .component-description {
  font-size: 0.9rem;
  color: #6a788a;
  line-height: 1.6;
  flex-grow: 1;
}
#how-it-works-22 .central-theme-visual {
  text-align: center;
  margin-bottom: 40px;
}
#how-it-works-22 .central-theme-visual i {
  font-size: 4rem;
  color: #0d6efd;
  opacity: 0.5;
}



#text-block-13 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-13 .container {
  max-width: 800px;
}
#text-block-13 .section-title-optional {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#text-block-13 .text-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 20px;
}
#text-block-13 .intro-paragraph {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color, #555e68);
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#text-block-13 .steps-container {
}
#text-block-13 .step-item {
  margin-bottom: 35px;
  align-items: flex-start;
}
#text-block-13 .step-item:last-child {
  margin-bottom: 0;
}
#text-block-13 .step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: var(--number-bg-color, #0d6efd);
  color: var(--number-text-color, #ffffff);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#text-block-13 .step-content {
  flex-grow: 1;
}
#text-block-13 .step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color, #343a40);
  margin-bottom: 8px;
}
#text-block-13 .step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color, #555e68);
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 767.98px) {
  #text-block-13 {
    padding: 60px 0;
  }
  #text-block-13 .text-heading {
    font-size: 2rem;
  }
  #text-block-13 .intro-paragraph {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  #text-block-13 .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  #text-block-13 .step-title {
    font-size: 1.15rem;
  }
  #text-block-13 .step-description {
    font-size: 0.95rem;
  }
}



/* Section container & scoped vars */
#category-posts-23 {
  --cp-gradient: linear-gradient(135deg, #ff416c, #ff4b2b);
  --cp-card-bg: #ffffff;
  --cp-card-radius: 1rem;
  --cp-card-shadow: 0 6px 20px rgba(0,0,0,0.1);
  --cp-accent-size: 2rem;

  padding: 80px 20px;
  background: #f5f7fa;
}

/* Header */
#category-posts-23 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#category-posts-23 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
#category-posts-23 .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60%;
  height: 4px;
  background: var(--cp-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
}
#category-posts-23 .section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: .5rem;
}

/* Grid layout */
#category-posts-23 .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Clickable wrapper */
#category-posts-23 .post-card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card */
#category-posts-23 .post-card {
  position: relative;
  background: var(--cp-card-bg);
  border-radius: var(--cp-card-radius);
  box-shadow: var(--cp-card-shadow);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-23 .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Diagonal accent */
#category-posts-23 .post-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: var(--cp-accent-size);
  height: var(--cp-accent-size);
  background: var(--cp-gradient);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Thumbnail */
#category-posts-23 .post-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
}

/* Card content */
#category-posts-23 .card-body {
  padding: 60px 1rem 1rem;
  text-align: center;
}
#category-posts-23 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #333;
}
#category-posts-23 .card-meta {
  font-size: .875rem;
  color: #999;
  margin-bottom: .75rem;
}
#category-posts-23 .card-meta i {
  margin-right: .25rem;
}
#category-posts-23 .card-excerpt {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Custom Read More button */
#category-posts-23 .btn-readmore {
  display: inline-block;
  padding: .6rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  background: var(--cp-gradient);
  border: none;
  border-radius: 50px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
#category-posts-23 .btn-readmore::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity .3s ease;
}
#category-posts-23 .btn-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
#category-posts-23 .btn-readmore:hover::after {
  opacity: 1;
}
#category-posts-23 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-23 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-23 .pagination-wrapper,
#category-posts-23 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}




#testimonials-3 {
  padding: 60px 15px;
  max-width: 800px;
  margin: 0 auto;
}
#testimonials-3 .slider-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}
#testimonials-3 .slider-item {
  display: none;
  text-align: center;
  padding: 30px;
}
#testimonials-3 .slider-item.active {
  display: block;
}
#testimonials-3 .slider-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-3 .slider-item p {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-3 .client-info {
  font-size: 0.95rem;
  color: #777;
}



#counter-10 {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start, #4a00e0),
    var(--gradient-end, #8e2de2)
  );
  color: var(--text-color, #ffffff);
  text-align: center;
  overflow: hidden;
}
#counter-10 .container {
  position: relative;
  z-index: 2;
}
#counter-10 .section-header {
  margin-bottom: 60px;
}
#counter-10 .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .section-header p {
  font-size: 1.15rem;
  color: var(--text-color, #ffffff);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
#counter-10 .counter-item-floating {
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}
#counter-10 .floating-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
  animation: floatAnimation 4s ease-in-out infinite;
}
#counter-10 .counter-item-floating:hover .floating-icon {
  transform: scale(1.1) translateY(-5px);
  animation-play-state: paused;
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
#counter-10 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  color: var(--text-color, #ffffff);
}
#counter-10 .counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .counter-suffix {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 6px;
  line-height: 1;
  opacity: 0.9;
}
#counter-10 .counter-title-floating {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color, #ffffff);
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #counter-10 .counter-number {
    font-size: 2.8rem;
  }
  #counter-10 .counter-suffix {
    font-size: 1.8rem;
  }
  #counter-10 .floating-icon {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  #counter-10 {
    padding: 60px 0;
  }
  #counter-10 .section-header h2 {
    font-size: 2.2rem;
  }
  #counter-10 .counter-item-floating {
    margin-bottom: 40px;
  }
  #counter-10 .counter-item-floating:last-child {
    margin-bottom: 0;
  }
}



#awards-4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#awards-4 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-4 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-4 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-4 .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#awards-4 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #dee2e6;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#awards-4 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 3rem;
}
#awards-4 .timeline-item:last-child {
  margin-bottom: 0;
}
#awards-4 .timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: #f8f9fa;
  border: 4px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 3px #f8f9fa;
}
#awards-4 .timeline-left {
  left: 0;
  padding-right: 30px;
}
#awards-4 .timeline-left::after {
  left: -12.5px;
}
#awards-4 .timeline-right {
  left: 50%;
  padding-left: 70px;
}
#awards-4 .timeline-right::after {
  left: -12.5px;
}
#awards-4 .timeline-content {
  padding: 20px 25px;
  background-color: #ffffff;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
#awards-4 .timeline-date {
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9rem;
}
#awards-4 .timeline-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bs-primary);
}
#awards-4 .timeline-item-title i {
  margin-right: 0.5rem;
  font-size: 1em;
  opacity: 0.8;
}
#awards-4 .timeline-item-awarded-by {
  font-style: italic;
  color: #495057;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}
#awards-4 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.6;
}
#awards-4 .timeline-item-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#awards-4 .timeline-item-link a:hover {
  text-decoration: underline;
}
#awards-4 .timeline-item-link i {
  margin-left: 0.3rem;
}
@media screen and (max-width: 767.98px) {
  #awards-4 .timeline-wrapper::after {
    left: 31px;
  }
  #awards-4 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 2rem;
  }
  #awards-4 .timeline-left::after,
  #awards-4 .timeline-right::after {
    left: 18px;
  }
  #awards-4 .timeline-left,
  #awards-4 .timeline-right {
    left: 0%;
  }
  #awards-4 .timeline-content {
    padding: 15px 20px;
  }
  #awards-4 .timeline-item-title {
    font-size: 1.1rem;
  }
}



#call-to-action-20 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-boxed-content {
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-boxed-headline {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-boxed-subtext {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-boxed-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-boxed-button .btn i {
  margin-right: 8px;
}
#call-to-action-20 .btn-warning {
}
@media (max-width: 767.98px) {
  #call-to-action-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 350px;
  }
  .cta-boxed-content {
    padding: 1.5rem;
  }
  .cta-boxed-headline {
    font-size: 1.8rem;
  }
  .cta-boxed-subtext {
    font-size: 1rem;
  }
}


