.carousel-wrapper {
  max-width: 96vw; /* Use almost full width */
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 500px; /* Wider images */
  height: 280px; /* Panoramic aspect ratio */
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.carousel img.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.carousel-description {
  margin-top: 30px;
  text-align: center;
  color: #fff;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.carousel-description h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.carousel-description p {
  font-size: 1.2rem;
  color: #ccc;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.carousel-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s ease;
}

.carousel-controls button:hover {
  background-color: #ffd700;
}
