* {
    margin: 0;
    padding: 0;
  }
  
  
  .header {
    position: relative;
    background: url("../ImagesAutomated/pallet-asrs-crane1.webp") no-repeat center center/cover;
    height: 200px;
    color: white;
  }
  
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
  }
  
  .overlay h1, .overlay p {
    color: white;
    margin: 0;
  }




  /* Ensure images fit inside the carousel */
.carousel-inner img {
  height: 400px;
  object-fit: cover; /* Prevent distortion */
}

/* Adjust navigation buttons */
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  /* background-color: aqua; */

}




@media (max-width: 768px) {
  .header {
    height: 180px;
    padding-left: 20px;
  }
  .overlay {
    padding-left: 20px;
  }
  .content {
    width: 95%;
    padding: 20px;
  }

 
  .listcontent li{
    font-size: 10px;
  }
}

  