/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Variables */
:root {
  --primary-color: #ff9900;
  --secondary-color: #26910f;
  --dark-color: #1a2e22;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --dark-gray: #343a40;
  --body-font: "Poppins", sans-serif;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #e68a00;
  border-color: #e68a00;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-download {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-download:hover {
  background-color: #1e7a0c;
  border-color: #1e7a0c;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(38, 145, 15, 0.2);
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.section-header .subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.container {
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Header */
.header {
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  z-index: 999;
  background-color: white;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar {
  padding: 0;
}

.navbar-brand .logo {
  height: 55px;
  transition: all 0.3s ease;
}

.header.scrolled .navbar-brand .logo {
  height: 55px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--white);
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-nav .nav-item {
  margin: 0 0.5rem;
}

.navbar-nav .nav-link {
  color: black;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 0, 5rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.app-download-btn .btn-download {
  padding: 0.5rem 1.5rem;
}

/* Offcanvas Mobile Menu */
.offcanvas {
  background-color: var(--dark-color);
}

.offcanvas-header .logo {
  height: 35px;
}

.offcanvas-header .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 1;
}

.offcanvas-body .navbar-nav {
  padding-top: 1rem;
}

.offcanvas-body .nav-link {
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  color: var(--primary-color);
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-section {
  position: relative;
  padding: 10rem 0 12rem;
  color: var(--white);
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-section h1 span {
  color: var(--primary-color);
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.btn-app-store,
.btn-play-store {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.btn-app-store {
  background-color: #f29200;
  color: var(--white);
}

.btn-play-store {
  background-color: #26910f;
  color: #ffffff;
}

.btn-app-store i,
.btn-play-store i {
  font-size: 1.75rem;
  margin-right: 0.75rem;
}

.btn-app-store div,
.btn-play-store div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-app-store div span,
.btn-play-store div span {
  font-size: 0.75rem;
}

.btn-app-store div strong,
.btn-play-store div strong {
  font-size: 1rem;
}

.btn-app-store:hover {
  transform: translateY(-5px);
  color: #26910f;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-play-store:hover {
  transform: translateY(-5px);
  color: #f29200;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .swiper-pagination {
  bottom: 110px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 60px;
  height: 60px;
  background: none;
  opacity: 0.5;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.hero-swiper .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid var(--primary-color);
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--light-color);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section .lead {
    font-size: 1rem;
  }
  .hero-section {
    padding: 6rem 0 8rem;
  }
  .hero-swiper .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
  }
}

/* About Section */
.about-section {
  background-color: var(--light-color);
}

.about-images {
  position: relative;
  /* height: 500px; */
}

.about-images .img-1,
.about-images .img-2,
.about-images .img-3 {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-images .img-1 {
  width: 60%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-images .img-2 {
  width: 50%;
  top: 30%;
  right: 0;
  z-index: 2;
}

.about-images .img-3 {
  width: 55%;
  bottom: 0;
  left: 10%;
  z-index: 3;
}

.about-images:hover .img-1 {
  transform: translateY(-10px);
}

.about-images:hover .img-2 {
  transform: translateY(10px);
}

.about-images:hover .img-3 {
  transform: translateY(-5px) rotate(5deg);
}

.about-features {
  margin: 2rem 0;
}

.about-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.about-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.service-card {
  background-color: white;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
  transition: var(--transition);

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  z-index: -1;
  
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: var(--white) !important;
}

.service-card:hover h3{
 
  color: var(--white) !important;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon i,
.service-card:hover .read-more {
  color: var(--white);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.service-card p {
  margin-bottom: 0.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.read-more i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: var(--transition);
}

.read-more:hover {
  transform: translateX(5px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.feature-card {
  display: flex;
  background-color: var(--white);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, var(--dark-color), #2a4b3a);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
  color: var(--white);
}

.why-choose-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem 0rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  /* height: 100%; */
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.why-choose-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
  transition: var(--transition);
}

.why-choose-card:hover .icon-box {
  transform: rotateY(10deg);
  background: var(--white);
  color: var(--primary-color);
}

.why-choose-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.why-choose-card p {
  margin-bottom: 0;
  opacity: 0.8;
}

/* How It Works Section */
.how-it-works-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.steps-wrapper {
  position: relative;
  padding-top: 3rem;
}

.step-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* .step-line::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
} */

.step-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.step-card p {
  margin-bottom: 0;
}

/* App Screens Section */
.app-screens-section {
  padding: 8rem 0;
  background: linear-gradient(
    to bottom,
    var(--light-color) 59%,
    var(--dark-color) 41%
  );
}

.screen-swiper {
  padding: 3rem 0;
  position: relative;
}

.screen-swiper .swiper-slide {
  text-align: center;
  transition: var(--transition);
}

.screen-swiper .swiper-slide img {
  max-height: 500px;
  border-radius: 20px;
  border: 7px solid black;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.screen-swiper .swiper-slide:hover img {
  transform: translateY(-10px);
}

.screen-swiper .swiper-button-next,
.screen-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--dark-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.screen-swiper .swiper-button-next::after,
.screen-swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.screen-swiper .swiper-button-next:hover,
.screen-swiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--dark-color);
  color: var(--white);
}

.testimonial-swiper {
  padding: 2rem 0 4rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.rating {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.rating i {
  margin-right: 0.25rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  line-height: 1;
}

.testimonial-card p::before {
  top: -1rem;
  left: -1.5rem;
}

.testimonial-card p::after {
  bottom: -2rem;
  right: -1rem;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.user-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.user-info span {
  opacity: 0.8;
  font-size: 0.9rem;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* App Download Section */
.app-download-section {
  padding: 8rem 0;
  background-color: var(--dark-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.app-download-section .section-header h2 {
  color: var(--white);
}

.app-download-section p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.contact-info {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 153, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-info-item .content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-info-item .content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: 50px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
  resize: none;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 6rem 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.5);
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-widget {
  margin-bottom: 3rem;
}

.footer-widget h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.newsletter-form {
  position: relative;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.download-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.download-btn i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.download-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
}

.copyright {
  padding: 2rem 0;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}


.copyright p a{
 color:#e68a00;
 text-transform: uppercase;
}


.copyright p a:hover{
 color:#ffffff;
 text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  color: var(--white);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 8rem 0 10rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .about-images {
    height: 400px;
    margin-bottom: 3rem;
  }

  .steps-wrapper .step-line::before {
    display: none;
  }

  .step-card {
    margin-bottom: 1.5rem;
  }

  .footer::before {
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 7rem 0 8rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .app-buttons {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-images {
    height: 350px;
  }

  .screen-swiper .swiper-button-next,
  .screen-swiper .swiper-button-prev {
    display: none;
  }

  .footer-widget {
    margin-bottom: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 6rem 0 7rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .btn-app-store,
  .btn-play-store {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .about-images {
    height: 300px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
}

.section {
  padding: 80px 0;
}

.sasa {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
  background-color: #ffffff00;
  perspective: 1000px;
}
.mock-container {
  display: flex;
  gap: 40px;
  transform-style: preserve-3d;
}
.phone-mockup {
  position: relative;
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotateX(10deg) rotateY(0deg) translateZ(0);
  transition: transform 0.3s;
}
.phone-mockup:hover {
  transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
}
.phone-mockup .screen {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(10px);
}
.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 11px;
  background: #0c0c0c;
  border-radius: 20px;
  z-index: 1;
}
/* Positioning for 3D effect */
.phone-mockup:nth-child(1) {
  transform: rotateX(0deg) translateZ(0);
  margin-top: 75px;
}
.phone-mockup:nth-child(2) {
  transform: rotateX(0deg) translateZ(20px);
  margin-top: 0px;
}
.phone-mockup:nth-child(3) {
  transform: rotateX(0deg) translateZ(0px);
  margin-top: -75px;
}

.aqaq {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
  background-color: #ffffff00;
  perspective: 1000px;
}
.my-download-collection {
  display: flex;
  gap: 0px;
  transform-style: preserve-3d;
}
.my-download-collection .phone-mockup {
  position: relative;
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.my-download-collection .phone-mockup .screen {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(10px);
}
.my-download-collection .phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-download-collection .phone-mockup::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: #333;
  border-radius: 20px;
  z-index: 1;
}
/* 3D positioning and rotation to face center */
.my-download-collection .phone-mockup:nth-child(1) {
  transform: rotateY(30deg) translateZ(-100px) rotateX(10deg);
  margin-top: 0;
}
.my-download-collection .phone-mockup:nth-child(2) {
  transform: rotateX(0deg) translateZ(0);
  margin-top: 0;
}
.my-download-collection .phone-mockup:nth-child(3) {
  transform: rotateY(-30deg) translateZ(-100px) rotateX(10deg);
  margin-top: 0;
}





.footer .download-buttons{
    flex-direction: row;

}


@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}












:root {
  --primary-color: #ff9900;
  --secondary-color: #26910f;
  --dark-color: #1a2e22;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --dark-gray: #343a40;
  --body-font: "Poppins", sans-serif;
  --transition: all 0.3s ease;
}

/* Breadcrumb Section */
.my-breadcu {
  background-color: var(--primary-color);
  width: 100%;
  display: flex;
  margin-top: 70px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Heights */
@media (min-width: 992px) {
  .my-breadcu { height: 200px; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .my-breadcu { height: 250px; }
}
@media (max-width: 767px) {
  .my-breadcu { height: 200px; }
}

/* Breadcrumb Heading */
.my-breadcu h1 {
  color: var(--white);
  font-family: var(--body-font);
  font-size: 2.6rem;
}




/* Common Content Styles */
.common-styles-for h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.common-styles-for h4 {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.common-styles-for p {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.common-styles-for ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}


.section-padding{
  padding:80px 0;
}
.common-styles-for ul li {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.common-styles-for ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Responsive Text */
@media (max-width: 767px) {
  .my-breadcu h1 {
    font-size: 1.7rem;
  }

  .common-styles-for h3 {
    font-size: 1.3rem;
  }

  .common-styles-for h4 {
    font-size: 1.1rem;
  }

  .common-styles-for p,
  .common-styles-for ul li {
    font-size: 0.9rem;
  }
}


.common-styles-for {
  background: white;
}