
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#mobile-app-20 {
  padding: 80px 0;
  background-color: #fff;
}
#mobile-app-20 .video-testimonial-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#mobile-app-20 .video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#mobile-app-20 .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#mobile-app-20 .testimonial-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 2rem;
}
#mobile-app-20 .testimonial-block blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  border-left: 4px solid #0d6efd;
  padding-left: 1.5rem;
  margin: 0 0 1rem 0;
}
#mobile-app-20 .testimonial-block .blockquote-footer {
  font-size: 1rem;
  color: #555;
  font-style: normal;
}
#mobile-app-20 .testimonial-block .blockquote-footer cite {
  font-weight: 600;
}
#mobile-app-20 .star-rating {
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #ffc107;
  font-size: 1.1rem;
}
#mobile-app-20 .star-rating .fa-regular {
  color: #e0e0e0;
}
#mobile-app-20 .testimonial-download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#mobile-app-20 .btn-download-app {
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#mobile-app-20 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-20 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-20 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-20 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-20 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #mobile-app-20 .testimonial-column {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
  #mobile-app-20 .testimonial-block blockquote {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    text-align: left;
    padding-left: 1rem;
    border-left-width: 3px;
  }
  #mobile-app-20 .testimonial-download-buttons {
    justify-content: center;
  }
}



#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;
   }
}



#customer-support-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#customer-support-7 .support-content-wrapper {
  display: flex;
  align-items: center;
}
#customer-support-7 .support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#customer-support-7 .support-text {
  padding-left: 3rem;
}
#customer-support-7 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}
#customer-support-7 .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
#customer-support-7 .section-description {
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.7;
}
#customer-support-7 .support-buttons .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
#customer-support-7 .support-buttons .btn i {
  margin-right: 0.5rem;
}
#customer-support-7 .contact-info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  margin-bottom: 0;
}
#customer-support-7 .contact-info-list li {
  margin-bottom: 0.75rem;
  color: #495057;
  display: flex;
  align-items: center;
}
#customer-support-7 .contact-info-list li i {
  color: var(--bs-primary);
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}
#customer-support-7 .contact-info-list li a {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
}
#customer-support-7 .contact-info-list li a:hover {
  text-decoration: underline;
  color: var(--bs-primary);
}
@media (max-width: 991.98px) {
  #customer-support-7 .support-text {
    padding-left: 1.5rem;
  }
  #customer-support-7 .section-title {
    font-size: 2rem;
  }
  #customer-support-7 .section-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-7 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #customer-support-7 .support-image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #customer-support-7 .support-image img {
    max-width: 80%;
  }
  #customer-support-7 .support-text {
    padding-left: 0;
    text-align: center;
  }
  #customer-support-7 .support-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #customer-support-7 .support-buttons .btn {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 80%;
  }
  #customer-support-7 .contact-info-list {
    justify-content: center;
    text-align: left;
    display: inline-block;
  }
  #customer-support-7 .contact-info-list li {
    justify-content: flex-start;
  }
}



#testimonials-16 {
  position: relative;
  padding: 100px 0;
  color: #ffffff;
  overflow: hidden;
}
#testimonials-16 .testimonial-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  z-index: 1;
}
#testimonials-16::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color, rgba(0, 0, 0, 0.5));
  z-index: 2;
}
#testimonials-16 .container {
  position: relative;
  z-index: 3;
  max-width: 850px;
}
#testimonials-16 .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#testimonials-16 .section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
#testimonials-16 .section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
#testimonials-16 .carousel-item {
  text-align: center;
  padding: 20px 0;
}
#testimonials-16 .testimonial-slide-content {
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-16 .client-image img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 3px solid rgba(255, 255, 255, 0.7);
}
#testimonials-16 .testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.7;
}
#testimonials-16 .client-name {
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}
#testimonials-16 .client-position {
  font-size: 0.95rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 15px;
}
#testimonials-16 .rating {
  color: #ffc107;
  font-size: 1rem;
}
#testimonials-16 .carousel-indicators button {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
}
#testimonials-16 .carousel-indicators .active {
  background-color: #ffffff;
}
#testimonials-16 .carousel-control-prev,
#testimonials-16 .carousel-control-next {
  z-index: 4;
}
#testimonials-16 .carousel-control-prev-icon,
#testimonials-16 .carousel-control-next-icon {
  /* filter: brightness(0) invert(1); */
}
@media (max-width: 767.98px) {
  #testimonials-16 {
    padding: 70px 0;
  }
  #testimonials-16 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-16 .client-image img {
    width: 90px;
    height: 90px;
  }
  #testimonials-16 .testimonial-quote {
    font-size: 1.15rem;
  }
}



#faq-16 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-16 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-16 .faq-list-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#faq-16 .faq-minimal-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
#faq-16 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-16 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.15rem;
  color: #343a40;
  margin-bottom: 0.8rem;
  display: block;
}
#faq-16 .faq-minimal-answer {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}



#call-to-action-22 {
  padding: 4rem 0;
  overflow: hidden;
  color: #ffffff;
}
.cta-urgent {
}
.cta-urgent-icon i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.cta-urgent-headline {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-urgent-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-urgent-button .btn {
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.cta-urgent-button .btn:hover {
  transform: scale(1.05);
}
.cta-urgent-button .btn i {
  margin-right: 8px;
}
@media (max-width: 767.98px) {
  #call-to-action-22 {
    padding: 3rem 0;
  }
  .cta-urgent-icon i {
    font-size: 3rem;
  }
  .cta-urgent-headline {
    font-size: 1.9rem;
  }
  .cta-urgent-subtext {
    font-size: 1rem;
  }
}


