* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #000; 
    color: #f7f7f7; 
    line-height: 1.6;
    text-align: center;
    padding: 50px 0;
  }
  
  /* Header */
  .title {
    margin-bottom: 30px;
  }
  
  /* Heading */
  .neon {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
  }
  
  .neon:hover {
    color: #03a9f4; 
  }
  
  /* Container  */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Button  */
  .btn {
    padding: 15px 25px;
    background-color: #00e5ff; 
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn i {
    margin-right: 10px;
  }
  
  .btn:hover {
    background-color: #03a9f4; 
    color: #fff;
    transform: scale(1.1);
  }
  
  /*Buttons */
  .btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .title {
      font-size: 2.5rem;
    }
  
    .btn {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
    }
  
    .images img {
      width: 100%;
      height: auto;
    }
  
    .features {
      flex-direction: column;
      padding: 20px;
    }
  
    .feature {
      margin-bottom: 20px;
    }
  }
  
  /* Image Styling */
  .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
  }
  
  .images img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .images img:hover {
    transform: scale(1.05);
  }
  
  /* About*/
  .about {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .about h2 {
    font-family: 'Poppins', sans-serif;
    color: #00e5ff;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .about p {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Features*/
  .features {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 50px;
    padding: 30px;
    background-color: #333;
    border-radius: 10px;
  }
  
  .feature {
    text-align: center;
  }
  
  .feature i {
    font-size: 3rem;
    color: #00e5ff;
    margin-bottom: 10px;
  }
  
  .feature h3 {
    font-size: 1.5rem;
    color: #f7f7f7;
    margin-bottom: 10px;
  }
  
  .feature p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Footer*/
  footer {
    background-color: #222;
    color: #f7f7f7;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
  }
  
  footer a {
    color: #00e5ff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  