
@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-16 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#mobile-app-16 .app-carousel-container {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#mobile-app-16 .carousel-item img {
  max-height: 500px;
  object-fit: contain;
  margin: 0 auto;
}
#mobile-app-16 .carousel-control-prev-icon,
#mobile-app-16 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 1rem;
  background-size: 50% 50%;
}
#mobile-app-16 .carousel-indicators [data-bs-target] {
  background-color: rgba(0, 0, 0, 0.7);
}
#mobile-app-16 .carousel-text-content {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#mobile-app-16 .carousel-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
#mobile-app-16 .carousel-description {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}
#mobile-app-16 .carousel-download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#mobile-app-16 .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-16 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-16 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-16 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-16 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-16 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}



#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;
}



#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;
  }
}


