/* 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(109, 156, 109, 0.4);
    color: #000;
    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;
    margin-bottom: 2em;
    color: #6e6d6d;
  }

  
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1em;
  }
  
  /* Overview Section */
  .overview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f2f2f2;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .overview p {
    flex: 1 1 500px;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 1em;
  }
  
  .overview img {
    flex: 1 1 300px;
    max-width: 100%;
    border-radius: 1em;
    margin: 1em;
  }
  
  /* Operations Section */
  .operations {
    background: #ffffff;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .operation-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5em;
  }
  
  .card {
    background: #e9e9e9;
    padding: 1.5em;
    border-radius: 1em;
    flex: 1 1 300px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  
  /* 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;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 1em;
  }
  
  .gallery-item p {
    margin-top: 0.5em;
    font-size: 1em;
    font-weight:bold;
  }

  .btn {
    color:#fff;
    background-color:#000;
    padding: 1em 1.5em;
    border-radius: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-weight:bold;
    text-decoration: none;
  }

  .btn:hover {
    color:#000;
    background-color:#fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 1.2em 1.7em;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero,
    .overview,
    .operations,
    .gallery-grid {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

