.image-container {
    position: relative;
    height: 500px;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}
.text-container h1 {
    margin: 0;
    font-size: 3rem;
    color: #fff;
}
.text-container h2 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
}
.text-container button {
    color: white;
    padding: 5px 20px;
    background-color: #DE6449;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    margin-top: 2rem;
    cursor: pointer;
}
.image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popular-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100VW;
    height: 500px;
}
.popular-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    font-size: large;
}
.carousel{
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the background color and opacity as needed */
}
.carousel-inner{
    width: 100% !important;
    height: 100% !important;
}
.carousel-item{
    width: 100% !important;
    height: 100% !important;
    transition: opacity 0.5s ease-in-out !important;
    opacity: 0;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-item img{
    object-fit: cover !important;
}
.carousel-caption{
    margin: 0;
    padding: 0;
    background-color: rgba(0,0,0,0);
}

