/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1c1c1c, #000);
    color: #fff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-family: 'Bungee Shade', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  }
  
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff00ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    transform: scale(1.1);
  }
  
  /* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/pic/341e800b1f29d3e34ea2eba5a6af205c.gif') no-repeat center center/cover; /* Add your neon waves image here */
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to enhance text visibility */
  }
  
  .hero .container {
    z-index: 1;
    text-align: center;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ff00ff; /* Neon pink for the title */
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; /* Glow effect */
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Features Section */
  .features {
    padding: 4rem 0;
    background: #1c1c1c;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff00ff;
  }
  
  .feature-card p {
    font-size: 1.2rem;
  }
  
  /* Roadmap Section */
  .roadmap {
    padding: 4rem 0;
    background: #1c1c1c;
  }
  
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .milestone {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .milestone:hover {
    transform: scale(1.05);
  }
  
  .milestone h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff00ff;
  }
  
  .milestone p {
    font-size: 1.2rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 0;
    background: #1c1c1c;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: #2c2c2c;
    color: #fff;
    font-size: 1.2rem;
  }
  
  .contact-form button {
    align-self: flex-end;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0;
    background: #000;
    text-align: center;
  }
  
  .social-links {
    margin-top: 1rem;
  }
  
  .social-icon {
    color: #ff00ff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.2);
  }