        .navbar {
            background-color: #2c3e50;
            padding: 5px;
            position: sticky;
            top: 0;
            z-index: 1000;

        }

        /* Navbar items styling */
        .menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
           
        }

        .menu-item {
            position: relative;
            border-right: 1px solid whitesmoke;


        }

        .menu-item a {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            display: block;
            transition: background-color 0.3s;
            text-transform: uppercase;

        }

        .menu-item a:hover {
            background-color: #34495e;
            color: white;
            border-radius: 2px;
        }

        /* Submenu styling */
        .submenu {
            position: absolute;
            left: 0;
            top: 100%;
            background-color: #34495e;
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
            min-width: 220px;
            border: none;
           
        }

        .submenu .menu-item a {
            padding: 5px 10px;
            border-bottom: 1px solid white;
            border-left: 1px solid white;

        }

        .menu-item:hover > .submenu {
            display: block;
        }

        /* Mobile Sidebar */
        .offcanvas {
            background-color: #2c3e50;
            color: white;
            height: 100vh; /* Full screen height */
            width: 250px; /* Sidebar width */
        }

        .offcanvas .menu {
            flex-direction: column;
        }

        .offcanvas .menu-item a {
            color: white;
            padding: 10px 15px;
        }

        .offcanvas .menu-item a:hover {
            background-color: #34495e;
            color: white;
            border-radius: 10px;

        }

        /* Sidebar Height and Image Fit */
        .offcanvas-body {
            height: 450px; /* Set sidebar height */
            overflow-y: auto; /* Make it scrollable if content exceeds */
        }

        .carousel-item img {
            width: 100%;
            height: 450px; /* Ensures the image fits the sidebar */
            object-fit: fill;
        }#bars{
            display: none;

        }

        /* Adjust carousel for smaller devices */
        @media (max-width: 768px) {
            .carousel-item img {
                height: 350px; /* Set carousel image height for mobile */
            }
            #bars{
                display: block;
                width: 100%;
                background-color: black;
                padding: 10px;
            }
        }

        @media (max-width: 576px) {
            .carousel-item img {
                height: 250px;
            }
            #bars{
                display: block;
                width: 100%;
                background-color: black;
                padding: 10px;
            }
        }