:root {
  --primary: #9b75ff;
  --primary-dark: #7f56d9;
  --primary-light: #b995ff;
  --secondary: #2d2a4e;
  --dark-bg: #0b0822;
  --glass-white: rgba(255, 255, 255, 0.2);
  --glass-white-strong: rgba(255, 255, 255, 0.35);
  --text-dark: #1e1b3c;
  --text-light: #f5f0ff;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --border-glow: 1px solid rgba(255, 255, 255, 0.4);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-padding-desktop: 80px 0;
  --section-padding-mobile: 70px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  /* background: radial-gradient(circle at 0% 20%, #faf7ff, #f0eaff, #ffffff); */
  background: linear-gradient(180deg,
      rgba(155, 117, 255, 0.03) 0%,
      rgba(155, 117, 255, 0.05) 100%);
  overflow-x: hidden;
  color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f0eaff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ========== GLOBAL TYPOGRAPHY ========== */
h1,
.h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #2d2a4e, #5a48a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2,
.h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #2d2a4e, #6b55c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

h3,
.h3 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

h4,
.h4 {
  font-weight: 600;
  color: #2c2a54;
  margin-bottom: 0.75rem;
}

h5,
.h5 {
  font-weight: 600;
  color: #3c3866;
  margin-bottom: 0.5rem;
}

p {
  font-weight: 400;
  line-height: 1.6;
  color: #3b3762;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.text-glow {
  text-shadow: 0 2px 10px rgba(155, 117, 255, 0.2);
}

/* ========== SECTION PADDING CLASS ========== */
.section-padding {
  padding: var(--section-padding-desktop);
}

@media (max-width: 991px) {
  .section-padding {
    padding: var(--section-padding-mobile);
  }
}

/* ========== LOADER ========== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(20px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0.8s;
}

.loader-content {
  text-align: center;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(155, 117, 255, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(155, 117, 255, 0.5);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #cbb2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.loader-sub {
  color: #cdc2ff;
  margin-top: 1rem;
}

/* ========== GLASS NAVBAR ========== */
.glass-nav {
  background: rgb(102 94 141 / 20%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0rem;
  border: var(--border-glow);
  box-shadow: var(--shadow-sm);
  margin: 20px 50px 0;
  padding: 15px;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-glow {
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, #ffffff, #e2d0ff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.logo-glow img {
  height: 60px;
  /* backdrop-filter: blur(10px); */
}

.nav-desktop-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-desktop {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  margin: 0 12px;
  transition: 0.2s;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-link-desktop:hover {
  color: #b79bff !important;
  /* transform: translateY(-2px); */
  /* text-shadow: 0 0 6px var(--primary); */
}

.nav-link-desktop.active {
  color: #9b75ff !important;
  border-bottom: 2px solid #9b75ff;
}

.btn-outline-glass {
  background: rgba(155, 117, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 60px;
  padding: 8px 28px;
  color: white;
  font-weight: 600;
  transition: 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-glass:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.02);
}

.btn-download-nav {
  background: var(--primary);
  border: none;
  border-radius: 60px;
  padding: 10px 28px;
  color: white;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(155, 117, 255, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-download-nav:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
  color: white;
}

.mobile-menu-toggle {
  cursor: pointer;
}

/* Offcanvas glass */
.offcanvas-glass {
  background: rgba(12, 8, 28, 0.94);
  backdrop-filter: blur(28px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas .nav-link-custom {
  color: #f5eeff !important;
  font-size: 1.2rem;
  padding: 14px 24px;
  border-radius: 50px;
  transition: 0.2s;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.offcanvas .nav-link-custom:hover {
  background: rgba(155, 117, 255, 0.5);
  transform: translateX(8px);
}

.offcanvas .nav-link-custom.active {
  background: rgba(155, 117, 255, 0.5) !important;
  color: #9b75ff !important;
  transform: translateX(8px);
}

@media (max-width: 991px) {
  .glass-nav {
    margin: 16px 16px 0;
    padding: 12px 20px;
  }

  .nav-desktop-links {
    display: none;
  }

  .about-card,
  .contact-card {
    padding: 1.5rem;
  }

  .cta-giant {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hero-img {
  max-height: 380px;
  object-fit: cover;
  border-radius: 2rem;
  width: 100%;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6);
}

.bg-transparent-card {
  background: transparent;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.mt-4-custom {
  margin-top: 1.5rem;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding: 0 !important;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  height: 100vh !important;
  border-radius: 0;
}

.hero-swiper-slide {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image */
.slide-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.slide-bg-image img {
  height: 100vh !important;
}

/* Glass Overlay (above background, below content) */
.slide-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
      rgb(74 74 74 / 14%) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgb(19 19 19 / 15%) 70%,
      rgba(0, 0, 0, 0.4) 100%);
  /* backdrop-filter: blur(2px); */
  z-index: 1;
}

/* Content Container - above overlay */
.slide-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 11rem 2rem 4rem;
}

/* Glass Card for Content */
.hero-glass-card {
  /* background: rgba(255, 255, 255, 0.12); */
  backdrop-filter: blur(3px);
  border-radius: 10px;
  padding: 3rem;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); */
  max-width: 600px;
}

/* Right side - background image visible */
.hero-glass-card-right {
  margin-left: auto;
  background: rgb(0 0 0 / 11%);
  backdrop-filter: blur(3px);
  border-radius: 10px;
  padding: 3rem;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); */
  max-width: 600px;
}

/* Center alignment */
.hero-glass-card-center {
  margin: 0 auto;
  text-align: center;
  /* background: rgba(255, 255, 255, 0.12); */
  backdrop-filter: blur(3px);
  border-radius: 10px;
  padding: 3rem;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); */
  max-width: 700px;
}

.badge-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #9b75ff;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-play i {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.hero-title span {
  color: #9b75ff;
  background: linear-gradient(135deg, #9b75ff, #c49eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-download-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-download-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 117, 255, 0.4);
  color: white;
}

/* Navigation Buttons */
.custom-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #9b75ff;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-swiper-btn:hover {
  background: #9b75ff;
  color: white;
  /* transform: translateY(-50%) scale(1.1); */
}

.swiper-button-prev-hero {
  left: 20px;
}

.swiper-button-next-hero {
  right: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.8;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background: #9b75ff;
  opacity: 1;
  width: 30px !important;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-swiper-slide {
    min-height: 70vh;
  }

  .hero-glass-card,
  .hero-glass-card-right,
  .hero-glass-card-center {
    padding: 2rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .custom-swiper-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .hero-swiper-slide {
    min-height: 80vh;
  }

  .hero-glass-card,
  .hero-glass-card-right,
  .hero-glass-card-center {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-download-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .custom-swiper-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .swiper-button-prev-hero {
    left: 10px;
  }

  .swiper-button-next-hero {
    right: 10px;
  }
}

.hero-section .swiper {
  height: 100vh;
}

/* About Us Section Styles */
.about-section {
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a2e, #2d2a4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title span {
  background: linear-gradient(135deg, #9b75ff, #c49eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Main Card */
.about-main-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  /* border-radius: 48px; */
  /* padding: 3rem; */
  /* border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-main-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 30px 60px -12px rgba(155, 117, 255, 0.3); */
}

/* About Image */
.about-image-wrapper {
  position: relative;
  /* border-radius: 32px; */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: auto;
  /* border-radius: 32px; */
  transition: transform 0.5s ease;
  display: block;
}

/* .about-image-wrapper:hover .about-image {
  transform: scale(1.05);
} */

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  padding: 2rem;
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* .about-image-wrapper:hover .image-overlay {
  opacity: 1;
} */

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(155, 117, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 60px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.experience-badge .years {
  font-size: 1.8rem;
  font-weight: 800;
  margin-right: 5px;
}

/* About Content */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 117, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #9b75ff;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(155, 117, 255, 0.3);
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.about-title span {
  color: #9b75ff;
}

.about-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a486b;
  margin-bottom: 1.5rem;
}

/* Features List */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(8px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
      rgba(155, 117, 255, 0.15),
      rgba(155, 117, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.2rem;
  border: 1px solid rgba(155, 117, 255, 0.3);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.feature-text p {
  font-size: 0.85rem;
  color: #6b6985;
  margin: 0;
}

/* Stats Section */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
  flex: 1;
  text-align: center;
  min-width: 100px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #9b75ff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b6985;
  margin-top: 5px;
}

/* CTA Button */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 117, 255, 0.4);
  color: white;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: rgba(155, 117, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}

.floating-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }

  .about-main-card {
    padding: 2rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .stats-container {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .about-main-card {
    padding: 1.5rem;
    border-radius: 32px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.9rem;
  }

  .features-grid {
    gap: 0.8rem;
  }

  .feature-item {
    padding: 8px 0;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .stats-container {
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .experience-badge {
    padding: 8px 15px;
    top: 15px;
    right: 15px;
  }

  .experience-badge .years {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .about-main-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .about-title {
    font-size: 1.3rem;
  }

  .feature-text h4 {
    font-size: 0.9rem;
  }

  .feature-text p {
    font-size: 0.75rem;
  }

  .about-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Animation Classes */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(155, 117, 255, 0.03) 0%,
      rgba(155, 117, 255, 0.05) 100%);
}

/* Section Header */
.services-header {
  text-align: center;
  margin-bottom: 1rem;
}

.services-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* margin-bottom: 1rem; */
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800;
  /* margin-bottom: 1rem; */
  background: linear-gradient(135deg, #1a1a2e, #2d2a4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-title span {
  background: linear-gradient(135deg, #9b75ff, #c49eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-description {
  max-width: 600px;
  margin: 0 auto;
  color: #6b6985;
  font-size: 1rem;
}

/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  /* transform: translateY(-12px); */
  background: rgba(155, 117, 255, 0.2);
  border-color: rgba(155, 117, 255, 0.6);
  box-shadow: 0 10px 20px rgba(155, 117, 255, 0.2);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg,
      rgba(155, 117, 255, 0.2),
      rgba(155, 117, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(155, 117, 255, 0.3);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  transform: scale(1.1);
  border-color: transparent;
}

.service-icon {
  font-size: 2.5rem;
  color: #9b75ff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: white;
  transform: scale(1.05);
}

/* Service Title */
.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a1a2e;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #9b75ff;
}

/* Service Description */
.service-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b6985;
  margin-bottom: 1.2rem;
}

/* Service Badge */
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(155, 117, 255, 0.15);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9b75ff;
  margin-top: 0.5rem;
  display: none;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9b75ff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link:hover {
  gap: 12px;
  color: #7f56d9;
}

/* Swiper Container */
.services-swiper-container {
  width: 90% !important;
  padding: 1rem 2rem;
  /* overflow: hidden; */
  margin: 0 auto;
}

.services-swiper {
  width: 100%;
  height: 100%;
}

.services-swiper .swiper-slide {
  height: auto;
}

/* Swiper Navigation */
.services-nav-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.services-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-nav-btn:hover {
  background: #9b75ff;
  color: white;
  transform: scale(1.1);
}

/* Swiper Pagination */
.services-pagination {
  margin-top: 2rem;
  position: relative;
  text-align: center;
}

.services-pagination .swiper-pagination-bullet {
  background: rgba(155, 117, 255, 0.4);
  opacity: 0.6;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
  background: #9b75ff;
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

/* Floating Decorations */
.services-floating {
  position: absolute;
  background: rgba(155, 117, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.services-floating-1 {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
  animation: floatService 8s ease-in-out infinite;
}

.services-floating-2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: -60px;
  animation: floatService 10s ease-in-out infinite reverse;
}

.services-floating-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 10%;
  animation: floatService 6s ease-in-out infinite;
}

@keyframes floatService {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-swiper .swiper-slide {
    width: 33.33%;
  }
}

@media (max-width: 991px) {
  .services-title {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .services-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .services-swiper .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .services-title {
    font-size: 1.8rem;
  }

  .services-subtitle {
    font-size: 0.8rem;
  }

  .services-description {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .service-icon {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .services-nav-wrapper {
    margin-top: 2rem;
  }

  .services-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .services-swiper .swiper-slide {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .service-icon {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.8rem;
  }

  .service-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
}

.services-swiper {
  width: 100%;
  height: 100%;
}

.services-swiper .swiper-slide {
  height: auto;
}

/* Swiper Navigation - Vertically Centered */
.services-nav-wrapper {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  padding: 0 0px;
  margin-top: 0;
}

.services-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.services-nav-btn:hover {
  background: #9b75ff;
  color: white;
  /* transform: scale(1.1); */
}

/* Swiper Pagination */
.services-pagination {
  margin-top: 2rem;
  position: relative;
  text-align: center;
}

.services-pagination .swiper-pagination-bullet {
  background: rgba(155, 117, 255, 0.4);
  opacity: 0.6;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
  background: #9b75ff;
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

/* Responsive - Adjust button positions and sizes */
@media (max-width: 991px) {
  .services-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .services-nav-wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .services-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .services-nav-wrapper {
    padding: 0 5px;
  }
}

@media (max-width: 480px) {
  .services-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

.services-swiper-container {
  position: relative;
}

.services-nav-wrapper {
  position: absolute;
  top: 40%;
  left: -30px;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  /* IMPORTANT */
}

.services-nav-btn {
  pointer-events: all;
  /* re-enable click */
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* How It Works Section Styles - Dark Theme */
.howitworks-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #6b48cc 0%,
      #9b75ff 30%,
      #7f56d9 60%,
      #5a3fb0 100%);
  position: relative;
}

/* Dark Overlay Pattern */
.howitworks-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M10,10 L20,10 L20,20 L10,20 Z M30,30 L40,30 L40,40 L30,40 Z M50,50 L60,50 L60,60 L50,60 Z M70,70 L80,70 L80,80 L70,80 Z M90,90 L100,90 L100,100 L90,100 Z"/></svg>');
  background-repeat: repeat;
  background-size: 30px;
  pointer-events: none;
}

/* Section Header - Light text */
.howitworks-header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.howitworks-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* margin-bottom: 1rem; */
}

.howitworks-title {
  font-size: 2.8rem;
  font-weight: 800;
  /* margin-bottom: 1rem; */
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.howitworks-title span {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  display: inline-block;
}

/* .howitworks-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
} */

.howitworks-description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* Steps Container */
.steps-container {
  position: relative;
  padding: 2rem 0;
}

/* Connecting Line */
.steps-connecting-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: translateY(-50%);
  z-index: 0;
}

/* Step Card - Dark Glass */
.step-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 100%;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transition: left 1.9s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Step Number */
.step-number-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #9b75ff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Pulse Effect */
.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Step Icon */
.step-icon {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.95);
}

/* Step Title */
.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: white;
  transition: color 0.3s ease;
}

/* Step Description */
.step-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

/* Step Badge */
.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

/* Arrow Connector */
.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  display: none;
}

/* Floating Decorations */
.howitworks-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.howitworks-floating-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: floatHow 8s ease-in-out infinite;
}

.howitworks-floating-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  animation: floatHow 10s ease-in-out infinite reverse;
}

.howitworks-floating-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 15%;
  animation: floatHow 7s ease-in-out infinite 2s;
}

@keyframes floatHow {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Desktop Grid Layout */
.howitworks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

/* Responsive Design - No Swiper, Just Grid */
@media (max-width: 991px) {
  .howitworks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .howitworks-title {
    font-size: 2.2rem;
  }

  .step-arrow {
    display: none;
  }

  .steps-connecting-line {
    display: none;
  }
}

@media (max-width: 767px) {
  .howitworks-title {
    font-size: 1.8rem;
  }

  .howitworks-subtitle {
    font-size: 0.8rem;
  }

  .howitworks-description {
    font-size: 0.9rem;
  }

  .step-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .step-number-wrapper {
    width: 70px;
    height: 70px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 580px) {
  .howitworks-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .howitworks-title {
    font-size: 1.5rem;
  }

  .step-card {
    padding: 1.2rem;
    border-radius: 20px;
    max-width: 350px;
    margin: 0 auto;
  }

  .step-number-wrapper {
    width: 60px;
    height: 60px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.8rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .howitworks-grid {
    grid-template-columns: 1fr;
  }
}

/* App Screens Section Styles */
.appscreens-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(155, 117, 255, 0.03) 0%,
      rgba(155, 117, 255, 0.05) 100%);
}

/* Section Header */
.appscreens-header {
  text-align: center;
  margin-bottom: 1rem;
}

.appscreens-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* margin-bottom: 1rem; */
}

.appscreens-title {
  font-size: 2.8rem;
  font-weight: 800;
  /* margin-bottom: 1rem; */
  background: linear-gradient(135deg, #1a1a2e, #2d2a4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appscreens-title span {
  background: linear-gradient(135deg, #9b75ff, #c49eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appscreens-description {
  max-width: 600px;
  margin: 0 auto;
  color: #6b6985;
  font-size: 1rem;
}

/* Swiper Container */
.appscreens-swiper-container {
  width: 100%;
  padding: 0rem 5.5rem;
  /* overflow: hidden; */
  position: relative;
}

.appscreens-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.appscreens-swiper .swiper-slide {
  height: auto;
  transition: all 0.3s ease;
}

/* Staggered margin-top for even slides */
.appscreens-swiper .swiper-slide:nth-child(even) {
  margin-top: 80px !important;
}

/* For looped slides - maintain staggered effect */
.appscreens-swiper .swiper-slide-duplicate:nth-child(even) {
  margin-top: 80px !important;
}

/* Screen Card */
.screen-card {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  /* transform: scale(0.85);  */
  transition: transform 0.3s ease;
}

.screen-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

/* .screen-card:hover::before {
  left: 100%;
} */

/* .screen-card:hover {
 
  background: rgba(155, 117, 255, 0.2);
  border-color: rgba(155, 117, 255, 0.5);
  box-shadow: 0 25px 50px rgba(155, 117, 255, 0.2);
} */

/* Screen Image */
.screen-image {
  width: 100%;
  border-radius: 20px;
  display: block;
  /* max-height: 560px; */
  transition: transform 0.3s ease;
}

.screen-image img {
  object-fit: contain;
}

/* .screen-card:hover .screen-image {
  transform: scale(1.02);
} */

/* Screen Badge */
.screen-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(155, 117, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Screen Info */
.screen-info {
  padding: 1rem 0.5rem 0.5rem;
  text-align: center;
}

.screen-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a2e;
}

.screen-subtitle {
  font-size: 0.8rem;
  color: #9b75ff;
  font-weight: 500;
}

/* Swiper Navigation - Vertically Centered */

.appscreens-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

/* .appscreens-nav-btn:hover {
  background: #9b75ff;
  color: white;
  transform: scale(1.1);
} */

/* Swiper Pagination */
.appscreens-pagination {
  margin-top: 2rem;
  position: relative;
  text-align: center;
}

.appscreens-pagination .swiper-pagination-bullet {
  background: rgba(155, 117, 255, 0.4);
  opacity: 0.6;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.appscreens-pagination .swiper-pagination-bullet-active {
  background: #9b75ff;
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

/* Floating Decorations */
.appscreens-floating {
  position: absolute;
  background: rgba(155, 117, 255, 0.06);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.appscreens-floating-1 {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
  animation: floatScreen 8s ease-in-out infinite;
}

.appscreens-floating-2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: -60px;
  animation: floatScreen 10s ease-in-out infinite reverse;
}

@keyframes floatScreen {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .appscreens-title {
    font-size: 2.2rem;
  }

  .appscreens-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .appscreens-nav-wrapper {
    padding: 0 10px;
  }

  /* Adjust staggered margin for tablet */
  .appscreens-swiper .swiper-slide:nth-child(even) {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .appscreens-title {
    font-size: 1.8rem;
  }

  .appscreens-subtitle {
    font-size: 0.8rem;
  }

  .appscreens-description {
    font-size: 0.9rem;
  }

  .screen-card {
    border-radius: 36px;
  }

  .screen-image {
    border-radius: 28px;
  }

  .screen-badge {
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    font-size: 0.65rem;
  }

  .appscreens-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  /* Adjust staggered margin for mobile */
  .appscreens-swiper .swiper-slide:nth-child(even) {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .appscreens-title {
    font-size: 1.5rem;
  }

  .screen-card {
    border-radius: 28px;
    padding: 0.8rem;
  }

  .screen-image {
    border-radius: 22px;
  }

  .screen-badge {
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    font-size: 0.6rem;
  }

  .screen-title {
    font-size: 0.9rem;
  }

  .screen-subtitle {
    font-size: 0.7rem;
  }

  .appscreens-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  /* Adjust staggered margin for small mobile */
  .appscreens-swiper .swiper-slide:nth-child(even) {
    margin-top: 30px;
  }
}

/* Download CTA Section Styles */
.download-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #5a3fb0 0%,
      #9b75ff 40%,
      #7f56d9 70%,
      #4a2f99 100%);
  border-radius: 0px;
  margin: 0rem auto;
  width: 100%;
}

/* Animated Background - Floating Dots & Waves (No Lines) */
.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 40%,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px),
    radial-gradient(circle at 80% 70%,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px),
    radial-gradient(circle at 40% 90%,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px),
    radial-gradient(circle at 60% 20%,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px),
    radial-gradient(circle at 90% 50%,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px);
  background-size:
    60px 60px,
    80px 80px,
    100px 100px,
    70px 70px,
    120px 120px;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  pointer-events: none;
  animation: floatDots 25s linear infinite;
}

@keyframes floatDots {
  0% {
    transform: translateX(0) translateY(0);
  }

  25% {
    transform: translateX(-10px) translateY(5px);
  }

  50% {
    transform: translateX(5px) translateY(-10px);
  }

  75% {
    transform: translateX(-5px) translateY(-5px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Wave Pattern Overlay */
.download-section::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" opacity="0.06"><path fill="white" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
  background-size: 200px 80px;
  background-position: bottom;
  pointer-events: none;
  animation: waveMove 15s linear infinite;
}

@keyframes waveMove {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 200px bottom;
  }
}

/* Floating Circles */
.download-floating {
  position: absolute;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 70%,
      transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.download-floating-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: floatDownload 15s ease-in-out infinite;
}

.download-floating-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation: floatDownload 12s ease-in-out infinite reverse;
}

.download-floating-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  animation: floatDownload 10s ease-in-out infinite 2s;
}

.download-floating-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  animation: floatDownload 8s ease-in-out infinite 1s;
}

.download-floating-5 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  animation: floatDownload 9s ease-in-out infinite 3s;
}

.download-floating-6 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 40%;
  animation: floatDownload 11s ease-in-out infinite 1.5s;
}

@keyframes floatDownload {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-30px) translateX(20px) rotate(10deg);
    opacity: 1;
  }
}

/* CTA Content Container */
.cta-container {
  position: relative;
  z-index: 2;
  padding: 4rem 0rem;
  text-align: center;
}

/* CTA Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.cta-badge i {
  font-size: 1rem;
}

/* CTA Title */
.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.cta-title span {
  position: relative;
  display: inline-block;
}

.cta-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

/* CTA Description */
.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Features */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.cta-feature i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: none;
  border-radius: 60px;
  padding: 14px 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-btn i {
  font-size: 2rem;
  color: #9b75ff;
}

.download-btn-text {
  text-align: left;
}

.download-btn-small {
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-btn-large {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
}

/* Play Store Specific */
.playstore-btn {
  background: white;
}

.playstore-btn i {
  color: #9b75ff;
}

/* App Store Specific */
.appstore-btn {
  background: white;
}

.appstore-btn i {
  color: #9b75ff;
}

/* QR Code Section */
.qr-section {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.qr-code {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code i {
  font-size: 2rem;
  color: #9b75ff;
}

.qr-text {
  color: white;
  font-size: 0.85rem;
}

.qr-text strong {
  display: block;
  font-size: 1rem;
}

/* Sparkle Animation */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .download-section {
    border-radius: 36px;
    margin: 1.5rem auto;
  }

  .cta-container {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 2.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-features {
    gap: 1.5rem;
  }

  .download-btn {
    padding: 12px 28px;
  }

  .download-btn i {
    font-size: 1.8rem;
  }

  .download-btn-large {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .download-section {
    border-radius: 28px;
    margin: 1rem auto;
  }

  .cta-container {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-features {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .cta-feature {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .download-buttons {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 220px;
    justify-content: center;
  }

  .qr-section {
    padding: 0.6rem 1.2rem;
  }

  .qr-code {
    width: 40px;
    height: 40px;
  }

  .qr-code i {
    font-size: 1.5rem;
  }

  .qr-text {
    font-size: 0.75rem;
  }

  .qr-text strong {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 0.9rem;
  }

  .cta-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .cta-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .download-btn {
    width: 200px;
    padding: 10px 24px;
  }

  .download-btn i {
    font-size: 1.5rem;
  }

  .download-btn-large {
    font-size: 1rem;
  }

  .download-btn-small {
    font-size: 0.65rem;
  }

  .qr-section {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

/* Contact Us Section Styles */
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(155, 117, 255, 0.03) 0%,
      rgba(155, 117, 255, 0.06) 100%);
}

/* Section Header */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a2e, #2d2a4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-title span {
  background: linear-gradient(135deg, #9b75ff, #c49eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  max-width: 600px;
  margin: 0 auto;
  color: #6b6985;
  font-size: 1rem;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Contact Info Side */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(155, 117, 255, 0.1);
  border-color: rgba(155, 117, 255, 0.5);
  box-shadow: 0 20px 40px rgba(155, 117, 255, 0.1);
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  /* margin-bottom: 2rem; */
  padding: 1rem;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,
      rgba(155, 117, 255, 0.2),
      rgba(155, 117, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.3rem;
  border: 1px solid rgba(155, 117, 255, 0.3);
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #9b75ff;
  color: white;
  transform: scale(1.1);
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a2e;
}

.info-content p {
  font-size: 0.9rem;
  color: #6b6985;
  margin: 0;
}

.info-content a {
  color: #6b6985;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #9b75ff;
}

/* Social Links */
.social-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(155, 117, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b75ff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(155, 117, 255, 0.3);
}

.social-link:hover {
  background: #9b75ff;
  color: white;
  transform: translateY(-5px);
}

/* Contact Form Side */
.contact-form-side {
  flex: 1;
  min-width: 280px;
}

.form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.form-card:hover {
  background: rgba(155, 117, 255, 0.08);
  border-color: rgba(155, 117, 255, 0.4);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.form-subtitle {
  font-size: 0.9rem;
  color: #6b6985;
  margin-bottom: 1.5rem;
}

/* Input Groups with Icons */
.input-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.input-group i.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b75ff;
  font-size: 1rem;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group i.textarea-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  color: #9b75ff;
  font-size: 1rem;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 18px 14px 45px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(155, 117, 255, 0.2);
  border-radius: 5px !important;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: #1a1a2e;
}

.input-group textarea {
  padding: 14px 18px 14px 45px;
  resize: vertical;
  min-height: 100px;
}

.input-group select {
  padding: 14px 18px 14px 45px;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239b75ff"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  cursor: pointer;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #9b75ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(155, 117, 255, 0.2);
}

.input-group input:focus+i.input-icon,
.input-group textarea:focus+i.textarea-icon,
.input-group select:focus+i.input-icon {
  color: #7f56d9;
  transform: translateY(-50%) scale(1.1);
}

.input-group textarea:focus+i.textarea-icon {
  transform: scale(1.1);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  border: none;
  border-radius: 60px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(155, 117, 255, 0.4);
  background: linear-gradient(135deg, #7f56d9, #9b75ff);
}

.submit-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Form Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 16px;
  color: #4caf50;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Decorations */
.contact-floating {
  position: absolute;
  background: rgba(155, 117, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.contact-floating-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: floatContact 8s ease-in-out infinite;
}

.contact-floating-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation: floatContact 10s ease-in-out infinite reverse;
}

.contact-floating-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 10%;
  animation: floatContact 7s ease-in-out infinite 2s;
}

@keyframes floatContact {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-card,
  .form-card {
    padding: 1.5rem;
  }

  .info-item {
    padding: 0.8rem;
  }
}

@media (max-width: 767px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 0.8rem;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .info-content h4 {
    font-size: 1rem;
  }

  .info-content p {
    font-size: 0.85rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 12px 16px 12px 42px;
    font-size: 0.9rem;
  }

  .input-group i.input-icon,
  .input-group i.textarea-icon {
    left: 14px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-card,
  .form-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .info-item {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 10px 14px 10px 40px;
    border-radius: 14px;
  }

  .input-group i.input-icon,
  .input-group i.textarea-icon {
    left: 12px;
    font-size: 0.85rem;
  }
}

.downcta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  padding: 0 100px;
}

/* 
.services-nav-wrapper {
    position: absolute;
    top: 40%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
} */

.appscreens-nav-wrapper {
  position: absolute;
  top: 45%;
  left: 30px;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  /* padding: 0 20px; */
}

/* Footer Section Styles */
.footer-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #0a0817 0%,
      #120e2a 30%,
      #1a1538 60%,
      #0f0c24 100%);
  /* margin-top: 4rem;
  border-radius: 48px 48px 0 0; */
}

/* Animated Background Pattern */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 40%,
      rgba(155, 117, 255, 0.08) 1px,
      transparent 1px),
    radial-gradient(circle at 80% 70%,
      rgba(155, 117, 255, 0.06) 1px,
      transparent 1px),
    radial-gradient(circle at 40% 90%,
      rgba(155, 117, 255, 0.05) 2px,
      transparent 2px);
  background-size:
    60px 60px,
    80px 80px,
    100px 100px;
  pointer-events: none;
  animation: footerDots 20s linear infinite;
}

@keyframes footerDots {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(40px) translateY(40px);
  }
}

/* Floating Elements */
.footer-floating {
  position: absolute;
  background: radial-gradient(circle,
      rgba(155, 117, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer-floating-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation: floatFooter 15s ease-in-out infinite;
}

.footer-floating-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -50px;
  animation: floatFooter 12s ease-in-out infinite reverse;
}

.footer-floating-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 10%;
  animation: floatFooter 10s ease-in-out infinite 2s;
}

@keyframes floatFooter {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.8;
  }
}

/* Footer Container */
.footer-container {
  position: relative;
  z-index: 2;
  padding: 4rem 0rem 0rem;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 30% 15% 20% 30%;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Footer Columns */
.footer-col {
  animation: fadeInUp 0.6s ease-out backwards;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Section */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-logo i {
  font-size: 2rem;
  color: #9b75ff;
}

.footer-logo span {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #cbb2ff, #9b75ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* App Download Badges */
.footer-app-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.app-badge:hover {
  background: rgba(155, 117, 255, 0.3);
  transform: translateY(-3px);
  border-color: rgba(155, 117, 255, 0.5);
}

.app-badge i {
  font-size: 1.5rem;
  color: #9b75ff;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
}

.app-badge-small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.app-badge-large {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

/* Footer Headings */
.footer-heading {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #9b75ff, transparent);
  border-radius: 3px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a i {
  font-size: 0.75rem;
  opacity: 1;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #9b75ff;
  transform: translateX(5px);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info in Footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: #9b75ff;
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #9b75ff;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.newsletter-input {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.newsletter-input:focus-within {
  border-color: #9b75ff;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input button {
  padding: 12px 20px;
  background: #9b75ff;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.newsletter-input button:hover {
  background: #7f56d9;
}

.newsletter-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.copyright a {
  color: #9b75ff;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #9b75ff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-container {
    padding: 3rem 1.5rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .footer-section {
    border-radius: 32px 32px 0 0;
  }

  .footer-container {
    padding: 2.5rem 1.2rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-logo span {
    font-size: 1.5rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2rem 1rem 1rem;
  }

  .footer-app-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-badge {
    width: 100%;
    justify-content: center;
  }

  .newsletter-input {
    flex-direction: column;
    border-radius: 16px;
  }

  .newsletter-input input {
    padding: 12px 16px;
  }

  .newsletter-input button {
    padding: 10px;
  }

  .footer-bottom-links {
    gap: 1rem;
  }
}

.footer-bottom p {
  color: white;
  font-size: 16px;
}

.footer-bottom p a {
  color: #9b75ff;
  font-size: 16px;
  text-decoration: none !important;
}

.footer-logo img {
  height: 60px;
}

/* ========== PAGE HERO BANNER & BREADCRUMB ========== */
.page-hero-banner {
  position: relative;
  padding: 190px 0 65px;
  background: linear-gradient(135deg, #130d33 0%, #241852 50%, #3a247e 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(155, 117, 255, 0.3);
  box-shadow: 0 10px 30px rgba(11, 8, 34, 0.12);
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(155, 117, 255, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #e2d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-breadcrumb-nav .breadcrumb {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.page-breadcrumb-nav .breadcrumb-item {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb-nav .breadcrumb-item a {
  color: #c9abff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb-nav .breadcrumb-item a:hover {
  color: #ffffff;
}

.page-breadcrumb-nav .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

.page-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px;
}

/* ========== LEGAL / POLICY CONTENT STYLES ========== */
.legal-content-section {
  padding: 60px 0 90px;
  background: linear-gradient(180deg, rgba(155, 117, 255, 0.03) 0%, rgba(155, 117, 255, 0.06) 100%);
}

.glass-legal-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(155, 117, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(11, 8, 34, 0.06);
  padding: 3rem;
}

.legal-section-block {
  margin-bottom: 2.5rem;
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2a4e;
  margin-bottom: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(155, 117, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-title i {
  color: var(--primary);
  font-size: 1.3rem;
}

.legal-subsection-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3c3866;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  color: #3b3762;
  line-height: 1.6;
}

.legal-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 0.85rem;
}

.contact-info-box {
  background: linear-gradient(135deg, rgba(155, 117, 255, 0.08) 0%, rgba(155, 117, 255, 0.03) 100%);
  border: 1px solid rgba(155, 117, 255, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-hero-banner {
    padding: 155px 0 45px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .glass-legal-card {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .legal-section-title {
    font-size: 1.3rem;
  }
}


/* section.page-hero-banner {
  padding: 150px 0 30px;
  background: #f3eeff;
  margin-bottom: 50px;
} */

section.page-hero-banner a {
  color: #333;
  text-decoration: none;
}

/* ========== DELETE ACCOUNT PAGE STYLES ========== */
.delete-account-section {
  padding: 60px 0 90px;
  background: linear-gradient(180deg, rgba(155, 117, 255, 0.03) 0%, rgba(155, 117, 255, 0.06) 100%);
}

.glass-delete-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3.5rem 3.5rem;
}

.delete-account-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.delete-account-subtitle {
  font-size: 1rem;
  color: #4a486b;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2b2b36;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #1a1a2e;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: none;
  outline: none;
}

.form-control-custom::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form-control-custom:focus {
  border-color: #7f56d9;
  box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.15);
  background-color: #ffffff;
}

.textarea-custom {
  resize: vertical;
  min-height: 140px;
}

.btn-delete-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-delete-submit:hover {
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  box-shadow: 0 6px 20px rgba(68, 124, 22, 0.38);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-delete-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(68, 124, 22, 0.2);
}

@media (max-width: 768px) {
  .glass-delete-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .delete-account-title {
    font-size: 1.8rem;
  }

  .delete-account-subtitle {
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
  }

  .btn-delete-submit {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ========== GLASS MODAL & THANK YOU ICON STYLES ========== */
.glass-modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(155, 117, 255, 0.2);
}

.thank-you-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  color: #ffffff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(155, 117, 255, 0.3);
  animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.glass-modal-content .modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
}

.glass-modal-content .modal-message {
  font-size: 1.1rem;
  color: #2d2a4e;
  line-height: 1.6;
}

.glass-modal-content .modal-submessage {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

.btn-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9b75ff, #7f56d9);
  border: none;
  border-radius: 100px;
  padding: 12px 40px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 117, 255, 0.4);
  color: white;
}

.btn-modal-close:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .glass-modal-content {
    border-radius: 16px;
  }
  .glass-modal-content .modal-body {
    padding: 2.5rem 1.25rem !important;
  }
  .glass-modal-content .modal-title {
    font-size: 1.8rem;
  }
  .glass-modal-content .modal-message {
    font-size: 0.95rem;
  }
  .glass-modal-content .modal-submessage {
    font-size: 0.85rem;
  }
  .btn-modal-close {
    width: 100%;
  }
}