        /* NavBar */
        .navbar {
            background-color: #df1a25 !important;
            padding: 5px 10px;
            /* Reduced vertical padding */
            height: 100px;
            /* Fixed height for consistency */
            max-height: 100px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
            position: fixed !important;
            /* Force fixed position */
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1030 !important;
            /* Bootstrap standard z-index for fixed navbar */
        }

        .navbar-brand {

            font-size: 24px;
            font-weight: bold;
            color: #fff;
            position: relative;
            z-index: 1002;
            /* Ensure logo is above everything */
        }

        .navbar-img {
            position: relative;
            transform: translateY(50%);
            /* Adjusted centering */
            margin-left: auto;
            margin-right: auto;
            display: block;
            z-index: 1001;
            /* Ensure it stays above navbar */
            width: 100px;
            height: auto;
        }

        .navbar-brand img {
            padding: 0;
            max-height: 65px;
            /* Constrain height */
            width: auto;
        }

        .navbar-collapse {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 575.98px) {
            #home-ico {
                display: none;
            }

            .navbar-img {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                margin: 0;
            }

            .logo-container {
                position: relative;
                width: 100px;
                height: 90px;
                margin: auto;
            }

            .logo-img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                transition: transform 1s ease-in-out;
            }

            .logo-img.hidden {
                transform: rotateY(90deg);
            }

            .logo-img.visible {
                transform: rotateY(0deg);
            }
        }

        /* Language Dropdown Spacing */
        .dropdown-item.lang-item {
            display: flex;
            align-items: center;
            gap: 8px;
            /* Space between flex items */
        }

        .dropdown-item.lang-item img {
            margin-right: 8px;
            /* Extra margin for safe spacing */
        }