/* Custom Styles */
body, html {
    height: 100%;
    margin: 0;
}

.slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: background-image 1s ease-in-out;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 15%;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#features .card {
    background-color: rgba(255, 255, 255, 0.8);
}

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode .bg-light {
    background-color: #333333 !important;
}

body.dark-mode .navbar {
    background-color: #212529 !important;
}

body.dark-mode .card {
    background-color: #424242;
    color: #ffffff;
}

body.dark-mode .form-check-label {
    color: #ffffff;
}