
#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-21 {
  padding: 80px 0;
  background-color: #fff;
}
#mobile-app-21 .tab-image-col {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-app-21 .tab-app-image {
  max-width: 85%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#mobile-app-21 .tab-content-col .nav-tabs {
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 1.5rem;
}
#mobile-app-21 .tab-content-col .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #495057;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}
#mobile-app-21 .tab-content-col .nav-tabs .nav-link:hover {
  border-color: #e9ecef;
  color: #0056b3;
}
#mobile-app-21 .tab-content-col .nav-tabs .nav-link.active {
  color: #0d6efd;
  background-color: transparent;
  border-color: #0d6efd;
  border-bottom-width: 2px;
}
#mobile-app-21 .tab-content .tab-pane {
  padding: 1rem 0.5rem;
  color: #343a40;
  line-height: 1.7;
  min-height: 250px;
}
#mobile-app-21 .tab-content .tab-pane h3,
#mobile-app-21 .tab-content .tab-pane h4,
#mobile-app-21 .tab-content .tab-pane h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
}
#mobile-app-21 .tab-content ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-top: 1rem;
}
#mobile-app-21 .tab-content ul li {
  margin-bottom: 0.5rem;
}
#mobile-app-21 .tab-download-buttons {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#mobile-app-21 .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-21 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-21 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-21 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-21 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-21 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #mobile-app-21 .tab-image-col {
    margin-bottom: 2.5rem;
  }
  #mobile-app-21 .tab-app-image {
    max-width: 60%;
  }
  #mobile-app-21 .tab-download-buttons {
    justify-content: center;
  }
  #mobile-app-21 .tab-content-col {
    text-align: center;
  }
  #mobile-app-21 .tab-content .tab-pane {
    text-align: left;
  }
}



#features-17 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-17']['bg_color'] ?? '#ffffff' }};
}
#features-17 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-17 .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-17 .section-title p {
  margin-bottom: 40px; 
  color: #6c757d;
}
#features-17 .feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  height: 100%; 
  display: flex;
  flex-direction: column; 
  text-align: center;
  border: 1px solid #eef0f2; 
}
#features-17 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
#features-17 .feature-icon {
  margin-bottom: 20px; 
  flex-shrink: 0; 
}
#features-17 .feature-icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--bs-primary, #0d6efd);
  transition: color 0.3s ease-in-out;
}
#features-17 .feature-item:hover .feature-icon i {
  color: var(--bs-primary-darker, #0a58ca); 
}
#features-17 .feature-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #343a40;
  flex-grow: 0; 
}
#features-17 .feature-description {
  line-height: 1.6;
  color: #6c757d;
  font-size: 15px;
  flex-grow: 1; 
}
@media (max-width: 767.98px) {
  #features-17 .section-title h2 {
    font-size: 28px;
  }
   #features-17 .feature-item {
     padding: 20px;
   }
   #features-17 .feature-icon i {
     font-size: 40px;
   }
   #features-17 .feature-title {
      font-size: 17px;
   }
}



#testimonials-8 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}
#testimonials-8 .flip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-8 .flip-card {
  position: relative;
  width: 300px;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
#testimonials-8 .flip-card:hover {
  transform: rotateY(180deg);
}
#testimonials-8 .flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#testimonials-8 .flip-front {
  background: #fff;
  text-align: center;
  padding: 20px;
}
#testimonials-8 .flip-front img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-8 .flip-front h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#testimonials-8 .flip-front p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
}
#testimonials-8 .flip-back {
  background: #f8f9fa;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
}



#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%;
  }
}



#overview-10 {
  overflow: hidden;
  background-color: var(--section-bg-color, #0a183d);
  color: var(--section-text-color, #ffffff);
  position: relative;
}
#overview-10 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}
#overview-10 .section-heading {
  color: inherit;
  margin-bottom: 1rem;
}
#overview-10 .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}
#overview-10 .stat-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
}
#overview-10 .stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--bs-primary);
  display: block;
}
#overview-10 .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: inherit;
}
#overview-10 .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: inherit;
}
#overview-10 .stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #overview-10 .stat-item {
    margin-bottom: 0;
  }
}



#faq-22 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-22 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
  font-size: 2rem;
}
#faq-22 .faq-alternating-block {
  margin-bottom: 5rem;
}
#faq-22 .faq-alternating-block:last-child {
  margin-bottom: 0;
}
#faq-22 .faq-alternating-block:nth-child(even) {
  background-color: #f8f9fa;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 15px;
}
#faq-22 .faq-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
}
#faq-22 .faq-content-col h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
#faq-22 .faq-content-col p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}
#faq-22 .faq-image-col {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#faq-22 .faq-alternating-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  #faq-22 .faq-alternating-block {
    margin-bottom: 3rem;
  }
  #faq-22 .faq-image-col {
    margin-bottom: 1.5rem;
    order: 1 !important;
  }
  #faq-22 .faq-content-col {
    order: 2 !important;
    text-align: center;
  }
  #faq-22 .faq-content-col p {
    text-align: left;
  }
  #faq-22 .faq-alternating-image {
    max-width: 80%;
  }
  #faq-22 .faq-alternating-block:nth-child(even) {
    padding: 2rem 1rem;
  }
}


