 /* ---------- Hero Section ---------- */
    .banners {
      position: relative;
      height: 350px;
      background: url('https://source.unsplash.com/1600x800/?construction,building') center/cover no-repeat;
      display: flex;
      align-items: start;
      color: white;
	justify-content: start;
		align-items: center;
		padding: 40px;
    }
    .banners .banners::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .banners .banners-content {
      position: relative;
      z-index: 2;
    }
    .banners .banners-content h1 {
      font-size: 48px;
    }

    @keyframes fadeUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
