        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family:'Inter',sans-serif;
            background:#f4f7fc;
            overflow-x:hidden;
        }

        html{
            scroll-behavior:smooth;
        }
        a{
            text-decoration:none;
        }

        /* NAVBAR */
        .logo{
            width: 183px;
            height: auto;
        }
        .navbar{
            background:white;
            padding:0 0;
            box-shadow:0 2px 20px rgba(0,0,0,0.04);
        }

        .navbar-brand{
            font-size:32px;
            font-weight:800;
            color:#0f172a !important;
            display:flex;
            align-items:center;
            gap:10px;
        }

        .navbar-brand i{
            color:#2563eb;
            font-size:34px;
        }

        .nav-link{
            color:#334155 !important;
            font-weight:600;
            margin-left:20px;
        }

        .login-btn{
            background:linear-gradient(135deg,#2563eb,#1d4ed8);
            color:white;
            padding:12px 28px;
            border-radius:14px;
            font-weight:600;
            transition:0.3s;
            margin-left:20px;
            display:inline-flex;
            align-items:center;
            gap:10px;
            box-shadow:0 10px 25px rgba(37,99,235,0.25);
        }

        .login-btn:hover{
            transform:translateY(-2px);
            color:white;
        }
        
        .logout-btn{
    background:linear-gradient(
        135deg,
        #ef4444,
        #dc2626
    ) !important;

    color:#fff !important;
}

.logout-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(220,38,38,.25);
}

        /* HERO */
/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    position:relative;
    background:#f4f7fc;
    overflow:hidden;
    padding:80px 0;
    min-height:100vh;
}

/* =========================================
   BACKGROUND SHAPE
========================================= */

.hero-bg-shape{
    position:absolute;
    top:-200px;
    right:-200px;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#2563eb20,#2563eb05,transparent);
    border-radius:50%;
    z-index:0;
}

/* =========================================
   BADGE
========================================= */

.mini-badge{
    display:inline-block;
    padding:14px 28px;
    background:#dbeafe;
    color:#2563eb;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:30px;
}

/* =========================================
   TITLE
========================================= */

.hero-title{
    font-size:44px !important;
    line-height:1;
    font-weight:900;
    color:#0f172a;
    margin-bottom:35px;
    max-width:700px;
    letter-spacing:-3px;
}

/* =========================================
   DESCRIPTION
========================================= */

.hero-desc{
    font-size:24px;
    line-height:1.8;
    color:#64748b;
    max-width:700px;
    margin-bottom:40px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-btn-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-primary-btn{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    padding:18px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.3s;
}

.hero-primary-btn:hover{
    transform:translateY(-4px);
    color:white;
    box-shadow:0 15px 30px rgba(37,99,235,0.2);
}

.hero-secondary-btn{
    background:white;
    color:#0f172a;
    padding:18px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    border:1px solid #e2e8f0;
    transition:0.3s;
}

.hero-secondary-btn:hover{
    background:#f8fafc;
    color:#2563eb;
}

/* =========================================
   STATS
========================================= */

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:60px;
    flex-wrap:wrap;
}

.hero-stat-item h3{
    font-size:42px;
    font-weight:900;
    color:#2563eb;
    margin-bottom:6px;
}

.hero-stat-item p{
    color:#64748b;
    font-size:16px;
    margin:0;
}

/* =========================================
   RIGHT DASHBOARD CARD
========================================= */

.hero-dashboard-card{
    background:white;
    border-radius:36px;
    padding:35px;
    border:1px solid #e2e8f0;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    position:relative;
    z-index:2;
}


/* =========================================
   PREMIUM CTA
========================================= */

.premium-cta-section{
    padding:100px 0;
    background:#f4f7fc;
}

/* =========================================
   CARD
========================================= */

.premium-cta-card{
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#081225,#111c36);

    border-radius:40px;
    padding:70px;

    box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

/* =========================================
   OVERLAY
========================================= */

.cta-overlay{
    position:absolute;
    top:-150px;
    right:-150px;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(37,99,235,0.25),
    transparent);

    border-radius:50%;
}

/* =========================================
   BADGE
========================================= */

.cta-badge{
    display:inline-block;

    background:rgba(255,255,255,0.08);

    color:#60a5fa;

    padding:12px 24px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    margin-bottom:28px;

    backdrop-filter:blur(10px);
}

/* =========================================
   TITLE
========================================= */

.premium-cta-title{
    font-size:58px;
    line-height:1.1;
    font-weight:900;
    color:white;

    margin-bottom:28px;
}

