    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    .splash-screen {
        position: fixed;
        margin: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .loader {
        position: relative;
        width: 120px; /* Adjust the width of the loader circle */
        height: 120px; /* Adjust the height of the loader circle */
        border: 8px solid #f3f3f3;
        border-top: 8px solid orange;
        border-radius: 50%;
        animation: spin 2s linear infinite; /* Apply animation to the loader circle */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logoMain {
        position: absolute;
        top: 50%; /* Position the top of the image at the middle of the .loader */
        left: 50%; /* Position the left of the image at the center of the .loader */
        transform: translate(-50%, -50%); /* Center the image precisely */
        width: 100px; /* Adjust the width of the image */
        height: auto; /* Maintain aspect ratio */
        border-radius: 50%;
        z-index: 99999; /* Ensure the logo is in front of the loader */
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
