/* --- Hero Banner --- */
.doc-hero {
    background: linear-gradient(rgba(0, 34, 68, 0.92), rgba(0, 34, 68, 0.92)), 
                url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 5px solid #d9232d;
}

.doc-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.doc-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e6f2ff;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: #d9232d;
    margin: 1.5rem auto;
}

.small-divider {
    height: 3px;
    width: 50px;
    background-color: #d9232d;
    margin: 1rem auto 2rem auto;
}

/* --- Document Viewer Section --- */
.doc-viewer-section {
    padding: 5rem 0 7rem;
    background-color: #f4f7f6;
}

.doc-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.doc-intro h2 {
    color: #002244;
    font-size: 2.2rem;
}

.doc-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Layout Grid --- */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* --- The Official Paper (Transcription Side) --- */
.official-paper {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-top: 15px solid #002244; /* Gives a binder look */
    position: relative;
}

/* Watermark effect */
.official-paper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/55/Emblem_of_India.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.paper-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.emblem {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.paper-header p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.paper-header .date {
    margin-top: 1rem;
    font-weight: bold;
    text-align: right;
}

.paper-body {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.paper-body p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.paper-footer {
    margin-top: 3rem;
    text-align: right;
    font-size: 0.95rem;
    color: #333;
    position: relative;
    z-index: 1;
}

/* --- PDF Viewer Side --- */
.doc-pdf-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pdf-container {
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 650px; /* Tall enough to see the page comfortably */
    border: 1px solid #ccc;
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.download-action {
    text-align: center;
}

.download-btn {
    display: inline-block;
    background-color: #d9232d;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(217, 35, 45, 0.2);
}

.download-btn:hover {
    background-color: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 34, 68, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .doc-grid {
        grid-template-columns: 1fr;
    }
    .pdf-container {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .official-paper {
        padding: 2rem 1.5rem;
    }
}