/* Logo Section */
#logo-section {
    height: 25vh;  /* 1/4 of the screen height */
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ccc;
}

#logo {
    max-height: 80%;
    max-width: 80%;
}

/* Carousel Image Overlay */
.overlay-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlay-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Dark overlay */
    opacity: 0.7;
}

/* Increase size of h5 */
.carousel-caption h5 {
    font-size: 2.5rem;  /* Increased font size */
    font-weight: bold;
}

/* Improve text contrast */
.carousel-caption p {
    font-size: 1.2rem;
    color: #f8f9fa; /* Lighter text color for contrast */
}
