:root {
  --primary-color: #ef3131;
  --secondary-color: #02a2ab;
  --accent-color: #ff961e;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --black: #000;
  --gray: #6c757d;
  --light-gray: #f1f1f1;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-light);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: capitalize;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #d62828;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(239, 49, 49, 0.2);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-app {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--dark-color);
  color: var(--white);
  border-radius: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn-app i {
  font-size: 24px;
  margin-right: 10px;
}

.btn-app span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.2;
}

.btn-app span strong {
  font-size: 16px;
}

.btn-app.small {
  padding: 8px 15px;
  margin-right: 5px;
}

.btn-app.small i {
  font-size: 18px;
}

.btn-app.small span {
  font-size: 10px;
}

.btn-app.small span strong {
  font-size: 12px;
}

.btn-app:hover {
  background-color: #000;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-download {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 50px;
}

.btn-download:hover {
  background-color: #d62828;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(239, 49, 49, 0.2);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2 span {
  color: var(--primary-color);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

.dark-section {
  background-color: var(--dark-color);
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  text-align: center;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo svg {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.loader-logo span {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Header */
.header {
  padding: 0px 0;
  transition: var(--transition);
  z-index: 999;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
}

.logo-dark {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}

.header.scrolled .logo-light {
  display: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  margin-right: 70px;
  color: var(--dark-color);
}

.navbar-brand img {
  height: 70px;
}

.navbar-brand svg {
  margin-right: 10px;
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  font-size: 24px;
  color: var(--dark-color);
  padding: 5px 10px;
}


.header.scrolled  .nav-link {
  color:black;
}


.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 10px !important;
  position: relative;
}
.navbar {
  padding: 0 0;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 30px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Offcanvas Mobile Menu */
.offcanvas {
  background-color: var(--dark-color);
  color: var(--white);
}

.offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 1;
}

.offcanvas-title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
}

.offcanvas-title svg {
  margin-right: 10px;
}

.offcanvas-title span {
  color: var(--primary-color);
}

.offcanvas-body .nav-link {
  color: var(--white);
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(239, 49, 49, 0.1),
    rgba(2, 162, 171, 0.1)
  );
  overflow: hidden;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section h1 span {
  color: var(--primary-color);
}

.hero-section p.lead {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-swiper {
  padding-bottom: 0px;
}

.hero-swiper .swiper-slide {
  text-align: center;
}

.hero-swiper .swiper-slide img {
  height: 550px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: none;
  background-color: var(--light-gray);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero-curve .shape-fill {
  fill: var(--white);
}

/* About Section */
.about-images {
  position: relative;
  height: 500px;
}

.about-images .img-container {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-images .main-img {
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;

  z-index: 1;
}

.about-images img {
  object-fit: cover !important;
  object-position: center;
}

.about-images .top-img {
  width: 40%;
  height: 40%;
  left: 5%;
  top: 5%;
  z-index: 2;
}

.about-images .bottom-img {
  width: 40%;
  height: 40%;
  right: 5%;
  bottom: 5%;
  z-index: 2;
}

.about-images:hover .main-img {
  transform: scale(1.05);
}

.about-features {
  margin: 30px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.about-features li i {
  font-size: 20px;
  margin-right: 10px;
}

.about-features li span {
  font-weight: 500;
}

.about-stats {
  display: flex;
  margin-top: 30px;
}

.about-stats .stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.about-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: white;
}

.about-stats .stat-item h4 {
  font-size: 30px;
  color: #ff961e;
  margin-bottom: 5px;
}

.about-stats .stat-item p {
  font-weight: 500;
  margin-bottom: 0;
  color: #ffb25a;
}

/* Services Section */
.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: var(--transition);
  /* height: 100%; */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 30px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.feature-card {
  background-color: rgba(255, 255, 255, 0.05);

  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  /* height: 100%; */
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-1px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 30px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -2;
  transition: var(--transition);
}

.feature-card:hover .feature-overlay {
  opacity: 0.1;
}

/* How It Works Section */
.process-steps {
  position: relative;
  padding: 30px 0;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 2px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.step {
  display: flex;
  position: relative;
  margin-bottom: 40px;
  align-items: flex-start;
  z-index: 2;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
  padding-top: 5px;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(239, 49, 49, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-left: 30px;
  flex-shrink: 0;
}

.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.video-play-btn:hover {
  background-color: #d62828;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.video-features li i {
  margin-right: 10px;
}

.video-features li span {
  font-weight: 500;
}

/* App Screens Section */
.screen-swiper {
  padding: 0 0px;
}

.screen-swiper .swiper-slide {
  text-align: center;

  transition: var(--transition);
}

.screen-swiper .swiper-slide img {
  /* max-height: 600px; */
  width: 100% !important;
  margin: 0 auto;

  transition: var(--transition);
  transform: scale(0.9);
  opacity: 0.7;
  margin-right: 0px;
}

.screen-swiper .swiper-slide-active img {
  transform: scale(1);
  opacity: 1;
  border-radius: 30px;
  border: 5px solid rgb(255, 250, 225);
}

.screen-swiper .swiper-button-next,
.screen-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.screen-swiper .swiper-button-next::after,
.screen-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.screen-swiper .swiper-button-next:hover,
.screen-swiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
}

/* App Download Section */
.app-download-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.app-download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/pattern.png") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.app-download-section .container {
  position: relative;
  z-index: 2;
}

.app-download-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.app-download-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
}

.feature-item i {
  margin-right: 10px;
  font-size: 18px;
}

.feature-item span {
  font-weight: 500;
  font-size: 14px;
}

/* Contact Section */
.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(239, 49, 49, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(239, 49, 49, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(239, 49, 49, 0.25);
}

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

/* Footer */
.footer {
  background-color: #0f0f1a;
  color: var(--white);
  padding-top: 80px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo img {
  height: 70px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.newsletter-form {
  position: relative;
  margin-bottom: 20px;
}

.newsletter-form input {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: none;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #d62828;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #d62828;
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-section {
    padding: 150px 0 80px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .about-images {
    height: 400px;
  }

  .process-steps::before {
    left: 35px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-left: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .app-buttons {
    justify-content: center;
  }

  .about-images {
    height: 300px;
    margin-bottom: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .step-number {
    margin-bottom: 15px;
  }

  .step-icon {
    display: none;
  }

  .screen-swiper {
    padding: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .btn-app {
    width: 100%;
    margin-right: 0;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-stats .stat-item {
    padding: 10px 0;
  }

  .about-stats .stat-item:not(:last-child)::after {
    display: none;
  }

  .footer-bottom .row > div {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/* Dark Hero Section */
.dark-hero {
  background-color: var(--dark-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dark-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(239, 49, 49, 0.333) 0%,
    rgba(2, 163, 171, 0.929) 50%,
    rgba(255, 150, 30, 0.834) 100%
  );
  z-index: 0;
}

.dark-hero .container {
  position: relative;
  z-index: 1;
}

.dark-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 20px;
}

.dark-hero h1 span {
  color:#ff961e;
}

.dark-hero p.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

.dark-hero .app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dark-hero .btn-app {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-hero .btn-app:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.dark-hero .hero-swiper .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}

.dark-hero .hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.dark-hero .hero-curve svg path {
  fill: #ef3131;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .dark-hero h1 {
    font-size: 36px;
  }

  .dark-hero p.lead {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .dark-hero {
    text-align: center;
  }

  .dark-hero h1 {
    font-size: 32px;
  }

  .dark-hero .app-buttons {
    justify-content: center;
  }
}

.about-features {
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-feature .feature-icon {
  margin-right: 20px;
  height: 50px;
  width: 50px;
}

.about-feature h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.about-feature p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.about-features .feature-icon {
  border-radius: 0;
}

/* Dark Services Section */
.dark-section.services-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.dark-section.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(239, 49, 49, 0.05) 0%,
    rgba(2, 162, 171, 0.05) 50%,
    rgba(255, 150, 30, 0.05) 100%
  );
  z-index: 0;
}

.dark-section.services-section .container {
  position: relative;
  z-index: 1;
}

.dark-section.services-section .section-title h2 {
  color: var(--white);
}

.dark-section.services-section .section-title h2 span {
  color: var(--primary-color);
}

.dark-section.services-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-section.services-section .service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  /* height: 100%; */
}

.dark-section.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section.services-section .service-card h3 {
  color: var(--white);
}

.dark-section.services-section .service-card p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-section.services-section .service-icon {
  transition: var(--transition);
}

.dark-section.services-section .service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .dark-section.services-section .service-card {
    margin-bottom: 30px;
  }
}

/* Light Why Choose Us Section */
.why-us-section {
  background-color: #f9f9f9;
}

.why-us-section .section-title h2 span {
  color: var(--primary-color);
}

/* Feature Cards */
.feature-card.light-card {
  background-color: white;
  padding: 10px;
  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card.light-card:hover {
  /* transform: translateY(-5px) rotate(2deg); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card.light-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.feature-card.light-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card.light-card h3 {
  font-size: 20px;
  margin-bottom: 0px;
  color: var(--dark-color);
}

.feature-card.light-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Image Container */
.feature-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
  height: 100%;
}

.feature-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.feature-image-container:hover .image-overlay {
  opacity: 0.9;
}

.image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: white;
  z-index: 2;
}

.image-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.image-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 18px;
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .feature-image-container {
    height: 400px;
    margin-top: 30px;
  }
}

.feature-card {
  display: flex;
  align-items: center;
}

.why-us-section .col-12 {
  margin-bottom: 5px !important;
}

/* How It Works Section - Modern */
.how-it-works-section {
  position: relative;
  overflow: hidden;
}

/* Horizontal Process Steps */
.process-steps-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 50px;
}

.step-horizontal {
  position: relative;
  width: 23%;
  text-align: center;
  z-index: 1;
}

.step-number-horizontal {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.step-horizontal:hover .step-number-horizontal {
  transform: scale(1.1) rotate(5deg);
}

.step-icon-horizontal {
  font-size: 24px;
  margin-top: 5px;
}

.step-content-horizontal {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-horizontal:hover .step-content-horizontal {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-connector {
  position: absolute;
  top: 40px;
  left: 60%;
  width: 40%;
  height: 4px;
  z-index: -1;
}

/* Video Section Modern */
.video-container-modern {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container-modern img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.video-container-modern:hover .video-overlay {
  opacity: 0.5;
}

.video-container-modern:hover img {
  transform: scale(1.05);
}

.video-play-btn-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: white;
  color: #ef3131;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
}

.video-play-btn-modern:hover {
  background-color: #ef3131;
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-features-modern {
  list-style: none;
  padding: 0;
}

.video-features-modern li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.video-features-modern .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.video-features-modern li:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .process-steps-horizontal {
    flex-wrap: wrap;
    padding: 0;
  }

  .step-horizontal {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    display: flex;
    align-items: center;
  }

  .step-number-horizontal {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }

  .step-connector {
    display: none;
  }

  .step-content-horizontal {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .step-horizontal {
    flex-direction: column;
    text-align: center;
  }

  .step-number-horizontal {
    margin: 0 auto 15px;
  }
}

.how-it-works-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--dark-color) 50%,
    var(--light-color) 50%
  );
}

.process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;

  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.step-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--accent-color);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid var(--white);
}

.process-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.col-lg-3:last-child .step-connector {
  display: none;
}

@media (max-width: 991px) {
  .step-connector {
    display: none;
  }

  .process-card {
    margin-bottom: 1.5rem;
  }

  .how-it-works-section {
    background: linear-gradient(
      to bottom,
      var(--dark-color) 40%,
      var(--light-color) 60%
    );
  }
}

@media (max-width: 767px) {
  .process-card {
    padding: 1.5rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Background Decorative Elements */
.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 49, 49, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
}

.how-it-works-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 162, 171, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
}

/* .navbar-expand-lg .navbar-collapse {
  display: flex !important
;
  flex-basis: auto;
  justify-content: space-between;
} */



.footer-widget ul{
    padding-left: 0px;
}

.policy-title {
  margin-top: 100px;
  text-align: center;
  /* color: #fff;
  background-color: #ef3131; */
  padding: 50px 0px;
}

.policy-title p ,
.policy-title a {
  color: #fff;
}

.inner-header {
  height: 300px;
}

.inner-header .title {
  color: #fff !important;
  text-align: center;
  position: relative;
  padding-top: 50px;
}

.inner-header .title p,
.inner-header .title a {
  color: #fff;
}

.policy-content {
  padding: 50px 0px;
}

.policy-list li {
  font-size: 13px;
  padding-top: 10px;
}

.policy-list h6 {
  margin-bottom: 10px;
}

.inner-list {
  /* list-style-type: disc; */
  padding-bottom: 7px;
}

.inner-list .inner-title {
  padding-top: 10px;
}

.policy-section {
  position: absolute;
  top: 100px;
  left: 100px;
}