
@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;
  }
}



#how-it-works-19 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f0f4f8;
}
#how-it-works-19 .section-title-container {
  margin-bottom: 60px;
}
#how-it-works-19 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2533;
}
#how-it-works-19 .section-main-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-19 .roadmap-line-container {
  position: relative;
  margin: 0 auto;
}
#how-it-works-19 .roadmap-line-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: #cbd5e0;
  z-index: 0;
  border-radius: 2px;
}
#how-it-works-19 .roadmap-points-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 10px;
  padding-bottom: 20px;
}
#how-it-works-19 .roadmap-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 18%;
  position: relative;
  z-index: 1;
}
#how-it-works-19 .roadmap-point-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 4px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
#how-it-works-19 .roadmap-point-icon-wrapper i {
  font-size: 2rem;
  color: #0d6efd;
}
#how-it-works-19 .roadmap-point-icon-wrapper .point-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
}
#how-it-works-19 .roadmap-point-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  min-height: 44px;
}
#how-it-works-19 .roadmap-point-description {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  #how-it-works-19 .roadmap-line-container::before {
    top: 5%;
    bottom: 5%;
    left: 40px;
    width: 4px;
    height: auto;
    right: auto;
  }
  #how-it-works-19 .roadmap-points-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }
  #how-it-works-19 .roadmap-point {
    width: 100%;
    flex-direction: row;
    text-align: left;
    margin-bottom: 30px;
    align-items: center;
  }
  #how-it-works-19 .roadmap-point-icon-wrapper {
    margin-bottom: 0;
    margin-right: 20px;
    width: 70px;
    height: 70px;
  }
  #how-it-works-19 .roadmap-point-icon-wrapper i,
  #how-it-works-19 .roadmap-point-icon-wrapper .point-number {
    font-size: 1.8rem;
  }
  #how-it-works-19 .roadmap-point-title {
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  #how-it-works-19 .roadmap-line-container::before {
    left: 30px;
  }
  #how-it-works-19 .roadmap-point-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  #how-it-works-19 .roadmap-point-icon-wrapper i,
  #how-it-works-19 .roadmap-point-icon-wrapper .point-number {
    font-size: 1.5rem;
  }
  #how-it-works-19 .roadmap-point-title {
    font-size: 1rem;
  }
  #how-it-works-19 .roadmap-point-description {
    font-size: 0.8rem;
  }
}



#features-16 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-16']['bg_color'] ?? '#f8f9fa' }};
}
#features-16 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-16 .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-16 .section-title p {
  margin-bottom: 30px;
  color: #6c757d;
}
#features-16 .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
}
#features-16 .nav-link {
  border: 0;
  padding: 15px; 
  margin: 5px; 
  transition: 0.3s;
  color: #343a40;
  border-radius: 5px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #e9ecef; 
  font-weight: 500;
  min-width: 150px; 
  text-align: center;
}
#features-16 .nav-link i {
  padding-right: 8px;
  font-size: 1.1rem;
  line-height: 0; 
}
#features-16 .nav-link:hover {
  color: var(--bs-primary, #0d6efd);
  background-color: #dee2e6; 
}
#features-16 .nav-link.active {
  color: #fff;
  background: var(--bs-primary, #0d6efd);
  border: 0; 
  font-weight: 600;
}
#features-16 .tab-content {
  margin-top: 30px;
}
#features-16 .tab-pane {
  transition: opacity 0.3s ease-in-out; 
}
#features-16 .tab-pane .feature-content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #343a40;
  margin-bottom: 15px;
}
#features-16 .tab-pane .feature-content p {
  color: #6c757d;
  line-height: 1.6;
}
#features-16 .tab-pane .feature-content p:last-of-type {
  margin-bottom: 20px; 
}
#features-16 .tab-pane .feature-content ul {
  list-style: none;
  padding: 0;
}
#features-16 .tab-pane .feature-content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start; 
  color: #495057;
}
#features-16 .tab-pane .feature-content ul i {
  font-size: 18px; 
  color: var(--bs-primary, #0d6efd);
  margin-right: 8px;
  flex-shrink: 0; 
  line-height: 1.4; 
  margin-top: 2px; 
}
#features-16 .tab-pane .feature-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  #features-16 .nav-link {
    padding: 12px;
    min-width: 130px; 
  }
  #features-16 .tab-pane .feature-image {
    margin-bottom: 30px; 
  }
}
@media (max-width: 767.98px) {
  #features-16 .section-title h2 {
    font-size: 28px;
  }
  #features-16 .nav-link {
    padding: 10px;
    font-size: 0.9rem;
    min-width: 110px; 
  }
  #features-16 .nav-link i {
    font-size: 1rem;
  }
   #features-16 .tab-pane .feature-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  #features-16 .nav-link {
    width: calc(50% - 10px); 
    justify-content: flex-start; 
    min-width: auto; 
  }
   #features-16 .nav-tabs {
     justify-content: space-between; 
   }
}



#why-choose-us-14 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#why-choose-us-14 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-14 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#why-choose-us-14 .nav-tabs {
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 2rem;
  justify-content: center;
}
#why-choose-us-14 .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  color: #6c757d;
  font-weight: 600;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
