/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #1b1b42;
    overflow-x: hidden;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(45deg, #ff9000, #ff6a00);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-content {
    text-align: center;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: #fff;
    color: #ff9000;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  /* About Section */
  #about {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }
  
  /* Services Section */
  #services {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .service {
    background-color: #fff;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 30%;
  }
  
  .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
  
  .service h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff9000;
  }
  
  .service p {
    font-size: 1.1rem;
    color: #555;
  }
  
  /* Testimonials Section */
  #testimonials {
    padding: 80px 0;
    background-color: #1b1b42;
    color: #fff;
    text-align: center;
  }
  
  .testimonial {
    margin-bottom: 40px;
    opacity: 0;
  }
  
  .testimonial p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .client-name {
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
  }
  
  /* Contact Section */
  #contact {
    padding: 80px 0;
    background-color: #ff9000;
    color: #fff;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  #contact form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  #contact input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 1.1rem;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  #contact input:focus {
    background-color: #fff;
    outline: none;
  }
  
  #contact button {
    background-color: #fff;
    color: #ff9000;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  #contact button:hover {
    transform: translateY(-5px);
    background-color: #ff6a00;
    color: #fff;
  }
  
  /* Footer */
  footer {
    background-color: #1b1b42;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  /* Scroll animations */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  