/*==================================
RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}
.main-nav ul li a.active{

    color:#fff;
    background:#0b2e83;
    padding:10px 18px;
    border-radius:5px;

}

/*==================================
HEADER
==================================*/

.hero{

    width:100%;
    background:#ffffff;

    text-align:center;

    padding:35px 20px 25px;

    border-bottom:1px solid #e5e5e5;

}

.logo{

    width:95px;
    height:auto;
    margin-bottom:2px;

}

.hero h1{

    color:#0b2e83;
    font-size:30px;
    font-weight:700;
    margin:0;            /* पूरा gap हट जाएगा */
    line-height:1.1;

}

.hero h2{

    color:#0b2e83;
    font-size:38px;
    font-weight:700;
    margin-top:4px;
    margin-bottom:8px;
    line-height:1.1;

}

.hero p{

    font-size:16px;

    color:#000000;
    font-weight: 700;

}


/*==================================
SEARCH SECTION
==================================*/

.search-section{

    background:#0b2e83;

    padding:35px 20px;

}

.search-box{

    max-width:900px;

    margin:auto;

    display:flex;

    gap:15px;

}

.input-box{

    flex:1;

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:8px;

    overflow:hidden;

    border:2px solid transparent;

}

.input-box:focus-within{

    border-color:#2f73ff;

}

.input-box i{

    font-size:18px;

    color:#777;

    padding:0 18px;

}

.input-box input{

    width:100%;

    height:55px;

    border:none;

    outline:none;

    font-size:16px;

    color:#333;

}

.input-box input::placeholder{

    color:#999;

}

.search-box button{

    width:180px;

    border:none;

    border-radius:8px;

    background:#ffffff;

    color:#0b2e83;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.search-box button:hover{

    background:#f0f4ff;

    transform:translateY(-2px);

}

.search-box button i{

    margin-right:8px;

}

.help-text{

    margin-top:18px;

    text-align:center;

    color:#ffffff;

    font-size:14px;

}


/*==================================
RESULT SECTION
==================================*/

#result{

    max-width:1100px;

    margin:35px auto;

    padding:0 20px;

}


/*==================================
COMMON CARD
==================================*/

.card{

    background:#fff;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    overflow:hidden;

}
/*==================================
SUCCESS CARD
==================================*/

.success{

    background:#ffffff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    border:1px solid #d8e8d8;

}

.success-title{

    background:#edf9ef;

    color:#14843d;

    font-size:22px;

    font-weight:700;

    padding:18px 25px;

    border-bottom:1px solid #d6ead8;

}

.success-title i{

    margin-right:10px;

}


/*==================================
TABLE
==================================*/

table{

    width:100%;

    border-collapse:collapse;

}

table tr{

    border-bottom:1px solid #ececec;

}

table tr:last-child{

    border-bottom:none;

}

table td{

    padding:16px 22px;

    font-size:15px;

}

table td:first-child{

    width:28%;

    background:#fafafa;

    font-weight:600;

    color:#333;

}

.valid{

    color:#18a53b;

    font-weight:bold;

}


/*==================================
ERROR CARD
==================================*/

.error{

    background:#fff;

    border-radius:10px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    text-align:center;

    padding:40px;

}

.error h2{

    color:#d50000;

    font-size:24px;

}

.error p{

    margin-top:10px;

    color:#666;

    font-size:15px;

}


/*==================================
INFO BOX
==================================*/

.info-box{

    max-width:1100px;

    margin:25px auto;

    padding:0 20px 50px;

}

.info{

    display:flex;

    align-items:center;

    gap:20px;

    background:#eef5ff;

    border:1px solid #c8dcff;

    border-radius:10px;

    padding:22px;

}

.info i{

    font-size:42px;

    color:#0b63e5;

}

.info h3{

    color:#0b2e83;

    font-size:18px;

    margin-bottom:5px;

}

.info p{

    color:#555;

    font-size:15px;

}


/*==================================
FOOTER
==================================*/

footer{

    background:#0b2e83;

    color:#ffffff;

    text-align:center;

    padding:18px;

    font-size:14px;

}


/*==================================
SCROLLBAR
==================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#0b2e83;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}


/*==================================
MOBILE RESPONSIVE
==================================*/

@media(max-width:768px){

.hero{

padding:25px 15px;

}

.logo{

width:75px;

}

.hero h1{

font-size:24px;

}

.hero h2{

font-size:28px;

}

.hero p{

font-size:14px;

}

.search-box{

flex-direction:column;

}

.search-box button{

width:100%;

height:52px;

}

.input-box input{

font-size:15px;

}

.help-text{

font-size:13px;

}

.success-title{

font-size:18px;

padding:15px;

}

table td{

display:block;

width:100%;

padding:12px 15px;

font-size:14px;

}

table td:first-child{

width:100%;

background:#f5f5f5;

}

.info{

flex-direction:column;

text-align:center;

}

.info h3{

font-size:16px;

}

.info p{

font-size:14px;

}

}
/*=========================
LOADING
=========================*/

.loading{

display:none;

text-align:center;

padding:40px;

}

.spinner{

width:60px;

height:60px;

border:6px solid #d9d9d9;

border-top:6px solid #0b2e83;

border-radius:50%;

margin:auto;

animation:spin .8s linear infinite;

}

.loading p{

margin-top:20px;

font-size:18px;

font-weight:600;

color:#0b2e83;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}



/*=========================
ANIMATION
=========================*/

.success,

.error{

animation:fade .5s;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}
.logo-container h3,
.main-nav,
.main-nav * {
    font-family: sans-serif !important;
    line-height: normal !important;
}