body{
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

.header1{
    background: #fad7ac;
    text-align: center;
    font-size: 18px;
    height: auto;
    color: rgb(83, 51, 22);
    max-width: 100%;
}
.logo{
    max-width: 100%;
    height: auto;
}
.brand1{
    color: #429246;
    font-size: 40px;
    margin-left: 85px;
    margin-top: -90px;
    display: flex;
    
}
@media (max-width: 600px){
    brand1{
        font-size: 14px;
    }
}
.brand2{
    color: #1a3055;
    font-size: 60px;
    margin-left: 85px;
    margin-top: -20px;
    display: flex;
}

@media (max-width: 600px){
    brand2{
        font-size: 14px;
    }
}
/* list */
.nav{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    
    justify-content: right;
    
}

.nav li{
    margin-top: -80px;
    padding: 15px 20px;
    cursor: pointer;
    color: rgb(83, 51, 22);
    align-content: center;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.nav li:hover{
    background-color: #fad7ac;
    border-radius: 5px;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px){
    .nav{
        text-align: center;
        justify-content: left;
        
    }

    .nav li{
        border-bottom: 1px solid #ddd;
        font-size: 10px;
        justify-content:center;
        margin-top: 0px;  
        font-size: 11px;
    }
}


/* Header */
.top-bar{
    background:#f1c97d;
    padding:8px;
    font-weight:bold;
}

/* Brand */
.brand-area{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:15px 0;
}
.site-logo{
    height:70px;
}
.brand-area span{
    color:#7a3e12;
}

/* Menu */
.menu{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:25px;
    background:#fad7ac;
    padding:10px;
}
.menu a{
    text-decoration:none;
    color:#533316;
    font-weight:bold;
}
.menu a.active{
    border-bottom:2px solid #533316;
}

/* Title */
.page-heading{
    text-align:center;
    margin:20px 0;
    color: rgb(83, 51, 22);
}

/* Description */
.info-box{
    max-width:1100px;
    margin:0 auto 25px;
    background:#fdf9db;
    padding:15px;
    border-radius:8px;
    text-align:center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(83, 51, 22);
}

/* Category boxes */
.category-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}
.category-card{
    background:#fad7ac;
    color:rgb(83, 51, 22);
    padding:40px 20px;
    text-align:center;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    transition: 0.3s;
}
.category-card:hover{
    background: #e8b861;
    transform: translatey(-3px);
}

/* PDF list */
.pdf-button-list{
    max-width:1100px;
    margin:30px auto;
}
.pdf-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px;
    background:#ffffff;
    border:1px solid #ddd;
    border-radius:6px;
    margin-bottom:10px;
    width:70%;          /* 👈 yahin se width kam hogi */
    margin-left:0;
    margin-right:auto; /* 👈 right side khali rahe */
}
.pdf-row button{
    background:#533316;
    color:#fff;
    border:none;
    padding:6px 15px;
    border-radius:4px;
    cursor:pointer;
}

/* Viewer */
.pdf-display-area{
    display:none;
    max-width:1200px;
    margin:30px auto;
}
#pdfIframe{
    width:100%;
    height:90vh;
    border:none;
}
/* ===== CHILD PDF WIDTH CONTROL ===== */
.pdf-grid{
    width:70%;          /* 👈 yahin se width kam hogi */
    margin-left:0;
    margin-right:auto; /* 👈 right side khali rahe */
}


/* footer*/
.footer{
    background-color: #fad7ac;
    color: rgb(83, 51, 22);
    margin-top: 40px;
}

.footer-container{
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    gap: 30px;
}

/* Footer boxes */
.footer-box{
    flex: 1;
}

.footer-box h3,
.footer-box h4{
    margin-bottom: 15px;
}

.footer-box p{
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-box ul{
    list-style: none;
    padding: 0;
}

.footer-box ul li{
    margin-bottom: 8px;
}

.footer-box ul li a{
    color: rgb(83, 51, 22);
    text-decoration: none;
}

.footer-box ul li a:hover{
    text-decoration: underline;
}

/* Bottom bar */
.footer-bottom{
    background-color: #f1c97d;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }
}