/* =========================================
   DESC
========================================= */

.premium-cta-desc{
    font-size:20px;
    line-height:1.9;
    color:#cbd5e1;

    margin-bottom:35px;

    max-width:700px;
}

/* =========================================
   FEATURES
========================================= */

.cta-features{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.cta-feature-item{
    display:flex;
    align-items:center;
    gap:14px;

    color:white;
    font-weight:600;
    font-size:17px;
}

.cta-feature-item i{
    color:#60a5fa;
    font-size:20px;
}

/* =========================================
   RIGHT CARD
========================================= */

.cta-action-card{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border-radius:32px;

    padding:40px;

    text-align:center;

    position:relative;
    z-index:2;
}

/* =========================================
   ICON
========================================= */

.cta-icon{
    width:100px;
    height:100px;

    margin:auto;

    border-radius:28px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:42px;

    margin-bottom:28px;
}

/* =========================================
   RIGHT TITLE
========================================= */

.cta-action-card h3{
    font-size:32px;
    font-weight:800;
    color:white;

    margin-bottom:18px;
}

.cta-action-card p{
    color:#cbd5e1;
    line-height:1.8;

    margin-bottom:30px;
}

/* =========================================
   BUTTON
========================================= */

.premium-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:white;
    text-decoration:none;

    padding:18px 34px;

    border-radius:18px;

    font-weight:700;

    transition:0.3s;
}

.premium-cta-btn:hover{
    transform:translateY(-4px);

    color:white;

    box-shadow:0 18px 35px rgba(37,99,235,0.3);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .premium-cta-card{
        padding:40px;
    }

    .premium-cta-title{
        font-size:42px;
    }

    .cta-action-card{
        margin-top:40px;
    }

}

@media(max-width:576px){

    .premium-cta-title{
        font-size:32px;
    }

    .premium-cta-desc{
        font-size:17px;
    }

}


/* =========================================
   TOP USER
========================================= */

.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.dashboard-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.dashboard-user img{
    width:70px;
    height:70px;
    border-radius:20px;
    object-fit:cover;
}

.dashboard-user h5{
    margin:0;
    font-size:22px;
    font-weight:800;
    color:#0f172a;
}

.dashboard-user span{
    color:#64748b;
    font-size:15px;
}

