/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: #23232c;
    box-shadow: 0 8px 70px rgba(0, 0, 0, 0.1);
    color: #fff;
    border-radius: 30px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  
  .hero {
    background: linear-gradient(to right, #3b82f6, #6366f1);
    /* background: linear-gradient(45deg, #80befc, #e2e8f0);  */
    color: white;
    text-align: left;
    padding: 2rem 2rem;
    height: fit-content;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 50%;
    border-radius: 8px;
    rotate: 10deg;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    margin-left: 8rem;
    margin-top: 3rem;
}

  .btn {
    display: inline-block;
    background: #fff;
    color: #1e1e2f;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #d1d5db;
  }
  
  .btn.secondary {
    background: #e0e7ff;
    margin-left: 1rem;
  }
  
  .features {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: linear-gradient( #ebf3ff, #f1f1f7);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .testimonials {
    padding: 4rem 2rem;
    background: #f4f4f4;
    text-align: center;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  
  .download {
    background: #1e1e2f;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .download h2 {
    margin-bottom: 1rem;
  }
  
  .download .btn {
    margin-top: 1rem;
  }
  
  .footer {
    text-align: center;
    padding: 2rem;
    background: #111827;
    color: #ccc;
  }
  
  @media (max-width: 768px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0;
  }

  .hero-text h1 {
      font-size: 2.5rem;
  }

  .hero-image {
    width: 50%;
    border-radius: 5px;
    rotate: 10deg;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    margin-left: 3rem;
    /* margin-top: 3rem; */
}
.navbar{
  margin-bottom: 2rem;
}
  
    .nav-links {
      display: none;
      flex-direction: column;
      /* gap: 1px; */
    }
  
    .newsletter form {
      flex-direction: column;
      align-items: center;
    }
  }

 