/* ============================================ */
/* ✅ HERO SECTION */
/* ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 50vh;
    padding: 5%;
    background: url('../images/cargohero.png') no-repeat center/cover;
    position: relative;
    z-index: 9997;
    margin-top: 0px;
  }
  
  /* ✅ DARK OVERLAY */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  
  /* ✅ HERO CONTENT */
  .hero-content {
    max-width: 700px;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  /* ✅ HERO LOGOS */
  .hero-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    z-index: 2;
    display: none;

  }
  
  .hero-logo {
    width: 150px;
    height: auto;
      display: none;

  }
  
