
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



#mobile-app-2 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#mobile-app-2 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 30px;
}
#mobile-app-2 .description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
#mobile-app-2 .screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
#mobile-app-2 .screenshot-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#mobile-app-2 .screenshot-item img {
  width: 100%;
  height: auto;
}
#mobile-app-2 .screenshot-caption {
  padding: 10px;
  font-size: 0.95rem;
  color: #555;
}
#mobile-app-2 .download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#mobile-app-2 .download-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s;
}
#mobile-app-2 .download-btn:hover {
  background: #0056b3;
}
#mobile-app-2 .download-btn i {
  margin-right: 10px;
}



#features-20 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-20']['bg_color'] ?? '#f8f9fa' }};
}
#features-20 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-20 .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-20 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-20 .step-item {
  position: relative;
  padding-left: 80px; 
  margin-bottom: 40px; 
  min-height: 60px; 
}
#features-20 .step-number {
  position: absolute;
  left: 0;
  top: 0; 
  font-size: 48px; 
  font-weight: 700;
  color: var(--bs-primary-light, #e0e0e0); 
  line-height: 1;
  z-index: 1;
  transition: color 0.3s ease;
}
#features-20 .step-item:hover .step-number {
    color: var(--bs-primary, #0d6efd); 
}
#features-20 .step-content {
   position: relative;
   z-index: 2;
}
#features-20 .step-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}
#features-20 .step-content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #features-20 .section-title h2 {
    font-size: 28px;
  }
  #features-20 .step-item {
    padding-left: 65px; 
    min-height: 50px;
  }
  #features-20 .step-number {
    font-size: 40px; 
  }
  #features-20 .step-content h4 {
    font-size: 18px;
  }
   #features-20 .step-content p {
     font-size: 15px;
   }
}
@media (max-width: 575.98px) {
   #features-20 .step-item {
     padding-left: 0; 
     padding-top: 55px; 
     text-align: center; 
   }
   #features-20 .step-number {
     left: 50%; 
     transform: translateX(-50%);
     top: 0;
   }
}



#how-it-works-12 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
#how-it-works-12 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-12 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}
#how-it-works-12 .section-main-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-12 .timeline {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1000px;
}
#how-it-works-12 .timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #0d6efd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#how-it-works-12 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
#how-it-works-12 .timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: white;
  border: 4px solid #0d6efd;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
#how-it-works-12 .timeline-item.left {
  left: 0;
}
#how-it-works-12 .timeline-item.right {
  left: 50%;
}
#how-it-works-12 .timeline-item.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 30px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e9ecef;
}
#how-it-works-12 .timeline-item.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 30px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e9ecef transparent transparent;
}
#how-it-works-12 .timeline-item.right::after {
  left: -12.5px;
}
#how-it-works-12 .timeline-content {
  padding: 20px 30px;
  background-color: #e9ecef;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
#how-it-works-12 .timeline-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 10px;
  float: left;
}
#how-it-works-12 .timeline-badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  color: #fff;
  background-color: #6c757d;
  margin-bottom: 10px;
}
#how-it-works-12 .timeline-title {
  margin-top: 0;
  color: #343a40;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
#how-it-works-12 .timeline-description {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #how-it-works-12 .timeline::after {
    left: 31px;
  }
  #how-it-works-12 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  #how-it-works-12 .timeline-item.left::before,
  #how-it-works-12 .timeline-item.right::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e9ecef transparent transparent;
  }
  #how-it-works-12 .timeline-item.left::after,
  #how-it-works-12 .timeline-item.right::after {
    left: 18px;
  }
  #how-it-works-12 .timeline-item.right {
    left: 0%;
  }
}



#faq-14 {
  padding: 60px 0;
}
#faq-14 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-14 .faq-sidebar {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
#faq-14 .faq-sidebar .nav-link {
  color: #495057;
  padding: 0.6rem 1rem;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
#faq-14 .faq-sidebar .nav-link:hover {
  color: #0d6efd;
  background-color: #f1f5f9;
  border-left-color: #cfe2ff;
}
#faq-14 .faq-sidebar .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  background-color: #e7f1ff;
  border-left-color: #0d6efd;
}
#faq-14 .faq-content-area {
}
#faq-14 .faq-content-item {
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}
#faq-14 .faq-content-item h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
#faq-14 .faq-content-item p {
  color: #495057;
  line-height: 1.7;
}
#faq-14 .faq-content-item p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #faq-14 .faq-sidebar {
    position: static;
    height: auto;
    margin-bottom: 2rem;
    overflow-y: visible;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }
  #faq-14 .faq-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  #faq-14 .faq-sidebar .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  #faq-14 .faq-sidebar .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #0d6efd;
    background-color: transparent;
  }
  #faq-14 .faq-sidebar .nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #cfe2ff;
    background-color: transparent;
  }
}



#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;
}


