* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }


  .navbar {
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    margin-left: 1.2rem;
    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 {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffbb00;
    color: #333;
  }

  .hero h2{
    margin-top: 2rem;
  }

  .carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 3rem 1rem;
    background: #fff;
  }
  .testimonial {
    min-width: 100%;
    text-align: center;
    transition: transform 0.5s ease-in-out;
  }
  .testimonial .icon {
    font-size: 2rem;
    color: #ffbb00;
  }
  .testimonial p {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  .testimonial h4 {
    margin-top: 0.5rem;
    color: #333;
  }
  .testimonial span {
    font-size: 0.9rem;
    color: #777;
  }
  .video-testimonial {
    padding: 2rem;
    text-align: center;
  }
  .video-testimonial h3 {
    margin-bottom: 1rem;
  }
  .video-testimonial video {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
  }
  .stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem 1rem;
    background-color: #f0f0f0;
    flex-wrap: wrap;
  }
  .stat {
    text-align: center;
    margin: 1rem;
  }
  .stat i {
    font-size: 2rem;
    color: #ffbb00;
  }
  .stat h4 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

.testimonials {
  background: var(--light);
}

.testimonial-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  font-size: 1.1rem;
}

.testimonial.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}


  .cta {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
  }
  .cta .btn {
    margin-top: 1rem;
    background-color: #ffbb00;
    padding: 0.7rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }


.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) {
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
    }
    .carousel {
      flex-direction: column;
    }
    .testimonial {
      min-width: 100%;
    }
    .stats {
      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;
  }
}
