/* Custom slider styles to match the original theme */

/* Control carousel height */
.carousel {
  height: 450px;
  overflow: hidden;
}

.carousel .item {
  height: 450px;
  background-color: #f8f8f8;
}

/* Image positioning */
.carousel .item img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: right center;
}

/* Caption positioning and styling */
.carousel-caption {
  position: absolute;
  left: 10%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  width: 40%;
  padding: 0;
  bottom: auto;
  color: #333;
  text-shadow: none;
}

.carousel-caption h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 15px 0;
  color: #333;
}

.carousel-caption h4 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.carousel-caption h4.col_1 {
  color: #ea1c26;
}

.carousel-caption .button {
  background: #ea1c26;
  color: white;
  padding: 10px 25px;
  display: inline-block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
}

.carousel-caption .button:hover {
  background: #333;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .carousel-caption {
    left: 5%;
    width: 50%;
  }
  
  .carousel .item img {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .carousel-caption {
    left: 5%;
    width: 90%;
    text-align: center;
  }
  
  .carousel .item img {
    opacity: 0.3;
    max-width: 100%;
    width: 100%;
    object-position: center;
  }
}
