  /* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #000; color: #222; scroll-behavior: smooth; }

/* Containers */
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Header */
header { padding: 14px 0; position: sticky; top: 0; z-index: 1000; }
header {
  background: rgb(15 15 15 / 60%); /* Darker base color */
  border-radius: 1px;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.05); /* Inner glow for depth */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* Optional hover effect for more interactivity */
header:hover {
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 
    0 6px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 16px rgba(255, 255, 255, 0.08);
}

/* For better contrast with content */
header {
  color: rgba(255, 255, 255, 0.9);
}
.logo { color: #fff; font-size: 28px; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #3716b8; }

/* Hero Section */
.hero { background: linear-gradient(120deg, #000, #111); color: white; padding: 120px 20px; text-align: center; }
.hero-content h2 { font-size: 48px; margin-bottom: 20px; }
.hero-content p { font-size: 18px; margin-bottom: 30px; }
.btn-primary {
  background: #3716b8;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-primary:hover { transform: scale(1.05); }

/* Features */
.features { padding: 80px 20px; background: #f8f8f8; text-align: center; }
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }

/* Demo Section */
.demo-section { padding: 80px 20px; background: #111; color: white; text-align: center; }
.phone-mockup {
  width: 280px;
  height: 580px;
  margin: 40px auto 0;
  border: 16px solid #333;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Download Section */
.download { padding: 80px 20px; background: #222; color: white; text-align: center; }
.app-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.app-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ios-btn {
  background: #000;
  color: #fff;
}

.ios-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.android-btn {
  background: #4285F4;
  color: #fff;
}

.android-btn:hover {
  background: #3367D6;
  transform: translateY(-2px);
}

/* For dark backgrounds */
.dark-mode .ios-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .android-btn {
  background: rgba(66, 133, 244, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer { background: #000; color: #aaa; padding: 20px; text-align: center; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .features-grid { flex-direction: column; align-items: center; }
  .hero-content h2 { font-size: 32px; }
  .phone-mockup { width: 220px; height: 460px; }
}

.mx-features {
  background: linear-gradient(to bottom, #000000, #1a1a2e);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mx-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgb(16 16 16 / 15%) 0%, transparent 50%);
}

.mx-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mx-features-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #fff, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  position: relative;
}

.highlight::after {
     content: "";
    position: absolute;
    bottom: 48px;
    left: 25%;
    width: 50%;
    height: 10px;
    background: rgb(255 255 255 / 30%);
    z-index: -1;
    border-radius: 20px;
}

.mx-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.mx-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mx-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3716b8;
  border-radius: 18px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.mx-features-cta {
  margin-top: 2rem;
}

.mx-download-btn {
  background: #ff0080;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mx-download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.3);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Animation for the feature cards */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

@media (max-width: 768px) {
  .mx-features-title {
    font-size: 2.2rem;
  }
  
  .mx-features-grid {
    grid-template-columns: 1fr;
  }
}
/* Hero section with background video */
.hero {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
/* Background video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
 
/* Optional dark overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: 0;
}
 
/* Header inside hero */
.hero header {
  padding: 20px 0;
  z-index: 1;
  position: relative;
}
 
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.logo {
  font-size: 2rem;
  font-weight: bold;
}
 
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
 
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
 
/* Hero content */
.hero-content {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}
 
.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
 
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
 
.btn-primary {
  background-color: #3716b8;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}
 
.btn-primary:hover {
  background-color: #e60045;
}
 
/* Responsive */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }
 
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
 .two-column-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
 
.left-content, .right-content {
  flex: 1 1 45%;
}
 
.phone-mockup video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
 
.right-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
 
.right-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}
 
.right-content ul li::before {
  content: "✔️";
  margin-right: 8px;
  color: #1dbf73;
}

.right-content {
  max-width: 600px;
  color: #333; /* Dark color for better readability */
  line-height: 1.6;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #fff; /* Slightly darker for headings */
}

.highlight {
  color: #3716b8; /* Attractive red for emphasis */
}

.lead-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
}

.brand-name {
  color: #3716b8; /* Matching highlight color */
}

.feature-list {
  margin: 2rem 0;
  padding-left: 0;
  list-style: none;
}

.feature-item {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 71, 87, 0.05); /* Subtle background */
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;
}

.feature-item .icon {
  margin-right: 0.8rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #3716b8;
  color: white;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #e8414d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

/* For dark mode adaptation */
@media (prefers-color-scheme: dark) {
  .right-content {
    color: #f1f1f1;
  }
  .content-title {
    color: #fff;
  }
  .lead-text {
    color: #ddd;
  }
  .feature-item {
    background: rgba(255, 71, 87, 0.1);
  }
}

.demo-section {
  padding: 5rem 0;
}

.demo-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.demo-content {
  flex: 1;
}

.demo-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.highlight {
  color: #3716b8;
  font-weight: 800;
}

.demo-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.demo-features {
  margin: 2.5rem 0;
}

.feature {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.feature-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #3716b8;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.demo-cta:hover {
  background: #e8414d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.demo-cta svg {
  transition: transform 0.3s ease;
}

.demo-cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .demo-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .phone-frame {
    width: 280px;
    height: 560px;
  }
  
  .demo-content {
    text-align: center;
  }
  
  .feature {
    justify-content: center;
  }
}

.icon svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 12px;
    color: #3716b8; /* Match your highlight color */
}

.app-btn{
    background: #3716b8;
}