/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  h2, h3 {
    font-weight: 600;
  }
  
  .navbar {
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  nav a.active,
  nav a:hover {
    color: #ffbb00;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  
  .hero {
    background-color: #ffbb00;
    color: white;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
  }
  
  .benefits {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
  }
  
  .benefit-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: white;
    width: 250px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card i {
    font-size: 3rem;
    color: #ffbb00;
  }
  
  .testimonials {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonial-slider {
    display: flex;
    justify-content: center;
    overflow-x: auto;
  }
  
  .testimonial {
    width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .rating i {
    color: #ffbb00;
  }
  
  .process {
    padding: 50px 20px;
  }
  
  .steps {
    display: flex;
    justify-content: space-around;
  }
  
  .step {
    width: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .cta {
    background-color: #333;
    color: white;
    padding: 50px 20px;
    text-align: center;
  }
  
  .cta-button {
    background-color: #ffbb00;
    padding: 10px 20px;
    color: #333;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6a800;
  }

  
.footer-links{
  background: #8a7c7c;
  padding-bottom: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links ul li{
  text-decoration: none;
}

.footer-links a{
    color: blue;
}

.footer-links a:hover {
    color: #ffbb00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.alpha{
    text-decoration: none;
    background: aqua;
    padding: 5px 12px;
    border-radius: 10px;
}
  
  @media (max-width: 768px) {
    .benefit-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .steps {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  #nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  #nav-links.show {
    display: flex;
  }
}