
@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;
  }
}



#mobile-app-3 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#mobile-app-3 .section-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 30px;
}
#mobile-app-3 .description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
#mobile-app-3 .video-preview {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 30px;
}
#mobile-app-3 .video-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#mobile-app-3 .download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#mobile-app-3 .download-btn {
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s;
}
#mobile-app-3 .download-btn:hover {
  background: #0056b3;
}
#mobile-app-3 .download-btn i {
  margin-right: 10px;
}



#features-12 {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}
#features-12 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-12 .feature-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
#features-12 .feature-item:hover {
  transform: scale(1.05);
}
#features-12 .feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#features-12 .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 162, 184, 0.7);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  text-align: center;
}
#features-12 .feature-item:hover .feature-overlay {
  opacity: 1;
}
#features-12 .overlay-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .overlay-description {
  font-size: 14px;
}



#how-it-works-1 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#how-it-works-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#how-it-works-1 .timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
#how-it-works-1 .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
}
#how-it-works-1 .timeline-item {
  position: relative;
  margin-left: 70px;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#how-it-works-1 .timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 10px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
}
#how-it-works-1 .timeline-item h4 {
  margin: 0 0 5px;
  font-size: 1.25rem;
  color: #007bff;
}
#how-it-works-1 .timeline-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#faq-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
}
#faq-7 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-7 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-7 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
}
#faq-7 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#faq-7 .tab-content {
  margin-top: 30px;
}
#faq-7 .accordion-button {
  background-color: #ffffff;
  color: #17a2b8;
  border: 1px solid #17a2b8;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#faq-7 .accordion-button.collapsed {
  background-color: #ffffff;
  color: #17a2b8;
}
#faq-7 .accordion-button:not(.collapsed) {
  background-color: #17a2b8;
  color: #ffffff;
}
#faq-7 .accordion-body {
  padding: 20px;
  background-color: #e9ecef;
  border-left: 2px solid #17a2b8;
}



#call-to-action-21 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cta-multi-image-content h2 {
  font-weight: 700;
  color: #1e293b;
}
.cta-multi-image-content p {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-multi-image-content .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-multi-image-content .btn i {
  margin-right: 8px;
}
.cta-multi-image-grid {
}
.cta-multi-image-item {
  transition: transform 0.3s ease;
}
.cta-multi-image-item:hover {
  transform: translateY(-5px);
}
.cta-multi-image-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 5px;
}
@media (max-width: 991.98px) {
  .cta-multi-image-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .cta-multi-image-grid .row {
    justify-content: center !important;
  }
}
@media (max-width: 575.98px) {
  .cta-multi-image-img {
    max-height: 60px;
  }
}