.online-badge{
    background:#dcfce7;
    color:#16a34a;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

/* =========================================
   MINI GRID
========================================= */

.dashboard-mini-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.mini-card{
    border-radius:24px;
    padding:28px;
    color:white;
    position:relative;
    overflow:hidden;
}

.mini-card i{
    font-size:30px;
    margin-bottom:20px;
}

.mini-card h4{
    font-size:36px;
    font-weight:900;
    margin-bottom:8px;
}

.mini-card p{
    margin:0;
    opacity:0.9;
}

/* =========================================
   CARD COLORS
========================================= */

.mini-card.blue{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.mini-card.green{
    background:linear-gradient(135deg,#10b981,#059669);
}

.mini-card.purple{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

.mini-card.orange{
    background:linear-gradient(135deg,#f59e0b,#ea580c);
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header{
    margin-bottom:40px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#dbeafe;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.section-header h2{
    font-size:48px;
    font-weight:900;
    color:#0f172a;
}

.section-header p{
    color:#64748b;
    font-size:18px;
}

/* =========================================
   FEATURES
========================================= */

.corporate-features{
    padding:100px 0;
    background:white;
}

.feature-box{
    background:#f8fafc;
    border-radius:30px;
    padding:35px;
    border:1px solid #e2e8f0;
    transition:0.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:34px;
    margin-bottom:25px;
}

.blue-bg{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.green-bg{
    background:linear-gradient(135deg,#10b981,#059669);
}

.purple-bg{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

.orange-bg{
    background:linear-gradient(135deg,#f59e0b,#ea580c);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .hero-section{
        padding:50px 0;
    }

    .hero-desc{
        font-size:18px;
    }

    .hero-dashboard-card{
        margin-top:50px;
    }

    .section-header h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .dashboard-mini-grid{
        grid-template-columns:1fr;
    }

    .hero-stats{
        gap:20px;
    }

}

        /* FEATURE CARDS */

        .feature-section{
            padding-bottom:70px;
        }

        .feature-card{
            background:white;
            border-radius:30px;
            padding:35px;
            position:relative;
            overflow:hidden;
            height:100%;
            transition:0.4s;
            border:1px solid #e2e8f0;
            box-shadow:0 10px 30px rgba(15,23,42,0.05);
        }

        .feature-card:hover{
            transform:translateY(-8px);
            box-shadow:0 20px 40px rgba(15,23,42,0.08);
        }

        .icon-wrap{
            width:72px;
            height:72px;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:28px;
            margin-bottom:25px;
        }

        .blue-bg{
            background:#e0ebff;
            color:#2563eb;
        }

        .purple-bg{
            background:#efe6ff;
            color:#7c3aed;
        }

        .green-bg{
            background:#e7f8ec;
            color:#16a34a;
        }

        .feature-card h3{
            font-size:38px;
            font-weight:700;
            color:#0f172a;
            margin-bottom:18px;
        }

        .feature-card p{
            color:#475569;
            font-size:20px;
            line-height:1.8;
            margin-bottom:30px;
        }

        .feature-btn{
            border:2px solid #2563eb;
            padding:12px 22px;
            border-radius:14px;
            color:#2563eb;
            font-weight:700;
            display:inline-flex;
            align-items:center;
            gap:10px;
            transition:0.3s;
        }

        .feature-btn:hover{
            background:#2563eb;
            color:white;
        }

        .feature-graphic{
            position:absolute;
            right:20px;
            bottom:10px;
            opacity:0.15;
            font-size:130px;
        }

        /* STATS */

        .stats-section{
            padding-bottom:80px;
        }

        .stats-box{
            background:white;
            border-radius:30px;
            padding:40px 30px;
            box-shadow:0 10px 30px rgba(15,23,42,0.05);
            border:1px solid #e2e8f0;
        }

        .stat-item{
            display:flex;
            align-items:center;
            gap:20px;
            justify-content:center;
        }

        .stat-icon{
            width:80px;
            height:80px;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:34px;
            font-weight:bold;
        }

        .stat-item h2{
            font-size:52px;
            font-weight:800;
            margin-bottom:5px;
        }

        .stat-item p{
            color:#475569;
            font-size:20px;
            margin:0;
        }

        /* FOOTER */

        .footer{
            background:linear-gradient(135deg,#07152f,#0f2c66);
            padding:80px 0 25px;
            color:white;
            position:relative;
            overflow:hidden;
        }

        .footer::before{
            content:'';
            position:absolute;
            width:700px;
            height:700px;
            border-radius:50%;
            background:rgba(255,255,255,0.03);
            left:-250px;
            top:-250px;
        }

        .footer h4,
        .footer h5{
            font-weight:700;
            margin-bottom:25px;
        }

        .footer p,
        .footer li{
            color:#dbe4ff;
            line-height:2;
            font-size:17px;
        }

        .footer ul{
            list-style:none;
            padding:0;
        }

        .social-icons{
            display:flex;
            gap:15px;
            margin-top:25px;
        }

        .social-icons a{
            width:50px;
            height:50px;
            background:rgba(255,255,255,0.08);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            color:white;
            font-size:20px;
            transition:0.3s;
        }

        .social-icons a:hover{
            background:#2563eb;
            transform:translateY(-3px);
        }

        .footer-bottom{
            border-top:1px solid rgba(255,255,255,0.1);
            margin-top:40px;
            padding-top:25px;
            text-align:center;
            color:#cbd5e1;
        }

        /* RESPONSIVE */

        @media(max-width:991px){

            .hero-desc{
                font-size:18px;
            }

            .feature-card h3{
                font-size:30px;
            }

            .feature-card p{
                font-size:18px;
            }

            .stats-box{
                text-align:center;
            }

            .stat-item{
                margin-bottom:35px;
                justify-content:flex-start;
            }

        }
        
        
        /* =========================================
   DASHBOARD LAYOUT
========================================= */

.dashboard-wrapper{
    display:flex;
    min-height:100vh;
    background:#f4f7fc;
}

/* =========================================
   SIDEBAR
========================================= */

.sidebar{
    width:280px;
    background:linear-gradient(180deg,#0f172a,#1e293b);
    padding:30px 20px;
    position:fixed;
    height:100vh;
    overflow-y:auto;
}
/* =========================================
   SIDEBAR LINKS
========================================= */

.sidebar-menu li a{
    display:flex;
    align-items:center;
    gap:14px;
    color:inherit;
    text-decoration:none;
    width:100%;
}

/* =========================================
   SMOOTH SCROLL
========================================= */

.sidebar-logo{
    color:white;
    font-size:28px;
    font-weight:800;
    margin-bottom:50px;
    display:flex;
    align-items:center;
    gap:12px;
}

.sidebar-logo i{
    color:#3b82f6;
    font-size:32px;
}

.sidebar-menu{
    list-style:none;
    padding:0;
}

.sidebar-menu li{
    color:#cbd5e1;
    padding:16px 18px;
    border-radius:16px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:14px;
    cursor:pointer;
    transition:0.3s;
    font-size:17px;
    font-weight:600;
}

.sidebar-menu li i{
    font-size:20px;
}

.sidebar-menu li:hover,
.sidebar-menu .active{
    background:#2563eb;
    color:white;
}

/* =========================================
   MAIN CONTENT
========================================= */

.main-content{
    margin-left:280px;
    width:100%;
    padding:35px;
}

/* =========================================
   HEADER
========================================= */

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.page-title{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:8px;
}

.page-subtitle{
    color:#64748b;
    font-size:17px;
}

.header-profile{
    display:flex;
    align-items:center;
    gap:15px;
    background:white;
    padding:10px 20px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.header-profile img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.header-profile h6{
    margin:0;
    font-weight:700;
    color:#0f172a;
}

.header-profile span{
    color:#64748b;
    font-size:14px;
}

/* =========================================
   PROFILE CARD
========================================= */

.profile-card{
    background:white;
    border-radius:30px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    border:1px solid #e2e8f0;
}

.profile-left{
    text-align:center;
    padding:20px;
}

.employee-photo{
    width:180px;
    height:180px;
    margin:auto;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:25px;
    border:5px solid #dbeafe;
}

.employee-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.profile-left h3{
    font-size:30px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.profile-left p{
    color:#64748b;
    font-size:17px;
    margin-bottom:20px;
}

.employee-id{
    background:#dbeafe;
    color:#2563eb;
    padding:10px 20px;
    border-radius:30px;
    font-weight:700;
    font-size:15px;
}

/* =========================================
   DETAILS
========================================= */

.employee-details{
    padding-left:20px;
}

.detail-box{
    background:#f8fafc;
    padding:22px;
    border-radius:20px;
    border:1px solid #e2e8f0;
    height:100%;
    transition:0.3s;
}

.detail-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,0.04);
}

.detail-box span{
    color:#64748b;
    font-size:14px;
    display:block;
    margin-bottom:10px;
}

.detail-box h6{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin:0;
}

/* =========================================
   COMMON CARD
========================================= */

.dashboard-card{
    background:white;
    border-radius:30px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    border:1px solid #e2e8f0;
}

.card-header-custom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.card-header-custom h4{
    font-size:26px;
    font-weight:800;
    color:#0f172a;
    display:flex;
    align-items:center;
    gap:12px;
}

.card-header-custom i{
    color:#2563eb;
}

/* =========================================
   SELECTS
========================================= */

.custom-select{
    height:58px;
    border-radius:16px;
    border:1px solid #cbd5e1;
    padding-left:18px;
    font-size:16px;
    font-weight:500;
}

/* =========================================
   BUTTONS
========================================= */

.download-btn{
    height:58px;
    border:none;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    border-radius:16px;
    font-weight:700;
    transition:0.3s;
}

.download-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(37,99,235,0.25);
}

.doc-btn{
    border:none;
    background:#eff6ff;
    color:#2563eb;
    padding:12px 20px;
    border-radius:14px;
    font-weight:700;
    width:100%;
    transition:0.3s;
}

.doc-btn:hover{
    background:#2563eb;
    color:white;
}

/* =========================================
   DOCUMENTS
========================================= */

.document-card{
    background:#f8fafc;
    border-radius:25px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #e2e8f0;
    transition:0.3s;
    height:100%;
}

.document-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 25px rgba(0,0,0,0.05);
}

.document-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:white;
    margin-bottom:22px;
}

.resume{
    background:linear-gradient(135deg,#3b82f6,#2563eb);
}

.offer{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

.pan{
    background:linear-gradient(135deg,#f59e0b,#ea580c);
}

.adhar{
    background:linear-gradient(135deg,#10b981,#059669);
}

.document-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    color:#0f172a;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .sidebar{
        width:100%;
        height:auto;
        position:relative;
    }

    .main-content{
        margin-left:0;
        padding:20px;
    }

    .dashboard-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .employee-details{
        padding-left:0;
        margin-top:30px;
    }

    .page-title{
        font-size:28px;
    }

    .profile-left h3{
        font-size:24px;
    }

    .card-header-custom h4{
        font-size:22px;
    }

}

/* =========================================
   LEAVE SECTION
========================================= */

.leave-calendar-card{
    background:#f8fafc;
    border-radius:25px;
    padding:30px;
    border:1px solid #e2e8f0;
}

/* =========================================
   DATE BOX
========================================= */

.date-box{
    background:white;
    border-radius:18px;
    padding:18px;
    border:1px solid #e2e8f0;
}

.date-box span{
    display:block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:700;
    color:#475569;
}

.leave-date-input{
    height:55px;
    border-radius:14px;
    border:1px solid #cbd5e1;
    padding-left:15px;
}

.leave-date-input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

/* =========================================
   LEAVE STATS
========================================= */

.leave-stats-card{
    background:white;
    border-radius:25px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:22px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.03);
}

.leave-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:white;
}

.total-leaves .leave-icon{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.balance-leaves .leave-icon{
    background:linear-gradient(135deg,#10b981,#059669);
}

.leave-stats-card span{
    color:#64748b;
    font-size:15px;
    font-weight:600;
}

.leave-stats-card h2{
    font-size:44px;
    font-weight:800;
    margin:0;
    color:#0f172a;
}

/* =========================================
   POLICY CARD
========================================= */

.leave-policy-card{
    background:#fff;
    border-radius:25px;
    padding:28px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.03);
}

.leave-policy-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    color:#0f172a;
}

.leave-policy-card ul{
    padding-left:18px;
    margin:0;
}

.leave-policy-card li{
    color:#475569;
    margin-bottom:15px;
    line-height:1.8;
}

/* =========================================
   BUTTON
========================================= */

.leave-submit-btn{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    border:none;
    padding:16px 28px;
    border-radius:16px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.leave-submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(37,99,235,0.2);
}

/* =========================================
   TIMESHEET PAGE
========================================= */

.timesheet-page{
    display:flex;
    min-height:100vh;
    background:#f4f7fc;
}

/* =========================================
   IMPROVED TIMESHEET SIDEBAR
========================================= */

.timesheet-sidebar{
    width:320px;
    background:linear-gradient(180deg,#081225,#111c36);
    padding:30px 22px 120px;
    position:fixed;
    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:25px;

    overflow-y:auto;
    overflow-x:hidden;

    scrollbar-width:thin;
    scrollbar-color:#3b82f6 transparent;

    border-right:1px solid rgba(255,255,255,0.05);
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */

.timesheet-sidebar::-webkit-scrollbar{
    width:7px;
}

.timesheet-sidebar::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.03);
    border-radius:20px;
}

.timesheet-sidebar::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#3b82f6,#2563eb);
    border-radius:20px;
}

.timesheet-sidebar::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg,#60a5fa,#2563eb);
}

/* =========================================
   EXTRA BOTTOM SPACE
========================================= */

.timesheet-sidebar::after{
    content:'';
    display:block;
    min-height:120px;
    width:100%;
}

/* =========================================
   HOLIDAY CARD IMPROVEMENT
========================================= */

.holiday-card{
    background:rgba(255,255,255,0.05);
    border-radius:24px;
    padding:22px;
    border:1px solid rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
}

/* =========================================
   SIDEBAR LOGO
========================================= */

.sidebar-logo{
    color:white;
    font-size:26px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:12px;

    position:sticky;
    top:0;

    background:#081225;
    padding-bottom:18px;
    z-index:20;
}

/* =========================================
   MENU
========================================= */

.timesheet-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.timesheet-menu li{
    padding:16px 18px;
    border-radius:18px;
    color:#cbd5e1;
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:12px;
    font-weight:600;
    transition:0.3s;
    cursor:pointer;
}

.timesheet-menu li.active,
.timesheet-menu li:hover{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    transform:translateX(4px);
}

/* =========================================
   STATUS CARD
========================================= */

.sidebar-status-card{
    background:rgba(255,255,255,0.08);
    border-radius:24px;
    padding:25px;
    color:white;
}

.sidebar-status-card span{
    color:#cbd5e1;
    font-size:14px;
}

.sidebar-status-card h4{
    margin-top:12px;
    font-weight:800;
}

.status-indicator{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#f59e0b;
    margin-top:20px;
}

/* =========================================
   MAIN
========================================= */

.timesheet-main{
    margin-left:300px;
    width:100%;
    padding:40px;
}

/* =========================================
   HEADER
========================================= */

.timesheet-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.timesheet-header h1{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
}

.timesheet-header p{
    color:#64748b;
    margin-top:8px;
}

/* =========================================
   LIVE TIME
========================================= */

.live-time-card{
    background:white;
    border-radius:24px;
    padding:25px 35px;
    text-align:center;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.live-time-card span{
    color:#64748b;
    font-size:14px;
}

.live-time-card h3{
    font-size:32px;
    font-weight:800;
    margin-top:8px;
}

/* =========================================
   FORM CARD
========================================= */

.timesheet-form-card{
    background:white;
    border-radius:30px;
    padding:35px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

/* =========================================
   DATE BOX
========================================= */

.today-date-box{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    border-radius:26px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
}

.today-date-box span{
    font-size:15px;
    opacity:0.8;
}

.today-date-box h4{
    margin-top:10px;
    font-size:30px;
    font-weight:800;
}

.today-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

/* =========================================
   INPUTS
========================================= */

.time-input-box{
    position:relative;
}

.time-input-box i{
    position:absolute;
    top:20px;
    left:18px;
    color:#2563eb;
    font-size:18px;
}

.timesheet-input{
    height:62px;
    border-radius:18px;
    border:1px solid #cbd5e1;
    padding-left:50px;
}

.timesheet-input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

/* =========================================
   WORK SUMMARY
========================================= */

.work-summary-box{
    min-height:220px;
    border-radius:24px;
    border:1px solid #cbd5e1;
    padding:22px;
    resize:none;
}

.work-summary-box:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

/* =========================================
   BUTTON
========================================= */

.submit-attendance-btn{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    border:none;
    padding:18px 32px;
    border-radius:18px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.3s;
}

.submit-attendance-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,99,235,0.25);
}

/* =========================================
   RIGHT CARDS
========================================= */

.approval-card,
.rules-card,
.working-hours-card{
    background:white;
    border-radius:30px;
    padding:30px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.approval-card{
    text-align:center;
}

.approval-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:24px;
    background:#fef3c7;
    color:#d97706;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
}

.approval-card h2{
    color:#d97706;
    font-size:42px;
    font-weight:800;
}

.approval-card p{
    color:#64748b;
    margin-top:15px;
}

.rules-card h5{
    font-weight:800;
    margin-bottom:22px;
}

.rules-card ul{
    padding-left:20px;
}

.rules-card li{
    margin-bottom:14px;
    color:#475569;
    line-height:1.7;
}

.working-hours-card{
    text-align:center;
}

.working-hours-card span{
    color:#64748b;
}

.working-hours-card h1{
    font-size:60px;
    font-weight:800;
    color:#2563eb;
    margin:15px 0;
}

/* =========================================
   SIDEBAR SCROLL
========================================= */

.timesheet-sidebar{
    width:320px;
    background:linear-gradient(180deg,#081225,#111c36);
    padding:30px 22px 120px;
    position:fixed;
    height:100vh;

    display:flex;
    flex-direction:column;
    gap:25px;

    overflow-y:auto;
    overflow-x:hidden;

    scrollbar-width:none;

    transition:0.3s;
}

/* =========================================
   HIDE SCROLLBAR DEFAULT
========================================= */

.timesheet-sidebar::-webkit-scrollbar{
    width:0px;
    transition:0.3s;
}

/* =========================================
   SHOW ON HOVER
========================================= */

.timesheet-sidebar:hover{
    scrollbar-width:thin;
    scrollbar-color:#3b82f6 transparent;
}

.timesheet-sidebar:hover::-webkit-scrollbar{
    width:7px;
}

/* TRACK */

.timesheet-sidebar:hover::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.04);
    border-radius:20px;
}

/* THUMB */

.timesheet-sidebar:hover::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#3b82f6,#2563eb);
    border-radius:20px;
}

/* HOVER EFFECT */

.timesheet-sidebar:hover::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg,#60a5fa,#2563eb);
}

/* =========================================
   CHROME SCROLLBAR
========================================= */

.timesheet-sidebar::-webkit-scrollbar{
    width:8px;
}

/* TRACK */

.timesheet-sidebar::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.04);
    border-radius:20px;
}

/* THUMB */

.timesheet-sidebar::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#3b82f6,#2563eb);
    border-radius:20px;
    transition:0.3s;
}

/* HOVER */

.timesheet-sidebar::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg,#60a5fa,#2563eb);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .timesheet-sidebar{
        width:100%;
        position:relative;
        height:auto;
    }

    .timesheet-main{
        margin-left:0;
        padding:20px;
    }

    .timesheet-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

}