:root{
    --primary-color: #f21000;
    --secondary-color: #00364f;
}

*{
    font-family: 'Poppins', sans-serif;
}



.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 15px;
}
.table-status{
    font-size: 13px;
    width: 78px;
    height: 23px;
    border-radius: 7px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.activeColor{
    background: rgb(222, 249, 185);
    color: rgb(0, 123, 35);
}
.inActiveColor{
    background: rgb(255, 230, 230);
    color: rgb(242, 19, 0);
}
.pandingColor{
    background: rgb(249, 226, 198);
    color: rgb(245, 118, 0);
}
.convertedColor{
    background: rgb(204, 215, 255);
    color: rgb(9, 23, 71);
}
.rejectedColor {
    background: rgb(0 0 0);
    color: rgb(255 255 255);
}



/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover .dropdown-menu {
    display: block;
}


/* ============= DASHBOARD ============== */
.dash-title{
    font-size: 28px;
    text-shadow: -1px 3px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.top-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 15px 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.top-card img{
    height: 50px;
}
.top-card .icon{
    padding: 6px 10px;
    background: #00364f;
    border-radius: 7px;
    display: inline-block;
    height: 100%;
    width: 65px;
}
.top-card .icon i{
    color: #fff;
    font-size: 30px;
}
.top-card p{
    color: #00364f;
    font-size: 14px;
    font-weight: 600;
}
.top-card h4{
    color: #00364f;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}
.top-card .status {
    color: #00364f;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 7px;
}


/* =============== Login =============== */
.main-container{
    background: linear-gradient(to right, rgb(236 223 223 / 50%), rgb(145 145 159 / 70%)), url(../img/bg.png);
    /* background: url(../img/bg-4.jpg); */
    /* background: linear-gradient(to right, rgb(236 223 223 / 50%), rgb(145 145 159 / 70%)), url(../img/bg-5.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
}
.login-main-heading{
    font-size: 3.3vw;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.1px;
    text-shadow: -1px 3px 3px rgba(0, 0, 0, 0.3);
}
.heading-boder{
    height: 2px;
    width: 22%;
    border-radius: 3px;
    background-color: var(--secondary-color);
    display: inline-block;
}
.login-logo{
    width: 180px;
}
.login{
    background-color: #ffffffc4;
    border-radius: 12px;
    padding: 64px 48px;
    box-shadow: 0px 0px 5px 0px rgba(128, 128, 128, 0.651);
}
.login .heading{
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
}
.login h3{
    color: var(--secondary-color);
    font-weight: 500;
}
.login label{
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;   
    margin-bottom: 6px; 
}
.login .input-box{
    font-size: 13px;
    padding: 5px 10px;
    background: #66849e12;
    color: var(--secondary-color);
    border: 1px solid #66849e7a;
}
.error-message{
    color: #f21000;
    font-weight: 500;
    font-size: 11px;
}
.login .login-link{
    text-decoration: none;
    color:  var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    transition: all 200ms ease-in-out
}
.login .login-link:hover{
    color:  var(--primary-color);
}
.login .login-btn{
    border-radius: 0px;
    color: #fff ;
    padding: 2px 16px;
    background: var(--secondary-color);
    font-weight: 400;
}


/* =============== Table =============== */
.table-header {
    padding: 13px 14px;
    background-color: rgb(246 245 245 / 68%);
    border-radius: 0px;
    border: 1px solid #00364fad;  /*  #cdcccc70 */
}
.table-header h2 {
    font-size: 26px;
    text-shadow: -1px 3px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-weight: 600;
}
.table-box{
    padding: 0px 0px 0px 0px;
    background-color: rgb(246 245 245 / 68%);
    border-radius: 0px;
    border: 1px solid #00364fad;
}
tbody, td, tfoot, th, thead, tr {
    border-bottom: 1px solid #cdcccc70;
}

.table th{
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
}
.table td{
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary-color);
}

.tr-bg-red{
    background-color: rgb(255, 230, 230);
}
.tr-bg-yellow{
    background-color: rgb(249, 226, 198);
}
.user-profile-btn{
    font-weight: 500;
    text-decoration: none;
    color: var(--primary-color);
}
.user-profile-btn:hover{
    text-decoration: none;
    color: var(--secondary-color);
}

/* ================ Form ============== */
.form-box{
    border: 2px solid rgb(221 221 221 / 59%);
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px 0px rgba(128, 128, 128, 0.651); */
}
.form-box .card-header{
    padding: 12px 20px;
    border-bottom: 2px solid rgb(221 221 221 / 59%);
}
.form-box .card-header h3{
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    /* text-shadow: -1px 3px 3px rgba(0, 0, 0, 0.3); */
}
.form-box label {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 6px;
}
.form-box .input-box {
    font-size: 13px;
    padding: 5px 10px;
    background: #66849e0d;
    color: var(--secondary-color);
    border: 1px solid #66849e7a;
    border-radius: 0;
}
.button-one{
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 16px;
    font-size: 13px;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    background: #dbdfe19c;
    transition: all 400ms ease-in-out;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.button-one:hover{
    color: #fff;
    background: var(--primary-color);
}
.button-two{
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 16px;
    font-size: 13px;
    border: none;
    color: var(--secondary-color);
    font-weight: 500;
    background: #dbdfe19c;;
    transition: all 400ms ease-in-out;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.button-two:hover{
    color: #fff;
    background: var(--secondary-color);
}

.filter-box {
    font-size: 13px;
    padding: 5px 10px;
    background: #66849e0d;
    color: var(--secondary-color);
    border: 1px solid #66849e7a;
    border-radius: 0;
}
.search-button{
    border: 1px solid #66849e7a;
    text-decoration: none;
    border-radius: 0px;
    padding: 5px 16px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    background: #dbdfe19c;
    transition: all 400ms ease-in-out;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

/* ======= PAN CARD */
.pan-card {
    width: 400px;
    height: 250px;
    /* background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Pan_card.jpg/640px-Pan_card.jpg') no-repeat center center; */
    background: linear-gradient(to right, #64a0c8, #9dc0de, #64a0c8);
    background-size: cover;
    border-radius: 10px;
    padding: 20px;
    color: black;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pan-header {
    font-size: 14px;
    font-weight: bold;
}
.pan-info {
    font-size: 12px;
    font-weight: bold;
}
.pan-number {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}
.photo-placeholder {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    position: absolute;
    right: 20px;
    bottom: 50px;
}

/* ====== AADHAR CARD */
.aadhaar-card {
    width: 366px;
    height: 234px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.aadhaar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.aadhaar-header img {
    height: 40px;
}
.aadhaar-body {
    margin-top: 10px;
    font-size: 11px;
}
.aadhaar-photo {
    width: 70px;
    height: 80px;
    background: #ccc;
    border-radius: 5px;
    text-align: center;
    line-height: 80px;
    font-weight: bold;
    font-size: 12px;
}
.aadhaar-number {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 5px;
    text-align: center;
    color: #00364f;
    padding: 0px;
    border-radius: 5px;
}
.qr-code {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 60px;
}

/* ======== Voter CARD */
.voter-card {
    width: 390px;
    height: 240px;
    background: linear-gradient(to right, #ff5733, #ffbd69);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    font-family: Arial, sans-serif;
}
.voter-header {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}
.voter-body {
    margin-top: 10px;
    font-size: 13px;
}
.voter-photo {
    width: 60px;
    height: 70px;
    background: #ccc;
    border-radius: 5px;
    text-align: center;
    line-height: 70px;
    font-weight: bold;
}
.voter-number {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 5px;
}
.qr-code {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 50px;
}


/* Driving licence */
.license-card {
    width: 425px;
    height: 242px;
    background: linear-gradient(to bottom, #dff3ff, #b0d4e3);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-family: Arial, sans-serif;
    position: relative;
}
.license-header {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #00364f;
    margin-bottom: 10px;
}
.license-body {
    font-size: 12px;
}
.license-photo {
    width: 70px;
    height: 80px;
    background: #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.license-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.license-number {
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
    color: #00364f;
}
.license-footer {
    font-size: 11px;
    text-align: center;
    margin-top: 5px;
}


/*  Bank Account */
.bank-card {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #00364f;
    font-family: Arial, sans-serif;
}

.bank-header {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bank-body {
    font-size: 14px;
    padding: 15px;
    line-height: 1.6;
}

.bank-footer {
    font-size: 14px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Vehicle rc full */
.rc-card {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 350px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: Arial, sans-serif;
}

.rc-header {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rc-body {
    font-size: 13px;
    padding: 15px;
    line-height: 1.6;
}

.rc-footer {
    font-size: 14px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* ==== vehiclercv10 */


/* ITR complince */
.itr-card {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 350px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: Arial, sans-serif;
}

.itr-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.itr-body {
    padding: 15px;
    line-height: 1.6;
}

.itr-footer {
    font-size: 14px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


/* ==== GST */
.gst-card {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 380px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: Arial, sans-serif;
}

.gst-header {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.gst-body {
    font-size: 14px;
    padding: 15px;
    line-height: 1.6;
}

.gst-footer {
    font-size: 13px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* ===== Consumer Pre Fillpan */
.consumer-card {
    background: linear-gradient(to bottom, #ffffff, #f1f1f1);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: Arial, sans-serif;
}

.consumer-header {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.consumer-body {
    font-size: 13px;
    padding: 15px;
    line-height: 1.6;
}

.consumer-footer {
    font-size: 13px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


/* Cibil Exprian */
.cibil-card {
    background: linear-gradient(to bottom, #ffffff, #e3f2fd);
    border: 2px solid #00364f;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
    font-family: Arial, sans-serif;
}

.cibil-header {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #00364f;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cibil-body {
    font-size: 13px;
    padding: 15px;
    line-height: 1.6;
}

.credit-score {
    font-size: 20px;
    font-weight: bold;
    color: #ff9800;
}

.cibil-footer {
    font-size: 13px;
    text-align: center;
    padding: 8px;
    background: #00364f;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn-success {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    background: #4caf50;
    color: #fff;
    border: none;
}



/* ============ Responsive ================= */
@media screen and (max-width:800px) {
    .login-main-heading {
        font-size: 23px;
    }
    
    .login-logo{
        width: 140px;
    }
}
