:root {
  --primary-color: #5f259e;
  --primary-light: #7b3bb8;
  --primary-dark: #4a1d7e;
  --secondary-color: #f8f9fa;
  --dark-bg: linear-gradient(135deg, #5f259e 0%, #4a1d7e 100%);
  --light-bg: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-logo {
  width: 100px;
  height: 100px;
  /* background: white; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.loader-logo img{
    height: 100px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Header */
.navbar {
  padding: 0rem 0;
  transition: all 0.3s ease;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color) !important;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-download {
  background: var(--dark-bg);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(95, 37, 158, 0.4);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.467) 0%,
    rgba(8, 8, 8, 0.464) 40%,
    rgba(8, 8, 8, 0.464) 50%
  );
  z-index: 2;
  pointer-events: none; /* Optional: allows clicks to pass through */
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px 25px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

.app-btn i {
  font-size: 2rem;
  margin-right: 15px;
}

/* Custom Swiper Navigation */
.swiper-button-custom {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 4;
  display: flex;
  gap: 15px;
}

/* Section Styling */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #5f259e;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.dark-section {
  background: var(--dark-bg);
  color: white;
}

.dark-section .section-title,
.dark-section .section-subtitle {
  color: white;
}

/* About Section */

/* About Section */
.about-images {
  position: relative;
  height: 500px;
}

.about-images .img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  z-index: 1;
}

.about-images .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-section .features-list {
  margin-top: 30px;
}

.about-section .feature-item {
  display: flex;
  margin-bottom: 25px;
}

.about-section .feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.about-section .feature-text h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* Features Section */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(95, 37, 158, 0.1);
}

.app-fe .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(95, 37, 158, 0.2);
}

.app-fe .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Why Choose Us Section */
.choose-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.choose-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.choose-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

/* How It Works Section */
.step-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: rgba(95, 37, 158, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.step-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  color: white;
}

.step-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.step-card:hover h4 {
  color: white;
}

.step-card p {
  transition: all 0.3s ease;
}

.step-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* App Screens Section */
.screens-swiper {
  overflow: visible;
}

.screen-slide {
  text-align: center;
  transition: all 0.3s ease;
}

.screen-slide img {
  border-radius: 25px;
 
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
  transition: all 0.3s ease;
  /* border:5px solid black; */
  /* height: 100%;
  width:100%; */
}

.screen-slide:hover img {
  transform: scale(1.05);
}

.screens-navigation {
  margin-top: 3rem;
  text-align: center;
}

.screens-nav-btn {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border: none;
  border-radius: 50%;
  color: white;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screens-nav-btn:hover {
  transform: scale(1.1);
}

/* Download Section - Gradient Background */
.download-section {
  position: relative;
  padding: 100px 0;
  background: var(--gradient);
  color: white;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  transform: rotate(30deg);
  z-index: 0;
}

.download-content {
  position: relative;
  z-index: 1;
}

.download-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.download-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.download-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.download-buttons .btn i {
  margin-right: 8px;
}

.btn-download-dark {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-download-dark:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-download-light {
  background: #9a16f4;
  color: var(--primary);
}

.btn-download-light:hover {
  background: #8204d5;
  transform: translateY(-3px);
}

.download-image {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* Contact Section - Modern Form */
.contact-section {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(95, 37, 158, 0.1);
  color: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(95, 37, 158, 0.1);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.btn-submit {
  background: var(--gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(95, 37, 158, 0.3);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 6rem 0 1rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--primary-color);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Mobile Menu */
.offcanvas {
  background: var(--dark-bg);
}

.offcanvas .nav-link {
  color: white !important;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content-overlay {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .app-buttons {
    justify-content: center;
  }

  .about-img-2 {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
  }

  .work-step::after {
    display: none;
  }

  .hero-nav {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .loader-logo {
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
  }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.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: #ffffff00;
  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;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer img {
  height: 60px;
}

.foo-boo-tex p a {
  text-decoration: none;
}

.footer a {
  text-decoration: none;
}

















 
  .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--gradient);
      color: var(--secondary-color);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0.5; /* Set to 0.5 for debugging */
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      font-size: 24px;
      z-index: 1000;
    }

    .back-to-top:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .back-to-top.show {
      opacity: 1;
    }
 


















    

.inner-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #ffed4524;
  }
  .inner-banner .inner-title {
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .inner-banner .inner-title h3 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .inner-banner .inner-title ul li {
    font-size: 18px;
    color: #1c1c25;
    display: inline-block;
    position: relative;
    margin-right: 0px;
    font-weight: 600;
  }
  .inner-banner .inner-title ul li i {
    font-size: 22px;
    top: 4px;
    position: relative;
    left: 10px;
  }
  .inner-banner .inner-title ul li:last-child {
    margin-right: 0;
  }
  .inner-banner .inner-title ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background-color: #98fbcc;
    display: none;
  }
  .inner-banner .inner-title ul li a {
    color: #1c1c25;
    text-decoration: none;
  }
  .inner-banner .inner-title ul li a:hover {
    color: #98fbcc;
  }
  .inner-banner .inner-line .line1 {
    position: absolute;
    left: 0;
    top: -70px;
    width: 35px;
    height: 170px;
    background-color: #98fbcc;
    border-radius: 50px;
    transform: rotate(-35deg);
  }
  .inner-banner .inner-line .line2 {
    position: absolute;
    right: 0;
    bottom: -70px;
    width: 35px;
    height: 170px;
    background-color: #aa6bd8;
    border-radius: 50px;
    transform: rotate(-35deg);
  }











       
.rabito-header h1 {
  margin: 0;
}
.rabito-container {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.rabito-heading {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #5c2499;
}
.rabito-paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
}
.rabito-list {
  margin: 1px 0  45px;
  padding-left: 20px;
  list-style: none;
}
.rabito-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px; 
}
.rabito-list li::before {
  content: "◉"; 
  color:#5c249a; 
  position: absolute;
  left: 0;
  font-size: 1.2rem; 
  top: 0;
}
.rabito-link {
  color:#1f2020;
  text-decoration: none;
}
.rabito-link:hover {
  text-decoration: underline;
}
