/* Global Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    font-family: Helvetica ,Roboto;
}

html{
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Roboto, sans-serif;
    background: #fafafa;
    animation: fadeIn 1.5s ease-in-out forwards;
  }
  
  main {
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section {
    margin-bottom: 3em;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 1em;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 125, 136, 0.4);
    padding: 2em;
    border-radius: 1em;
  }
  
  .hero-text {
    flex: 1 1 400px;
    padding: 1em;
  }
  
  .hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .hero-text p {
    font-size: 1.2em;
    color: #6e6d6d;
  }
  
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1em;
  }
  
  /* Experience & Services Section */
  .experience {
    background: #f2f2f2;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .experience p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 1em 0;
  }
  
  /* Gallery Section */
  .gallery {
    text-align: center;
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
  }
  
  .gallery-item {
    background: #fff;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    align-self: center;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 1em;
  }
  
  .gallery-item p {
    margin-top: 0.5em;
    font-size: 1em;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero,
    .gallery-grid {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }