/* ===================================
   ICONPEOPLE PREMIUM NAVBAR
=================================== */

.navbar-custom{
    position:fixed;
    top:15px;
    left:50%;
    transform:translateX(-50%);
    width:95%;
    z-index:9999;

    background:#ffffff;
    border-radius:70px;

    padding:12px 30px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    transition:all .4s ease;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   Logo
========================= */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

/* =========================
   Desktop Menu
========================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    color:#111111;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.nav-menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#ff0000;
    border-radius:20px;
    transition:.4s;
}

.nav-menu li a:hover{
    color:#ff0000;
}

.nav-menu li a:hover::after{
    width:100%;
}

/* Active Menu Example */

.nav-menu li:first-child a{
    color:#ff0000;
}

.nav-menu li:first-child a::after{
    width:100%;
}

/* =========================
   Register Button
========================= */

/*.login-btn{
    background:#ff0000;
    color:#fff;
    text-decoration:none;
    padding:13px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    border:2px solid #ff0000;
    transition:.4s;
    display:inline-block;
}

.login-btn:hover{
    background:#fff;
    color:#ff0000;
    transform:translateY(-3px);
}*/
.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-icon{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ff0000;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 5px 15px rgba(255,0,0,.3);
}

.nav-icon:hover{
    background:#d90000;
    color:#fff;
    transform:translateY(-3px);
}

.nav-icon i{
    font-size:18px;
}

/* =========================
   Mobile Toggle
========================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#111;
    border-radius:20px;
    transition:.3s;
}

/* =========================
   Sidebar
========================= */

.sidebar{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100vh;
    background:#ffffff;
    z-index:10000;
    transition:.4s ease;
    overflow-y:auto;

    box-shadow:
    -5px 0 30px rgba(0,0,0,.12);
}

.sidebar.active{
    right:0;
}

.sidebar-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid #eeeeee;
}

.sidebar-header img{
    height:55px;
    width:auto;
}

.sidebar-header button{
    background:none;
    border:none;
    color:#111;
    font-size:35px;
    cursor:pointer;
}

.sidebar ul{
    list-style:none;
    padding:20px;
    margin:0;
}

.sidebar ul li{
    margin-bottom:10px;
}

.sidebar ul li a{
    display:block;
    color:#111;
    text-decoration:none;
    padding:14px 16px;
    border-radius:12px;
    transition:.3s;
    font-weight:600;
}

.sidebar ul li a:hover{
    background:#ff0000;
    color:#fff;
}

.mobile-login{
    background:#ff0000;
    color:#fff !important;
    text-align:center;
    margin-top:20px;
}

/* =========================
   Overlay
========================= */

.sidebar-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:.4s;
    z-index:9990;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   Sticky Scroll Effect
========================= */

.navbar-custom.scrolled{
    top:0;
    border-radius:0;
    width:100%;
}

/* =========================
   Responsive
========================= */

@media(max-width:1200px){

    .nav-menu{
        gap:25px;
    }

}

@media(max-width:991px){

    .navbar-custom{
        width:100%;
        top:0;
        left:0;
        transform:none;
        border-radius:0;
        padding:10px 20px;
    }

    .nav-menu,
    .nav-right{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .logo img{
        height:60px;
    }

}

@media(max-width:576px){

    .logo img{
        height:50px;
    }

    .sidebar{
        width:280px;
    }

}
/* =========================
   Sliders
========================= */
.hero-section{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    padding-top: 80px;
}

.hero-banner{
    width:100%;
    display:block;
    height:auto;
}

/* Dark Overlay */
.hero-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
    z-index:1;
}

/* Content */
.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:2;
    text-align:center;
}

/* Button */
.register-btn{
    background:#ff0000;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    display:inline-block;
    box-shadow:0 8px 25px rgba(255,0,0,0.35);
    transition:all .3s ease;
}

.register-btn:hover{
    background:#d60000;
    color:#fff;
    transform:translateY(-3px);
}

/* Desktop */
@media(min-width:992px){

    .hero-banner{
        width:100%;
        height:auto;
    }

    .register-btn{
        font-size:20px;
        padding:18px 45px;
    }
}

/* Tablet */
@media(max-width:991px){

    .hero-banner{
        width:100%;
        height:auto;
        object-fit:cover;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero-banner{
        width:100%;
        height:auto;
    }

    .hero-content{
        width:100%;
    }

    .register-btn{
        padding:12px 25px;
        font-size:15px;
    }
}
/* ===================================
   JOB SEARCH SECTION
=================================== */

.job-search-section{
    padding:100px 0;
    background:#f8f9fc;
}

.search-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.search-image::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#ff0000;
    z-index:2;
}

