
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
  #services, #industries, #about {
    padding: 40px 5%;
  }
  #home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  #home-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .home-overlay {
    position: relative;
    z-index: 2;
  }
  .home-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .home-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
  }
  #services {
    text-align: center;
  }
  #services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
    position: relative;
  }
  #services h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #06BEE1;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    justify-content: space-between; 
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
  }
  .service-info {
    padding: 15px;
  }
  .service-info h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 10px;
  }
  .service-info p {
    font-size: 1rem;
    color: #555;
  }
  .service-box .learn-more {
    display: inline-block;
    background: #06BEE1;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s ease;
  }
  .service-box:hover {
    transform: translateY(-5px);
    background: #06BEE1;
    color: white;
  }
  .service-box:hover .service-info h3,
  .service-box:hover .service-info p {
    color: white;
  }
  .service-box:hover .learn-more {
    background: white;
    color: #06BEE1;
  }
  #industries {
    text-align: center;
    padding: 40px 5%;
    background: #f4f4f4;
  }
  #industries h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
  }
  #industries h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #06BEE1;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .industry-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .industry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .industry-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
  }
  .industry-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
  }
  #about {
    background: #ddd;
    padding: 60px 5%;
  }
  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
  }
  .about-left h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
  }
  .about-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  @media (max-width: 768px) {
    section {
        padding: 40px 5%;
    }
  
    #home h1 {
        font-size: 2.5rem;
    }
  
    .services-grid, .industries-grid {
        grid-template-columns: 1fr;
    }
  
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .about-left {
        max-width: 90%;
    }
  }