/* ======================================================
   RESET
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
}

.container{
    width:100%;
    overflow-x:hidden;
}

/* ======================================================
   TOP INFO BAR
====================================================== */

.top-info{
    width:100%;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 25px;
    font-size:13px;
}

.left-info,
.right-info{
    display:flex;
    align-items:center;
    gap:12px;
}


/* ======================================================
   HEADER
====================================================== */

header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ddd;
}

.top-header{
    width:100%;
    height:95px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;
}

/* ======================================================
   SOCIAL ICONS
====================================================== */

.social-icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-icons i{
    font-size:20px;
    color:#222;
    cursor:pointer;
    transition:.3s;
}

.social-icons i:hover{
    color:#d60000;
    transform:scale(1.1);
}

/* ======================================================
   LOGO
====================================================== */


.logo img{ 
    height: 330px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* ===== APP STORE IMAGE ===== */

.store-icons img{
    height:100px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* ======================================================
   NAVBAR
====================================================== */

.navbar{
    width:100%;
    background:#222;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 30px;
    position:relative;
}

.menu-icon{
    display:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.search-icon{
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

.search-icon:hover{
    color:#ffd700;
}

.navbar ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:28px;
}

.navbar ul li{
    position:relative;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
    padding:8px 0;
}

.navbar ul li a:hover{
    color:#ffd700;
}

/* Underline Effect */

.navbar ul li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#ffd700;
    transition:.3s;
}

.navbar ul li:hover::after{
    width:100%;
}
/* ======================================================
   DATE SECTION
====================================================== */

.date-section{
    width:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    border-bottom:1px solid #ddd;
}

.date-section label{
    font-size:16px;
    font-weight:600;
    color:#333;
}

.date-section input{
    width:180px;
    height:42px;
    padding:0 12px;
    border:1px solid #ccc;
    border-radius:5px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.date-section input:focus{
    border-color:#d60000;
    box-shadow:0 0 5px rgba(214,0,0,.2);
}

.date-section button{
    height:42px;
    padding:0 22px;
    border:none;
    border-radius:5px;
    background:#d60000;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.date-section button:hover{
    background:#a60000;
}

/* ======================================================
   PDF SECTION
====================================================== */

.pdf-section{
    width:100%;
    background:#fff;
    padding:10px;
}

#pdfViewer{
    width:100%;
    height:900px;
    border:none;
    display:none;
    background:#fff;
}

/* ======================================================
   ERROR MESSAGE
====================================================== */

#errorMsg{
    display:none;
    max-width:600px;
    margin:20px auto;
    padding:10px;
    background:#fff3f3;
    border:1px solid #ffb7b7;
    border-radius:8px;
    color:#c40000;
    text-align:center;
    font-size:14px;
    font-weight:600;
    line-height:2.8;
}
/* ======================================================
   FOOTER
====================================================== */

footer{
    width:100%;
    background:#1b1b1b;
    color:#fff;
    margin-top:20px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:45px 25px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h3{
    color:#ffd700;
    font-size:21px;
    margin-bottom:20px;
}

.footer-box p{
    color:#ddd;
    font-size:15px;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#ffd700;
    padding-left:6px;
}

/* ======================================================
   FOOTER SOCIAL ICONS
====================================================== */

.footer-box .social-icons{
    display:flex;
    gap:15px;
    margin-top:18px;
}

.footer-box .social-icons a{
    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#333;
    border-radius:50%;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-box .social-icons a:hover{
    background:#d60000;
    transform:translateY(-3px);
}

/* ======================================================
   FOOTER BOTTOM
====================================================== */

.footer-bottom{
    background:#111;
    color:#bbb;
    text-align:center;
    padding:18px;
    font-size:14px;
    line-height:1.8;
    border-top:1px solid #333;
}

.footer-bottom strong{
    color:#ffd700;
}
/* ======================================================
   MOBILE RESPONSIVE (0px - 768px)
====================================================== */

@media screen and (max-width:768px){

    /* Top Info */

    .top-info{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;
        text-align:center;
    }

    .left-info,
    .right-info{
        justify-content:center;
        white-space:nowrap;
    }
    
    /* Header */

    .top-header{
        height:70px;
        padding:0 10px;
    }

    .social-icons{
        gap:8px;
    }

    .social-icons i{
        font-size:16px;
    }

    .logo img{
        height:120px;
    }

    .store-icons img{
        height:70px;
    }

    /* Navbar */

    .navbar{
        padding:12px 15px;
        flex-wrap:wrap;
    }

    .menu-icon{
        display:block;
        order:1;
    }

    .search-icon{
        order:3;
    }

    .navbar ul{
        display:none;
        flex-direction:column;
        width:100%;
        background:#222;
        margin-top:10px;
    }

    .navbar ul.show{
        display:flex;
    }

    .navbar ul li{
        width:100%;
        border-top:1px solid #444;
    }

    .navbar ul li a{
        display:block;
        text-align:center;
        padding:14px;
    }
    .navbar ul.show{
        display:flex !important;
    }

    /* Date Section */

    .date-section{
        flex-direction:row;
        justify-content:center;
        align-items:center;
        flex-wrap:nowrap;
        gap:8px;
        padding:12px 8px;
    }

    .date-section label{
        font-size:14px;
        white-space:nowrap;
    }

    .date-section input{
        width:130px;
        height:38px;
        font-size:14px;
    }

    .date-section button{
        width:100px;
        height:38px;
        padding:0;
        font-size:13px;
    }

    /* PDF */

    .pdf-section{
        padding:5px;
    }

    #pdfViewer{
        width:100%;
        height:500px;
    }

    #errorMsg{
        margin:5px;
        font-size:10px;
    }

    /* Footer */

    .footer-container{
        flex-direction:column;
        text-align:center;
        gap:25px;
        padding:30px 20px;
    }

    .footer-box{
        width:100%;
    }

    .footer-box .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        font-size:13px;
        padding:15px;
    }

}