
#hero-21 {
  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;
}
#hero-21 .hero-overlay-21 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-21 .container {
  position: relative;
  z-index: 2;
}
#hero-21 .hero-content-wrapper-21 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-21 .hero-title-21 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-21 .hero-subtitle-21 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-21 .hero-cta-button-21 {
  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;
}
#hero-21 .hero-cta-button-21:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-21 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-21 .hero-title-21 {
    font-size: 2.5rem;
  }
  #hero-21 .hero-subtitle-21 {
    font-size: 1.1rem;
  }
}



#our-services-22 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-22 .services-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}
#our-services-22 .service-block {
  margin-bottom: 5rem;
}
#our-services-22 .service-block:last-child {
  margin-bottom: 0;
}
#our-services-22 .service-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1rem 2rem;
}
#our-services-22 .service-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}
#our-services-22 .service-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#our-services-22 .service-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#our-services-22 .service-features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: #343a40;
  font-size: 0.95rem;
}
#our-services-22 .service-features-list li i {
  color: #198754;
  margin-right: 10px;
  font-size: 1.1em;
}
#our-services-22 .btn-service-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  align-self: flex-start;
}
#our-services-22 .service-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-services-22 .service-block-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #our-services-22 .service-block {
    margin-bottom: 3.5rem;
  }
  #our-services-22 .service-image-col {
    margin-bottom: 2rem;
    order: 1 !important;
  }
  #our-services-22 .service-content-col {
    order: 2 !important;
    text-align: center;
    padding: 1rem;
  }
  #our-services-22 .service-features-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #our-services-22 .btn-service-cta {
    align-self: center;
  }
  #our-services-22 .service-block-image {
    max-width: 85%;
  }
}



#features-28 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-28']['bg_color'] ?? '#f8f9fa' }};
}
#features-28 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-28 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 25px);
}
#features-28 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-28 .feature-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#features-28 .feature-image-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
#features-28 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
/* Hover effect defined via JS might be smoother if needed,
   but CSS transition is simpler */
#features-28 .feature-image-card:hover .card-overlay {
}
#features-28 .card-content {
   position: relative;
   z-index: 2;
}
#features-28 .card-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}
#features-28 .card-title {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  #features-28 .section-title h2 {
    font-size: 28px;
  }
  #features-28 .feature-image-card {
     min-height: 200px;
  }
   #features-28 .card-icon i {
      font-size: 36px;
   }
    #features-28 .card-title {
      font-size: 18px;
   }
}



#why-choose-us-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
}
#why-choose-us-10 .header {
  text-align: center;
  margin-bottom: 40px;
}
#why-choose-us-10 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#why-choose-us-10 .header p {
  font-size: 1.1rem;
  color: #777;
}
#why-choose-us-10 .icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
#why-choose-us-10 .icon-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#why-choose-us-10 .icon-card:hover {
  transform: translateY(-5px);
}
#why-choose-us-10 .icon-card i {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 10px;
}
#why-choose-us-10 .icon-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#why-choose-us-10 .icon-card p {
  font-size: 0.95rem;
  color: #555;
}



#how-it-works-30 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eef2f7;
}
#how-it-works-30 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-30 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e2b3c;
}
#how-it-works-30 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-30 .tier-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 5px solid #0d6efd;
}
#how-it-works-30 .tier-card.highlighted-tier {
  border-top-color: #ffc107;
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#how-it-works-30 .tier-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#how-it-works-30 .tier-card.highlighted-tier:hover {
  transform: translateY(-8px) scale(1.04);
}
#how-it-works-30 .tier-header {
  text-align: center;
  margin-bottom: 25px;
}
#how-it-works-30 .tier-icon-display {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
#how-it-works-30 .tier-card.highlighted-tier .tier-icon-display {
  color: #ffc107;
}
#how-it-works-30 .tier-name-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}
#how-it-works-30 .tier-description-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  min-height: 50px;
  margin-bottom: 20px;
}
#how-it-works-30 .tier-process-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}
#how-it-works-30 .tier-process-list li {
  font-size: 0.9rem;
  color: #495057;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
#how-it-works-30 .tier-process-list li:last-child {
  border-bottom: none;
}
#how-it-works-30 .tier-process-list li i {
  color: #20c997;
  margin-right: 12px;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
#how-it-works-30 .tier-process-list li.highlight-step {
  font-weight: 500;
  color: #0d6efd;
}
#how-it-works-30 .tier-process-list li.highlight-step i {
  color: #0d6efd;
}
#how-it-works-30 .tier-price-display {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 25px;
}
#how-it-works-30 .tier-card.highlighted-tier .tier-price-display {
  color: #ffc107;
}
#how-it-works-30 .tier-action-button {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
}



#testimonials-20 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-20 .container {
  max-width: 1140px;
}
#testimonials-20 .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#testimonials-20 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-20 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-20 .map-testimonial-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
#testimonials-20 .map-testimonial-item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#testimonials-20 .marker-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #dc3545;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
#testimonials-20 .map-testimonial-item:hover .marker-icon,
#testimonials-20 .map-testimonial-item .marker-icon:focus {
  transform: scale(1.2);
  color: #0d6efd;
}
#testimonials-20 .testimonial-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
  text-align: left;
  border: 1px solid #e0e0e0;
}
#testimonials-20 .map-testimonial-item:hover .testimonial-popup,
#testimonials-20 .map-testimonial-item .marker-icon:focus + .testimonial-popup {
  opacity: 1;
  visibility: visible;
}
#testimonials-20 .testimonial-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}
#testimonials-20 .popup-message {
  font-size: 0.9rem;
  color: #343a40;
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}
#testimonials-20 .popup-client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  display: block;
  text-align: right;
}
#testimonials-20 .testimonial-list-fallback {
  display: none;
  margin-top: 40px;
}
#testimonials-20 .testimonial-list-fallback h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #343a40;
}
#testimonials-20 .fallback-item {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #e9ecef;
}
#testimonials-20 .fallback-item blockquote {
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-style: italic;
  color: #495057;
}
#testimonials-20 .fallback-item cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: normal;
}
@media (max-width: 767.98px) {
  #testimonials-20 {
    padding: 50px 0;
  }
  #testimonials-20 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-20 .map-testimonial-container {
    display: none;
  }
  #testimonials-20 .testimonial-list-fallback {
    display: block;
  }
}



#call-to-action-2 {
  padding: 60px 15px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}
#call-to-action-2 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#call-to-action-2 .btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-2 .btn-primary {
  background-color: #0056b3;
  color: #fff;
}
#call-to-action-2 .btn-primary:hover {
  background-color: #003f7f;
}
#call-to-action-2 .btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-2 .btn-outline:hover {
  background-color: #fff;
  color: #007bff;
}



#faq-17 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-17 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2rem;
}
#faq-17 .faq-search-bar {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#faq-17 .faq-search-bar .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 50rem;
  border-color: #ced4da;
}
#faq-17 .faq-search-bar .btn-search {
  border-radius: 50rem;
  padding: 0.8rem 1.5rem;
}
#faq-17 .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#faq-17 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-17 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-17 .accordion-button::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");
  transition: transform 0.2s ease-in-out;
}
#faq-17 .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);
}
#faq-17 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-17 .accordion-body p:last-child {
  margin-bottom: 0;
}


