* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(120deg, #0f172a, #1e293b);
      color: white;
    }
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(15, 23, 42, 0.95);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #38bdf8;
    }
    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }
    nav a:hover {
      color: #38bdf8;
    }
    /* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #0f172a, #1e293b);
  color: #2d3748;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #4299e1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.hero-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.feature-item i {
  margin-right: 1rem;
  color: #4299e1;
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #3182ce;
  color: white;
}

.secondary-btn {
  background-color: white;
  color: #3182ce;
  border: 2px solid #3182ce;
}

.primary-btn:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
}

.secondary-btn:hover {
  background-color: #ebf8ff;
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}
    .video-section {
      margin: 60px auto;
      max-width: 720px;
      padding: 20px;
      text-align: center;
    }
    .video-section iframe {
      width: 100%;
      height: 400px;
      border-radius: 15px;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 60px 20px;
    }
    .feature-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.4s;
    }
    .feature-card:hover {
      transform: translateY(-10px);
    }
    

    .stats-section {
      display: flex;
      justify-content: space-around;
      background: #1e293b;
      padding: 40px 20px;
      text-align: center;
    }
    .stat-box {
      background: #0f172a;
      border: 1px solid #38bdf8;
      padding: 30px;
      border-radius: 15px;
    }
    .stat-box h2 {
      color: #38bdf8;
      font-size: 2rem;
    }
    .faq {
      max-width: 800px;
      margin: 60px auto;
      padding: 20px;
    }
    .faq-item {
      background: #0f172a;
      margin-bottom: 15px;
      padding: 20px;
      border-left: 4px solid #38bdf8;
      border-radius: 10px;
    }
    /* Floating Buttons Container */
.floating-buttons-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Base Floating Button Style */
.floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Button Colors */
.whatsapp-btn { background: #25D366; }
.apk-btn { background: #4CAF50; }
.playstore-btn { background: #4285F4; }

/* Button Text (Hidden by default) */
.button-text {
  position: absolute;
  opacity: 0;
  width: 0;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Expanded State on Hover/Tap */
.floating-button:hover,
.floating-button:active {
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
}

.floating-button:hover .button-text,
.floating-button:active .button-text {
  opacity: 1;
  width: auto;
  margin-left: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .floating-buttons-container {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  
  .floating-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .button-text {
    font-size: 12px;
  }
}

/* Very Small Devices */
@media (max-width: 480px) {
  .floating-buttons-container {
    right: 10px;
    bottom: 10px;
  }
  
  .floating-button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Ensure Font Awesome icons load properly */
.fab, .fas {
  display: inline-block;
  width: 1em;
  text-align: center;
}


    .feature-card h3 {
    color: #38bdf8; /* Blue color for headings */
}

.feature-card p {
    color: #ffffff; /* White color for content */
}

