/* ==============================
   XPERT DATA RECOVERY
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f8fc;

    color:#333;

    overflow-x:hidden;

}

/* ===================== NAVBAR ===================== */

.navbar{

    background:rgba(8,35,78,.95);

    backdrop-filter:blur(12px);

    padding:18px 0;

    transition:.4s;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:#fff !important;

}

.navbar-brand i{

    color:#ffc107;

    margin-right:10px;

}

.nav-link{

    color:white !important;

    margin-left:20px;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:#ffc107 !important;

}

.navbar .btn{

    border-radius:40px;

    font-weight:600;

    padding:10px 25px;

}

/* ===================== HERO ===================== */

.hero{

    min-height:100vh;

    background:linear-gradient(135deg,#08305d,#0b6bd6);

    color:white;

    display:flex;

    align-items:center;

    padding-top:100px;

}

.hero h1{

    font-size:60px;

    font-weight:700;

    line-height:1.2;

}

.hero h1 span{

    color:#ffc107;

}

.hero p{

    font-size:19px;

    margin-top:25px;

    opacity:.95;

    line-height:1.8;

}

.hero img{

    max-width:95%;

    animation:float 4s ease-in-out infinite;

}

.hero-buttons{

    margin-top:35px;

}

.hero-buttons .btn{

    margin-right:15px;

    padding:15px 32px;

    border-radius:40px;

    font-weight:600;

}

.hero-badge{

    display:inline-block;

    background:#ffc107;

    color:#000;

    padding:10px 25px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-features{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    margin-top:40px;

}

.hero-features div{

    font-weight:500;

}

.hero-features i{

    color:#ffc107;

    margin-right:8px;

}

/* ===================== ABOUT ===================== */

.about{

    padding:90px 0;

    background:white;

}

.about img{

    border-radius:20px;

    transition:.5s;

}

.about img:hover{

    transform:scale(1.03);

}

.about h2{

    font-size:42px;

    font-weight:700;

    color:#08305d;

    margin-bottom:20px;

}

.about p{

    line-height:1.9;

    font-size:17px;

    color:#666;

}

.about h3{

    color:#0b6bd6;

    font-size:40px;

    font-weight:700;

}

/* ===================== SERVICES ===================== */

.services{

    background:#eef5ff;

    padding:90px 0;

}

.services h2{

    font-size:42px;

    font-weight:700;

    color:#08305d;

}

.services p{

    color:#666;

}

.service-card{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.service-card i{

    font-size:55px;

    color:#0b6bd6;

    margin-bottom:25px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:18px;

    color:#08305d;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* ===================== BUTTONS ===================== */

.btn-primary{

    background:#0b6bd6;

    border:none;

}

.btn-primary:hover{

    background:#08305d;

}

.btn-outline-light:hover{

    color:#08305d;

    font-weight:600;

}

/* ===================== ANIMATION ===================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===================== RESPONSIVE ===================== */

@media(max-width:992px){

.hero{

text-align:center;

padding-top:140px;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

}

.about{

text-align:center;

}

.about img{

margin-bottom:40px;

}

}

@media(max-width:768px){

.hero h1{

font-size:36px;

}

.about h2{

font-size:32px;

}

.services h2{

font-size:32px;

}

.hero-buttons .btn{

margin-bottom:15px;

}

}

@media(max-width:576px){

.navbar-brand{

font-size:22px;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.service-card{

padding:25px;

}

}

/* ==============================
NAVBAR SCROLL
============================== */

.navbar.scrolled{

background:#05234a;

box-shadow:0 10px 30px rgba(0,0,0,.25);

}

/* ==============================
REVEAL ANIMATION
============================== */

.reveal{

opacity:0;

transform:translateY(70px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}

/* ==============================
BACK TO TOP
============================== */

.top-btn{

position:fixed;

right:30px;

bottom:30px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#0b6bd6;

color:white;

font-size:20px;

cursor:pointer;

display:none;

transition:.4s;

z-index:999;

}

.top-btn.show{

display:block;

animation:fade .4s;

}

.top-btn:hover{

background:#08305d;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ===========================
LOGIN PAGE
=========================== */

.login-page{

background:linear-gradient(135deg,#0A4DA3,#06346F);

height:100vh;

display:flex;

justify-content:center;

align-items:center;

}

.login-container{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:20px;

}

.login-card{

background:#fff;

width:420px;

padding:40px;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.25);

animation:fadeUp .8s;

}

.login-card h2{

font-weight:700;

color:#0A4DA3;

}

.login-card p{

color:#777;

}

.login-icon{

font-size:55px;

color:#0A4DA3;

margin-bottom:20px;

}

.form-control{

height:50px;

border-radius:10px;

}

.form-select{

height:50px;

border-radius:10px;

}

.login-card .btn{

height:50px;

font-size:18px;

font-weight:600;

border-radius:10px;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ===========================================
   DASHBOARD
=========================================== */

.dashboard-wrapper{

    display:flex;

    min-height:100vh;

    background:#f5f7fb;

}

/* Sidebar */

.sidebar{

    width:270px;

    background:#0A2558;

    color:white;

    position:fixed;

    top:0;

    left:0;

    bottom:0;

    overflow-y:auto;

    box-shadow:4px 0 20px rgba(0,0,0,.15);

}

.logo{

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    border-bottom:1px solid rgba(255,255,255,.1);

}

.logo i{

    color:#ffc107;

    margin-right:12px;

}

.sidebar-menu{

    list-style:none;

    padding:25px 0;

    margin:0;

}

.sidebar-menu li{

    margin:8px 15px;

}

.sidebar-menu li a{

    color:white;

    text-decoration:none;

    display:flex;

    align-items:center;

    padding:14px 18px;

    border-radius:12px;

    transition:.3s;

}

.sidebar-menu li a:hover{

    background:#1565C0;

}

.sidebar-menu li.active a{

    background:#1976D2;

}

.sidebar-menu li i{

    width:28px;

    font-size:18px;

}

/* Main */

.main-content{

    margin-left:270px;

    width:calc(100% - 270px);

    padding:30px;

}

/* Topbar */

.topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:white;

    padding:20px 30px;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.topbar h2{

    font-weight:700;

    margin:0;

    color:#0A2558;

}

.topbar p{

    margin:0;

    color:#777;

}

.top-right{

    display:flex;

    align-items:center;

    gap:20px;

}

.profile{

    background:#eef5ff;

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

}

.profile i{

    margin-right:8px;

    color:#1976D2;

}

/* Dashboard Cards */

.dashboard-card{

    background:white;

    border-radius:20px;

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-8px);

}

.dashboard-card h5{

    color:#666;

    margin-bottom:10px;

}

.dashboard-card h2{

    font-size:32px;

    font-weight:700;

}

.dashboard-card i{

    font-size:50px;

    color:#1976D2;

}

.dashboard-card.green{

    border-left:6px solid #2ecc71;

}

.dashboard-card.orange{

    border-left:6px solid orange;

}

.dashboard-card.red{

    border-left:6px solid crimson;

}

/* Quick Action */

.action-box,.activity-box{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.action-card{

    display:block;

    text-decoration:none;

    color:#0A2558;

    text-align:center;

    background:#f7fbff;

    padding:30px;

    border-radius:18px;

    transition:.3s;

}

.action-card:hover{

    background:#1976D2;

    color:white;

    transform:translateY(-8px);

}

.action-card i{

    font-size:40px;

    margin-bottom:15px;

}

.activity-box ul{

    padding-left:20px;

    line-height:2.2;

}

/* Table */

.table-box{

    background:white;

    padding:30px;

    margin-top:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.table-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.search-box{

    position:relative;

}

.search-box i{

    position:absolute;

    top:14px;

    left:15px;

    color:#888;

}

.search-box input{

    width:320px;

    padding-left:45px;

    border-radius:30px;

}

.table th{

    background:#0A2558;

    color:white;

}

.table td{

    vertical-align:middle;

}

/* Footer */

.dashboard-footer{

    margin-top:35px;

    text-align:center;

    color:#666;

}

/* Responsive */

@media(max-width:992px){

.sidebar{

    width:80px;

}

.logo span{

    display:none;

}

.sidebar-menu li a span{

    display:none;

}

.main-content{

    margin-left:80px;

    width:calc(100% - 80px);

}

}

@media(max-width:768px){

.sidebar{

    display:none;

}

.main-content{

    width:100%;

    margin-left:0;

}

.topbar{

    flex-direction:column;

    gap:20px;

}

.dashboard-card{

    margin-bottom:20px;

}

.table-header{

    flex-direction:column;

    gap:20px;

}

.search-box input{

    width:100%;

}

}