.logistic-scene {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 10vh;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logistic-icon-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
.logistic-ship-container {
  left: 50%;
  transform: translate(-50%, -50%);
  animation: logistic-moveLeft 2s forwards;
}
.logistic-industry-container {
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.logistic-plane-container {
  left: 50%;
  transform: translate(-50%, -50%);
  animation: logistic-moveRight 2s forwards;
}
.logistic-icon-label {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.logistic-icon {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #333;
  stroke-width: 25;
}
.logistic-line-left,
.logistic-line-right {
  position: absolute;
  top: 25%;
  height: 2px;
  background: #888;
  transform: translateY(-50%);
  width: 0;
  z-index: 1;
}
.logistic-line-left {
  right: 50%;
  margin-right: 40px;
  animation: logistic-growLeft 2s forwards;
}
.logistic-line-right {
  left: 50%;
  margin-left: 40px;
  animation: logistic-growRight 2s forwards;
}

@keyframes logistic-moveLeft {
  to {
    left: 20%;
  }
}
@keyframes logistic-moveRight {
  to {
    left: 80%;
  }
}
@keyframes logistic-growLeft {
  to {
    width: calc(30% - 70px);
  }
}
@keyframes logistic-growRight {
  to {
    width: calc(30% - 70px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logistic-icon {
    width: 40px;
    height: 40px;
  }
  .logistic-icon-container {
    width: 60px;
  }
  .logistic-icon-label {
    font-size: 12px;
    margin-top: 8px;
  }
  .logistic-line-left {
      top: 30%;
    margin-right: 30px;
  }
  .logistic-line-right {
      top: 30%;
    margin-left: 30px;
  }
  @keyframes logistic-growLeft {
    to {
      width: calc(30% - 60px);
    }
  }
  @keyframes logistic-growRight {
    to {
      width: calc(30% - 60px);
    }
  }
}

@media (max-width: 480px) {
  .logistic-icon {
    width: 30px;
    height: 30px;
  }
  .logistic-icon-container {
    width: 50px;
  }
  .logistic-icon-label {
    font-size: 10px;
    margin-top: 5px;
  }
  .logistic-line-left {
      top: 35%;
    margin-right: 20px;
  }
  .logistic-line-right {
      top: 35%;
    margin-left: 20px;
  }
  @keyframes logistic-growLeft {
    to {
      width: calc(30% - 45px);
    }
  }
  @keyframes logistic-growRight {
    to {
      width: calc(30% - 45px);
    }
  }
}