/* Ensure the carousel container spans the full width */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Ensure the carousel images and videos take up the full width */
.carousel-inner img, 
.carousel-inner video {
    width: 100%;
    height: auto;}

/* Adjust thumbnails to be centered and sized */
.carousel .img-thumbnail {
    max-height: 80px;
    object-fit: cover;
    cursor: pointer; }
.carousel .row {
    margin: 0 auto;
    width: auto;}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    color: white;
    text-align: center;
}

.carousel-caption {
    font-size: 60px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Black shadow effect */
    margin: 0;}


@media (max-width: 767px) {
    .carousel-caption h5 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
	
