
/* ✅ Flipbook Section */
#flip-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: url("https://allimgb.ams3.cdn.digitaloceanspaces.com/lawfirm/Alpha2.webp") no-repeat center center;
    background-size: cover;
}

/* ✅ Flipbook Styling */
#JustFlipIt {
    width: 600px;
    height: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.8); /* Slight transparency */
    position: relative;
}

/* ✅ Flipbook Pages */
.xxxpbl_page {
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0px 0px 10px #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ First & Last Page Styling - 90% Transparent */
.pbl_cover {
    background: rgba(0, 0, 0, 0.1); /* 🔹 90% transparent */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
}

#loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8); /* Light transparent background */
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.spinner-logo {
    width: 80px;
    height: 80px;
    animation: spin 1.5s linear infinite;
}

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

