.services-hero {
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center/cover no-repeat;
    height: 90vh;
    position: relative;
  }
  
  .services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark overlay for text legibility */
    z-index: 1;
  }
  
  .services-hero .container {
    position: relative;
    z-index: 2;
  }
  
  .fade-in {
    animation: fadeInUp 1.5s ease-out both;
  }

  .text-white{
      color: white;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  