.carousel-fullscreen {
    height: calc(100vh - 105px); /* 100vh - (Topbar + Navbar height) */
    position: relative;
    overflow: hidden;
}
.carousel-item {
    height: 100%;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire area */
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
}
.carousel-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.carousel-caption h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Facts Section Styles */
.facts {
    padding: 60px 0; /* Add padding for better spacing */
}
.facts .col-lg-4 {
    margin-bottom: 30px; /* Add margin between facts items */
}
.facts .bg-primary,
.facts .bg-light {
    padding: 20px; /* Add padding for better spacing */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .topbar {
        display: none; /* Hide Topbar on mobile and tablet */
    }
    .navbar-nav {
        background-color: white; /* Ensure background color for collapsed menu */
        padding: 10px; /* Add padding for better spacing */
    }
    .carousel-fullscreen {
        height: 50vh /* 100vh - Navbar height */
    }
    .carousel-item img {
        object-fit: contain; /* Ensure the image fits within the container on mobile */
    }
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .carousel-fullscreen {
        height: 40vh; /* Adjust height for mobile */
    }
    .carousel-caption h5 {
        font-size: 1rem;
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .facts {
        padding: 30px 0; /* Reduce padding for smaller screens */
    }
    .facts .col-lg-4 {
        margin-bottom: 20px; /* Reduce margin between facts items */
    }
}

@media (max-width: 450px) {
    .carousel-fullscreen {
        height: 24vh; /* Adjust height for mobile */
    }
}

@media (max-width: 360px) {
    .carousel-fullscreen {
        height: 21vh; /* Adjust height for mobile */
    }
}