.search-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
}

.search-image:hover img{
    transform:scale(1.05);
}

.section-tag{
    display:inline-block;
    background:#ffe5e5;
    color:#ff0000;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.search-content h2{
    font-size:58px;
    font-weight:900;
    line-height:1.1;
    color:#111;
    margin-bottom:20px;
}

.search-content h2 span{
    color:#ff0000;
}

.search-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.job-search-form{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.job-search-form .form-control{
    height:65px;
    border:none;
    background:#f5f5f5;
    border-radius:12px;
    padding:0 20px;
    font-size:16px;
}

.job-search-form .form-control:focus{
    box-shadow:none;
    border:2px solid #ff0000;
}

.search-btn{
    width:100%;
    border:none;
    height:65px;
    background:#ff0000;
    color:#fff;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.search-btn:hover{
    background:#111;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .job-search-section{
        padding:70px 0;
    }

    .search-content{
        text-align:center;
    }

    .search-content h2{
        font-size:42px;
    }

    .search-image img{
        height:350px;
    }
}

@media(max-width:576px){

    .search-content h2{
        font-size:32px;
    }

    .search-content p{
        font-size:15px;
    }

    .job-search-form{
        padding:20px;
    }

    .job-search-form .form-control{
        height:55px;
    }

    .search-btn{
        height:55px;
        font-size:16px;
    }

}

/* ====================================
   ICONPEOPLE VALUES SECTION
==================================== */

.values-section{
    background:#f8f9fa;
    padding:100px 0;
}

.values-heading{
    font-size:60px;
    font-weight:900;
    color:#111;
    text-transform:uppercase;
    margin-bottom:15px;
}

.values-heading span{
    color:#ff0000;
}

.values-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    height:100%;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-top:4px solid transparent;
}

.value-card:hover{
    transform:translateY(-10px);
    border-top:4px solid #ff0000;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff0f0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:40px;
    color:#ff0000;
}

.value-card h4{
    font-size:24px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.value-card p{
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .values-heading{
        font-size:42px;
    }

}

@media(max-width:576px){

    .values-section{
        padding:70px 0;
    }

    .values-heading{
        font-size:30px;
    }

    .values-subtitle{
        font-size:15px;
    }

    .value-card{
        padding:25px 20px;
    }

    .icon-box{
        width:75px;
        height:75px;
    }

    .icon-box i{
        font-size:32px;
    }

}

/* ====================================
   ICONPEOPLE FOOTER
==================================== */

.footer-section{
    background:#111111;
    color:#ffffff;
    padding:80px 0 30px;
}

.footer-title{
    color:#ffffff;
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:'';
    width:60px;
    height:3px;
    background:#ff0000;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-section p{
    color:#d0d0d0;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-section p i{
    color:#ff0000;
    margin-right:10px;
}

/* Links */

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li a{
    color:#d0d0d0;
    text-decoration:none;
    transition:.3s;
}

.footer-links li a:hover{
    color:#ff0000;
    padding-left:8px;
}

/* Logo */

.footer-logo img{
    max-width:220px;
    height: 100px;
    margin-bottom:20px;
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1f1f1f;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.4s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#ff0000;
    transform:translateY(-5px);
}
/*==============================
FOOTER CERTIFICATION LOGOS
==============================*/

.footer-certifications{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:20px;

    flex-wrap:wrap;

}

.footer-certifications a{

    display:inline-block;

    transition:.3s;

}

.footer-certifications img{

    width:65px;
    height:65px;

    object-fit:contain;

    background:#fff;

    border-radius:50%;

    padding:5px;

    box-shadow:0 4px 12px rgba(0,0,0,.15);

    transition:.3s;

}

.footer-certifications img:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 8px 20px rgba(255,0,0,.35);

}

@media(max-width:767px){

.footer-certifications{

    justify-content:center;

}

}

/* Divider */

.footer-divider{
    border-color:rgba(255,255,255,.1);
    margin:50px 0 25px;
}

/* Bottom */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
}

/* Responsive */

@media(max-width:768px){

    .footer-section{
        text-align:center;
    }

    .footer-title::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        text-align:center;
        gap:10px;
        justify-content:center;
    }

    .footer-logo img{
        margin:auto auto 20px;
        display:block;
    }

}


/* ====================================
   Enquiry css
==================================== */
       
.enquiry-section{
    background: #f5f7fb;
    padding: 80px 0;
}

/* IMPORTANT FIX - wide professional card */
.enquiry-box{
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #ff0000;
}

