body {
    padding-top: 56px; /* Adjust for fixed navbar height */
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* Adjusted height for better mobile display */
    overflow: hidden;
    border-radius: 10px;
    background-color: #333; /* Added background color */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed to cover to ensure images fill the container */
}

@media (max-width: 768px) {
    .carousel-item {
        height: 180px; /* Adjusted height for smaller screens */
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
    }
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-text {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .navbar-text {
        display: none; /* Hide configurable text on small screens */
    }
}