/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #25d366;
    padding: 0px 40px;
  }

  #heading{
    font-size: 9vh;
    text-align: left;
    margin-left: 0;
    background: linear-gradient(to bottom, rgb(255, 255, 255),rgb(118, 255, 168), rgb(255, 255, 255));
    -webkit-background-clip: text;
    color: transparent; 
    /*-webkit-text-fill-color:rgb(215, 172, 255);*/
    -webkit-text-stroke-color:rgb(50, 119, 76);
    -webkit-text-stroke-width:0.35vh;
}
  
  header .logo img {
    width: 60px;
    height: 60px;
  }

  .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  header .header-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  
  header .header-links a:hover {
    text-decoration: underline;
    text-decoration-thickness:0.5vh ;
    text-underline-offset:1.2vh ;
  }
  
  /* Main Section */
  main {
    padding: 40px 20px;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Adds space between content */
    padding: 60px 20px;
  }
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .download-btn {
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
  }
  
  .download-btn:hover {
    background-color: #128c7e;
  }
  
  .hero-image img {
    width: 500px;
    height: auto;
    max-width: 100%;
    display: block;
  }
  
  /* Features Section */
  .features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 80px;
  }
  
  .feature {
    text-align: center;
    max-width: 340px;
  }
  
  .feature img {
    width: 300px;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Footer Section */
  footer {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 80px;
  }
  
  footer .footer-links {
    margin-bottom: 20px;
  }
  
  footer .footer-links a {
    color: #25d366;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
  }
  
  footer .footer-links a:hover {
    text-decoration: underline;
  }
  
  footer p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      align-items: center;
    }
  
    .hero-content {
      max-width: 90%;
      text-align: center;
    }
  
    .hero-image img {
      width: 100%;
    }
  
    .features {
      flex-direction: column;
      align-items: center;
      margin-top: 40px;
    }
  
    .feature {
      margin-bottom: 40px;
    }
    #heading{
      font-size: 0vh;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #25d366;
    padding: 0px 40px;
    height: auto;
  }
  .header-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  }
  