/* Title */
.enquiry-box h2{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.sub-text{
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Inputs */
.form-control{
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-control:focus{
    border-color: #ff0000;
    box-shadow: 0 0 0 0.2rem rgba(255,0,0,0.15);
}

/* Labels */
label{
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Button */
.btn-theme{
    background: #ff0000;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.btn-theme:hover{
    background: #cc0000;
    transform: translateY(-2px);
}

/* ====================================
   Login css
==================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f6f9;
}

.login-wrapper{
    display:flex;
    min-height:100vh;
}

/* LEFT SIDE */

.login-left{
    flex:1;
    background:url('images/login-bg.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.left-content{
    position:absolute;
    z-index:2;
    bottom:80px;
    left:60px;
    color:#fff;
}

.left-content h1{
    font-size:55px;
    font-weight:700;
    margin-bottom:15px;
}

.left-content p{
    max-width:500px;
    font-size:18px;
    line-height:32px;
}

/* RIGHT SIDE */

.login-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:#f8f9fc;
}

.login-card{
    width:100%;
    max-width:500px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-top:30px;
    
}

.logo-box{
    text-align:center;
    margin-bottom:20px;
}

.logo-box img{
    width:90px;
}

.login-card h2{
    text-align:center;
    margin-bottom:30px;
    font-size:32px;
}

.input-box{
    position:relative;
    margin-bottom:20px;
}

.input-box i{
    position:absolute;
    left:18px;
    top:19px;
    color:#ff0000;
}

.input-box input{
    width:100%;
    height:58px;
    border:2px solid #eee;
    border-radius:12px;
    padding-left:50px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.input-box input:focus{
    border-color:#ff0000;
}

.form-options{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    font-size:14px;
}

.form-options a{
    color:#ff0000;
    text-decoration:none;
}

.login-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#ff0000;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#d60000;
}

.register-link{
    text-align:center;
    margin-top:25px;
}

.register-link a{
    color:#ff0000;
    text-decoration:none;
    font-weight:600;
}

/* TABLET */

@media(max-width:991px){

    .login-wrapper{
        flex-direction:column;
    }

    .login-left{
        height:300px;
    }

    .left-content{
        left:30px;
        bottom:50px;
    }

    .left-content h1{
        font-size:40px;
    }

    .left-content p{
        font-size:16px;
        line-height:28px;
    }

    .login-right{
        padding:30px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .login-left{
        display:none;
    }

    .login-right{
        width:100%;
        min-height:100vh;
        padding:20px;
    }

    .login-card{
        padding:25px;
        border-radius:20px;
    }

    .login-card h2{
        font-size:26px;
    }

    .input-box input{
        height:55px;
    }

    .login-btn{
        height:55px;
    }

    .form-options{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    .login-card{
        padding:20px;
    }

    .logo-box img{
        width:70px;
    }

    .login-card h2{
        font-size:22px;
    }

    .input-box input{
        height:50px;
        font-size:14px;
    }

    .login-btn{
        height:50px;
        font-size:15px;
    }

    .register-link{
        font-size:14px;
    }
}

/* My Profile css */

.profile-header{
    background:linear-gradient(135deg,#ff0000,#c70000);
    color:#fff;
    padding:30px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    /*margin-top:40px;*/
}

.profile-header h2{
    font-weight:700;
    margin-top:40px;
}

/* Cards */

.profile-card{
    background:#fff;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.profile-info{
    text-align:center;
    padding:40px;
}

.profile-avatar{
    width:110px;
    height:110px;
    background:#ff0000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:45px;
    box-shadow:0 10px 25px rgba(255,0,0,.25);
}

.reference-box{
    background:#fff5f5;
    border:2px dashed #ff0000;
    padding:15px;
    border-radius:12px;
    margin-top:20px;
}

.reference-number{
    color:#ff0000;
    font-size:22px;
    font-weight:700;
}

.action-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.3s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.action-card:hover{
    transform:translateY(-5px);
}

.action-card i{
    font-size:40px;
    color:#ff0000;
    margin-bottom:15px;
}

/* Existing Logout Button */

.logout-btn{
    background:#ff0000;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:12px 25px;
    text-decoration:none;
    position:relative;
    z-index:99999;
}

.logout-btn:hover{
    color:#fff;
    background:#d60000;
}

/* Professional Profile Logout Button */

.profile-logout-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    margin-top:25px;
    padding:14px;
    background:#ff0000;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    font-size:16px;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(255,0,0,.25);
}

.profile-logout-btn:hover{
    background:#d60000;
    color:#fff;
    transform:translateY(-2px);
}

.profile-logout-btn i{
    font-size:18px;
}

/* Mobile Responsive */

@media(max-width:768px){

    .profile-header{
        margin-top:80px;
        text-align:center;
    }

    .profile-header h2{
        margin-top:0;
        font-size:24px;
    }

    .profile-info{
        padding:25px;
    }

    .profile-avatar{
        width:90px;
        height:90px;
        font-size:35px;
    }

    .reference-number{
        font-size:18px;
    }

    .action-card{
        padding:20px;
    }

    .action-card i{
        font-size:30px;
    }

    .profile-logout-btn{
        padding:12px;
        font-size:15px;
    }
}

/* Documenst Uploads css*/
.main-wrapper{
    padding:50px 15px;
}

.form-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.card-header-custom{
    background:#111;
    color:#fff;
    padding:25px;
}

.card-body-custom{
    padding:40px;
}

.progress{
    height:12px;
    border-radius:30px;
}

.progress-bar{
    width:55%;
    background:#ff0000;
}

.section-title{
    color:#ff0000;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
}

.upload-card{
    background:#fafafa;
    border:1px solid #eee;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
}

.upload-card label{
    font-weight:600;
    margin-bottom:10px;
}

.form-control{
    border-radius:10px;
}

.btn-prev{
    background:#6c757d;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:50px;
}

.btn-next{
    background:#ff0000;
    color:#fff;
    border:none;
    padding:12px 35px;
    border-radius:50px;
}

.btn-next:hover{
    background:#111;
}

.required{
    color:red;
}

   /* My Documenst css*/
   .document-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.document-box:hover{
    transform:translateY(-4px);
    border-color:#ff0000;
}

.document-box > i{
    font-size:42px;
    color:#ff0000;
    margin-bottom:12px;
}

/* Image Preview */

.file-preview img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #eee;
}

/* PDF Preview */

.pdf-preview{
    background:#fff5f5;
    border:1px solid #ffd0d0;
    border-radius:15px;
    padding:30px 15px;
    margin-bottom:15px;
}

.pdf-preview i{
    font-size:70px;
    color:#ff0000;
    display:block;
    margin-bottom:10px;
}

.pdf-preview span{
    font-weight:600;
    color:#333;
}

/* Action Buttons */

.action-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:15px;
}

.icon-btn{
    width:45px;
    height:45px;
    background:#ff0000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.icon-btn:hover{
    background:#d90000;
    color:#fff;
    transform:translateY(-2px);
}

.icon-btn i{
    font-size:16px;
}

/* Upload Button */

.upload-btn{
    background:#ff0000;
    border:none;
    color:#fff;
    padding:12px 40px;
    border-radius:12px;
    font-weight:600;
}

.upload-btn:hover{
    background:#d90000;
}
.uploaded-badge{
    display:inline-block;
    background:#e8fff0;
    color:#198754;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-top:10px;
}

.file-name{
    margin-top:10px;
    font-size:14px;
    font-weight:600;
    color:#555;
    word-break:break-all;
}

.not-uploaded{
    background:#fff3cd;
    color:#856404;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:768px){

    .document-box{
        padding:18px;
    }

    .file-preview img{
        height:180px;
    }

    .pdf-preview i{
        font-size:55px;
    }

    .action-buttons{
        gap:10px;
    }

    .icon-btn{
        width:42px;
        height:42px;
    }
}

/* Bottom Sticky Navigation */
.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#ff0000;
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:10px 5px;
    z-index:99999;
    box-shadow:0 -5px 20px rgba(0,0,0,0.15);
    border-top-left-radius:18px;
    border-top-right-radius:18px;
}

.bottom-nav .nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    transition:.3s;
    min-width:70px;
}

.bottom-nav .nav-item i{
    font-size:22px;
    margin-bottom:4px;
}

.bottom-nav .nav-item:hover,
.bottom-nav .nav-item.active{
    color:#fff;
    transform:translateY(-3px);
}

.bottom-nav .nav-item.active i{
    background:#fff;
    color:#ff0000;
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(255,255,255,.4);
}

/* Mobile Content Space */
body{
    padding-bottom:90px;
}

/* Tablet & Desktop Hide */
@media (min-width:768px){

    .bottom-nav{
        display:none !important;
    }

    body{
        padding-bottom:0 !important;
    }

}
/* nprogress css */
#nprogress .bar {
    background: #ff0000 !important;
    height: 4px !important;
}

#nprogress .peg {
    box-shadow: 0 0 10px #ff0000, 0 0 5px #ff0000 !important;
}

#nprogress .spinner {
    display: none !important;
}