/* BACKGROUND SECTION */
.landing-page {
    position: relative;
    height: 100vh;
    background: url('bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* CONTENT BOX */
.content-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* LOGO */
.logo {
    width: 250px;
    margin-bottom: 15px;
}

/* TITLE */
.content-box h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #222;
}

/* SUBTITLE */
.content-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* INPUT */
.content-box input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* BUTTON */
.content-box button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.content-box button:hover {
    background: #3b55d9;
}

/* MOBILE */
@media (max-width: 480px) {
    .content-box {
        padding: 20px;
    }

    .logo {
        width: 100px;
    }
}


/* PAGE BACKGROUND */
.report-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef2f7, #d9e4f5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

/* MAIN CARD */
.report-card {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
}

/* TITLE */
.report-card h1 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #222;
}

/* PDF CONTAINER */
.pdf-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* FULL HEIGHT PDF VIEW */
.pdf-container iframe {
    height: calc(100vh - 180px);
}




/* DOWNLOAD BUTTON */
.download-wrap {
    margin-top: 25px;
}

.download-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #4a6cf7;
    color: #fff;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: #3b55d9;
}


@media (max-width: 768px) {
    .pdf-container iframe {
        height: 65vh;
    }
}
/* MOBILE */
@media (max-width: 768px) {
    .report-card {
        padding: 20px;
    }

    .pdf-container iframe {
        height: 350px;
    }

    .report-card h1 {
        font-size: 20px;
    }
}