#why-choose-us-14 .nav-tabs .nav-link.active,
#why-choose-us-14 .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-primary, #0d6efd);
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: 2px solid #fff;
  position: relative;
  top: 1px;
}
#why-choose-us-14 .nav-tabs .nav-link:hover:not(.active) {
  border-color: #e9ecef #e9ecef #dee2e6;
  background-color: #e9ecef;
  color: #495057;
}
#why-choose-us-14 .tab-content {
  padding-top: 1rem;
}
#why-choose-us-14 .tab-pane .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.25rem;
}
#why-choose-us-14 .tab-pane .feature-icon {
  font-size: 1.5rem;
  color: var(--bs-primary, #0d6efd);
  margin-right: 1rem;
  min-width: 2em;
  text-align: center;
  margin-top: 0.25rem;
}
#why-choose-us-14 .tab-pane .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #495057;
}
#why-choose-us-14 .tab-pane .feature-content p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}



#testimonials-2 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#testimonials-2 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#testimonials-2 .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#testimonials-2 .section-header p {
  font-size: 1.1rem;
  color: #777;
}
#testimonials-2 .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-2 .testimonial-card {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#testimonials-2 .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-2 .testimonial-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}
#testimonials-2 .testimonial-card .client-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
#testimonials-2 .testimonial-card .client-position {
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 576px) {
  #testimonials-2 .testimonial-card {
    flex: 1 1 100%;
  }
}



#customer-support-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#customer-support-6 .section-header {
  margin-bottom: 4rem;
}
#customer-support-6 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}
#customer-support-6 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
#customer-support-6 .section-description {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #495057;
}
#customer-support-6 .support-card {
  border: none;
  border-radius: 0.5rem;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}
#customer-support-6 .support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
#customer-support-6 .support-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#customer-support-6 .support-card .support-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
  line-height: 1;
}
#customer-support-6 .support-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #343a40;
}
#customer-support-6 .support-card .card-text {
  color: #6c757d;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
#customer-support-6 .support-card .support-info {
  font-size: 0.95rem;
  margin-top: auto;
  word-break: break-word;
}
#customer-support-6 .support-card .support-info a {
  text-decoration: none;
  font-weight: 500;
}
#customer-support-6 .support-card .support-info a:hover {
  text-decoration: underline;
}
#customer-support-6 .support-card .btn {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #customer-support-6 .section-title {
    font-size: 2.2rem;
  }
  #customer-support-6 .support-card .card-body {
    padding: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  #customer-support-6 .section-header {
    margin-bottom: 3rem;
  }
  #customer-support-6 .section-title {
    font-size: 1.9rem;
  }
  #customer-support-6 .section-subtitle {
    font-size: 1rem;
  }
}



#call-to-action-3 {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 70px 15px;
  color: #fff;
  text-align: center;
}
#call-to-action-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#call-to-action-3 .content {
  position: relative;
  z-index: 2;
}
#call-to-action-3 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-3 p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
#call-to-action-3 .btn {
  background-color: #ff5722;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-3 .btn:hover {
  background-color: #e64a19;
}
#call-to-action-3 .statistics {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
#call-to-action-3 .stat {
  text-align: center;
}
#call-to-action-3 .stat .value {
  font-size: 2rem;
  font-weight: bold;
}
#call-to-action-3 .stat .label {
  font-size: 1rem;
  color: #ddd;
}



#faq-8 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-8 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-8 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-8 .faq-item {
  margin-bottom: 40px;
}
#faq-8 .faq-question {
  font-size: 20px;
  font-weight: bold;
  color: #17a2b8;
  cursor: pointer;
  margin-bottom: 15px;
}
#faq-8 .faq-image {
  display: none;
  margin-top: 10px;
}
#faq-8 .faq-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #faq-8 .faq-image img {
    height: auto;
  }
}



#offers-4 {
  padding: 80px 0;
  background-color: #212529;
  color: #f8f9fa;
}
#offers-4 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #fff;
}
#offers-4 .offer-countdown-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
#offers-4 .offer-countdown-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
#offers-4 .offer-countdown-description {
  font-size: 1rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
#offers-4 .countdown-timer-display {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#offers-4 .countdown-timer-display i {
  margin-right: 8px;
  color: #ffc107;
}
#offers-4 .countdown-prefix {
  margin-right: 5px;
  opacity: 0.8;
}
#offers-4 .offer-progress-area {
  margin-bottom: 2rem;
  padding-top: 1rem;
}
#offers-4 .progress {
  height: 1.2rem;
  border-radius: 50rem;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: visible;
  position: relative;
}
#offers-4 .progress-bar {
  font-weight: 600;
  font-size: 0.85rem;
  color: #212529;
  border-radius: 50rem;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
#offers-4 .progress-label {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -1.8rem;
  font-size: 0.9rem;
  color: #adb5bd;
}
#offers-4 .btn-countdown-cta {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #ffc107;
  border: none;
  color: #333;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#offers-4 .btn-countdown-cta:hover {
  background-color: #ffca2c;
  transform: scale(1.05);
}


