/* new Nav */
    /* Flex container (navigation menu) */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgb(18, 15, 184);
        padding: 10px;
    }

    /* Flex items (menu items) */
    .nav-item {
        margin-right: 20px;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
    }

    /* for hoover */
    .nav-item:hover {
        background-color: #928e8e
    }

    /* Media query for smaller screens */
    @media screen and (max-width: 600px) {
        .nav-container {
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-item {
            margin-bottom: 10px;
        }
    }
    .topic
    {
        text-align:center;
        font-size: xx-large;
        font-weight: 1000;
    }

    


    /* choppeko content dekhauna */
    .hidden-content {
        display: none;
    }
    #toggle:checked + .hidden-content {
        display: block;
    }