/* Overall Page Styling */
body, html {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    /* Padding ko kam kar ke height control ki hai */
    padding: 5px 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    /* Height ko control karne ke liye min-height kam kar di */
    min-height: 60px; 
}

.logo-img {
    /* Logo size ko thora sa adjust kiya takay navbar chota ho sake */
    height: 50px; 
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.nav-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.pdf-viewer-container {
    width: 100%;
    max-width: 100vw; 
    margin-top: 65px;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden; 
}

#slides-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0; 
}

.slide-box {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slide-box img {
    width: 100%; 
    height: auto;
    display: block;
    margin: 0;
    
    
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}


@media (max-width: 600px) {
    .pdf-viewer-container {
        margin-top: 70px;
    }
    .brand-name {
        font-size: 16px;
    }
}

/* Download Button Styling - Desktop */
.btn-download {
    background: #50C878; /* Emerald Green */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
    white-space: nowrap; /* Text ko ek hi line mein rakhne ke liye */
}

.btn-download:hover {
    background: #3e9c5d;
    transform: translateY(-2px);
}

/* Mobile View par Width kam karne ke liye */
@media (max-width: 600px) {
    .btn-download {
        padding: 6px 12px; /* Mobile par padding kam kar di */
        font-size: 12px;    /* Text size bhi thora chota kiya */
        border-radius: 4px;
        /* Width auto hi rahegi takay ye screen ke mutabiq phailay nahi */
        max-width: fit-content; 
    }
}