/* General resets */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    height: 90vh;
    padding: 0 2rem;
  }
  .hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0;
  }
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
  }
  .hero-btn {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    opacity: 0;
    transition: background-color 0.3s ease;
  }
  .hero-btn:hover {
    background-color: #1e40af;
    color: white;
  }
  
  /* Features */
  .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .feature-icon {
    font-size: 3rem;
    color: #2575fc;
  }
  
  /* Why Choose Us */
  #why-choose {
    background: #f9f9f9;
  }
  .choose-icon {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 0.8rem;
    opacity: 0;
  }
  .choose-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
  }
  .choose-desc {
    font-size: 0.95rem;
    opacity: 0;
  }
  
  /* Testimonials */
  .testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 140px;
  }
  .testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .testimonial-slide.active {
    display: block;
    opacity: 1;
  }
  .testimonial-quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .testimonial-name {
    font-weight: 600;
    color: #333;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    padding: 3rem 1rem;
  }
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .cta-btn {
    font-weight: 700;
    padding: 1rem 3rem;
    border-width: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .cta-btn:hover {
    background-color: white;
    color: #2575fc;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }
    .section-title {
      font-size: 2rem;
    }

  }
  