.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 1200px;
  }
  .carousel-inner {
    display: flex;
    transition: transform 0.6s ease;
  }
  .carousel-item {
    min-width: 100%;
    position: relative;
  }
  .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  .carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    max-width: 60%;
  }
  .carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
  }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  