body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f0f0f0; /* Background color for extra space */
        }

        .phone-container {
            width: 350px; /* Default phone width */
            height: 717px; /* Default phone height */
            background-color: white;
            border-radius: 20px; /* Optional rounded corners */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
            overflow: hidden;
        }

        /* Make it full-screen on mobile */
        @media (max-width: 480px) {
            .phone-container {
                width: 100vw;
                height: 100vh;
                border-radius: 0;
                box-shadow: none;
            }
        }
        .bg{
            width: 100%;
            display: block;
        }
        .p1{
            position: absolute;
            top: 50%; /* Adjust to place the div */
            left: 50%;
            transform: translate(-50%, -50%); /* Centering trick */
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 120px;
            height: 120px;
            cursor: pointer;
        }
        .p2{
            position: absolute;
            top: 60%; /* Adjust to place the div */
            left: 10%;
            transform: translate(-50%, -50%); /* Centering trick */
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 120px;
            height: 120px;
            cursor: pointer;
        }
        .p3{
            position: absolute;
            top: 60%; /* Adjust to place the div */
            left: 90%;
            transform: translate(-50%, -50%); /* Centering trick */
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 120px;
            height: 120px;
            cursor: pointer;
        }

        .p4{
            position: absolute;
            top: 50%; /* Adjust to place the div */
            left: 25%;
            transform: translate(-50%, -50%); /* Centering trick */
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 120px;
            height: 120px;
            cursor: pointer;
        }
        .p5{
            position: absolute;
            top: 50%; /* Adjust to place the div */
            left: 70%;
            transform: translate(-50%, -50%); /* Centering trick */
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 120px;
            height: 120px;
            cursor: pointer;
        }
        
        .image-container {
            position: relative; /* Make this the reference for absolute positioning */
            display: block; /* Prevent extra space issues */
        }
        .logo{
            height: 140px;
            position: absolute;
            width: 140px;
            transform: translate(-50%, -50%);
            left: 50%;
            top: 50%;
            border-radius: 50%;
            z-index: 2;
            margin-top: 36%;
            margin-left: 3px;
        }

        #loading {
            position: fixed;
            width: 100vw;
            height: 100vh;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* Simple Spinner */
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #ccc;
            border-top: 5px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }