div#initialtextloader {
    position: absolute; /* Use fixed positioning for full-screen coverage */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it is on top of other content */
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ee7c23 !important; /* Text color */
    font-size: 1.5em; /* Font size for the loading text */
    font-weight: bold; /* Optional: make the text bold */
    text-align: center;
     opacity: 1; /* Fully opaque by default */
     transition: opacity 0.5s ease; /* Transition effect for opacity */
}