
html, body {
    height: 100%;
    background-image: linear-gradient(145deg, #000000fc, #108e93ff);
    background-attachment: fixed; /* fixes the background relative to the viewport */
    background-repeat: no-repeat; /* ensures no repeat */
    background-size: cover; /* covers the entire element */
}

.fixed-top,
.fixed-bottom {
    z-index: 3 !important;
}

.navbar-toggler {
    border: none !important;
}

.loginContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 1200px;
    background-position: left 90% center;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
}

    .loginContainer .opaque-background {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: transparent;
    }

.lhs-container, .section-content {
    display: none;
}

    .lhs-container.active {
        display: block;
    }

.is-hidden {
    display: none;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    background-image: linear-gradient(145deg, #000000fc, #108e93ff);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .loading-screen .floating {
        animation: fadeInUpBounce 1s ease-in-out;
    }

@keyframes fadeInUpBounce {
    0% {
        opacity: 0.4;
        transform: translateY(100%);
    }

    70% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        transform: translateY(-5px);
    }

    90% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-main {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .image-container-main.visible {
        opacity: 1;
        transform: translateX(0);
    }

.image-container {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .image-container.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .image-container .image-subsection {
        position: absolute;
        right: 0;
        top: -20px;
    }

.image-container-secondary {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.image-container-secondary img {
    width: auto;
}

/* Responsive override for desktop */
@media (max-width: 768px) {
    .image-container-secondary img {
        width: 70%;
    }
}

.btn-outline-login {
    color: white;
    border-color: transparent;
}

    .btn-outline-login:hover {
        color: white;
        background-color: #6c757d;
    }


.pricing-table {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
}

/* Responsive override for desktop */
@media (max-width: 768px) {
    .pricing-table {
        overflow-x: visible;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        padding: 20px;
        overflow-y: scroll;
    }

    .plan {
        max-height: 500px;
        overflow-x: scroll;
    }
}


.plan {
    background-color: #212529;
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 0.5px solid gray;
    transform: scale(1.05); /* Slightly larger size */
    transition: transform 0.3s ease;
    margin-bottom: 5px;
}

    .plan:hover {
        transform: scale(1.1); /* Slightly enlarges on hover */
    }

    .plan h2 {
        font-size: 1.8rem;
    }

    .plan .price {
        font-size: 2rem;
        color: #198754; /* Green price color */
    }

        .plan .price span {
            font-size: 1rem;
            color: #aaaaaa;
        }

    .plan .description {
        margin: 10px 0;
        font-size: 1rem;
        color: #cccccc;
    }

    .plan .listItemContainer {
        margin: 20px 0;
        text-align: left;
    }

    .plan .listItem {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .plan .listItem i {
        margin-top: 4px;
    }

.active-btn {
    background-color: #198754;
    color: #000000;
}

.disabled-btn {
    background-color: #666666;
    color: #aaaaaa;
    cursor: not-allowed;
}

.popular {
    border: 3px solid white; /* Highlight the "Plus" plan */
}

    .popular .badge {
        background-color: #198754;
        color: #000000;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.8rem;
    }

.plan.pro .active-btn {
    background-color: #ffbb00;
    color: #000000;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}

    .fullscreen-overlay.active {
        opacity: 1;
        visibility: visible;
        z-index: 5;
    }

.overlay-nav {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .overlay-nav .nav-item {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

        .overlay-nav .nav-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

    .overlay-nav a {
        color: white;
        font-size: 24px;
        text-decoration: none;
    }

.close-btn {
    position: absolute;
    top: 6px;
    right: 20px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

label {
    color: gray !important;
}

.carousel-item {
    max-height: 700px;
}