/* Container for the carousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Individual images in the carousel */
.carousel-image {
    width: 100%;
    height: auto;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* Controls for next/prev buttons */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Positioning the title on top of the carousel */
.section.image h1 {
    position: absolute;
    top: 50px; /* Adjust as needed */
    left: 134px; /* Adjust as needed */
    z-index: 10;
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}