
#hero-21 {
  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;
}
#hero-21 .hero-overlay-21 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-21 .container {
  position: relative;
  z-index: 2;
}
#hero-21 .hero-content-wrapper-21 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-21 .hero-title-21 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-21 .hero-subtitle-21 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-21 .hero-cta-button-21 {
  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;
}
#hero-21 .hero-cta-button-21:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-21 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-21 .hero-title-21 {
    font-size: 2.5rem;
  }
  #hero-21 .hero-subtitle-21 {
    font-size: 1.1rem;
  }
}



#mobile-app-30 {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#mobile-app-30 .hero-content-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#mobile-app-30 .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
  line-height: 1.3;
}
#mobile-app-30 .hero-description {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}
#mobile-app-30 .hero-image-col {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-app-30 .offset-app-image {
  position: absolute;
  max-width: 320px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease-out;
}
#mobile-app-30 .hero-download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#mobile-app-30 .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-30 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-30 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-30 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-30 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-30 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #mobile-app-30 {
    padding: 40px 0;
  }
  #mobile-app-30 .hero-content-col {
    text-align: center;
    order: 2;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #mobile-app-30 .hero-title {
    font-size: 2rem;
  }
  #mobile-app-30 .hero-description {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  #mobile-app-30 .hero-image-col {
    order: 1;
    min-height: 350px;
  }
  #mobile-app-30 .offset-app-image {
    position: relative;
    transform: none !important;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
  #mobile-app-30 .hero-download-buttons {
    justify-content: center;
  }
}



#features-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
  text-align: center;
}
#features-7 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-7 .flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 30px;
}
#features-7 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#features-7 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#features-7 .flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#features-7 .flip-card-front {
  background-color: #ffffff;
  color: #17a2b8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-back {
  background-color: #17a2b8;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-7 .flip-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .flip-card-description {
  font-size: 14px;
}



#testimonials-5 {
  position: relative;
  padding: 80px 15px;
  margin: 0 auto;
  max-width: 100%;
  color: #fff;
}
#testimonials-5 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  z-index: -1;
}
#testimonials-5 .content-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#testimonials-5 .content-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#testimonials-5 .content-wrapper p.subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
#testimonials-5 .testimonial {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#testimonials-5 .testimonial p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 10px;
}
#testimonials-5 .client-info {
  font-size: 0.95rem;
  color: #555;
}
#testimonials-5 .client-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}



#how-it-works-25 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#how-it-works-25 .section-title-container {
  margin-bottom: 60px;
}
#how-it-works-25 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}
#how-it-works-25 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-25 .vertical-stepper-container {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 900px;
}
#how-it-works-25 .vertical-stepper-container::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #0d6efd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  z-index: 0;
}
#how-it-works-25 .stepper-item {
  padding: 10px 0px;
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}
#how-it-works-25 .stepper-item:last-child {
  margin-bottom: 0;
}
#how-it-works-25 .stepper-item-content-wrapper {
  width: calc(50% - 40px);
  position: relative;
}
#how-it-works-25 .stepper-item:nth-child(odd) .stepper-item-content-wrapper {
  order: 1;
  padding-right: 40px;
  text-align: right;
}
#how-it-works-25 .stepper-item:nth-child(even) .stepper-item-content-wrapper {
  order: 3;
  margin-left: calc(50% + 40px);
  padding-left: 40px;
  text-align: left;
}
#how-it-works-25 .stepper-marker {
  width: 50px;
  height: 50px;
  line-height: 42px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #0d6efd;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px #0d6efd;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  z-index: 1;
  order: 2;
}
#how-it-works-25 .stepper-item-content {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}
#how-it-works-25 .stepper-item-content .item-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-bottom: 8px;
  display: block;
}
#how-it-works-25 .stepper-item:nth-child(odd) .stepper-item-content .item-icon {
  float: right;
  margin-left: 10px;
  margin-bottom: 0px;
}
#how-it-works-25
  .stepper-item:nth-child(even)
  .stepper-item-content
  .item-icon {
  float: left;
  margin-right: 10px;
  margin-bottom: 0px;
}
#how-it-works-25 .stepper-item-content .item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 8px;
}
#how-it-works-25 .stepper-item-content .item-description {
  font-size: 0.9rem;
  color: #5a6778;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  #how-it-works-25 .vertical-stepper-container::after {
    left: 25px;
    margin-left: 0;
  }
  #how-it-works-25 .stepper-item {
    flex-direction: column;
    align-items: flex-start;
  }
  #how-it-works-25 .stepper-marker {
    position: relative;
    left: 0;
    transform: none;
    margin-left: 0;
    top: 0;
    margin-bottom: 15px;
  }
  #how-it-works-25 .stepper-item-content-wrapper,
  #how-it-works-25 .stepper-item:nth-child(even) .stepper-item-content-wrapper {
    width: 100%;
    order: 2;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  #how-it-works-25
    .stepper-item:nth-child(odd)
    .stepper-item-content
    .item-icon,
  #how-it-works-25
    .stepper-item:nth-child(even)
    .stepper-item-content
    .item-icon {
    float: none;
    margin-right: 0;
    margin-left: 0;
  }
}



#offers-2 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: #fff;
}
#offers-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#offers-2 .container {
  position: relative;
  z-index: 2;
}
#offers-2 .offer-banner-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#offers-2 .offer-banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#offers-2 .offer-banner-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.95;
}
#offers-2 .offer-expiry-text {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.8;
}
#offers-2 .promo-code-area {
  margin-bottom: 2.5rem;
}
#offers-2 .promo-code-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
#offers-2 .promo-code-value {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 2px;
  cursor: pointer;
}
#offers-2 .btn-banner-cta {
  padding: 1rem 2.5rem;
  font-size: 1.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-2 .btn-banner-cta:hover {
  background-color: #ffca2c;
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  #offers-2 {
    padding: 80px 0;
  }
  #offers-2 .offer-banner-title {
    font-size: 2.2rem;
  }
  #offers-2 .offer-banner-description {
    font-size: 1rem;
  }
  #offers-2 .promo-code-value {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }
  #offers-2 .btn-banner-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


