/* =========================================
   ROOT
========================================= */

:root{

    --bg:#020617;
    --card:#081120;
    --card2:#0f172a;

    --primary:#00ffd5;
    --secondary:#2563eb;
    --purple:#7c3aed;

    --text:#ffffff;
    --muted:#94a3b8;

    --border:rgba(255,255,255,.08);

}

/* =========================================
   GLOBAL
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Prompt',sans-serif;

    background:
        radial-gradient(circle at top left,
        rgba(37,99,235,.15),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(124,58,237,.15),
        transparent 30%),

        var(--bg);

    min-height:100vh;

    color:var(--text);

    overflow-x:hidden;
}

/* =========================================
   GLOW EFFECT
========================================= */

.glow{

    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(0,255,213,.08);

    filter:blur(120px);

    z-index:-1;
}

.glow-1{

    top:-200px;
    left:-150px;
}

.glow-2{

    bottom:-200px;
    right:-100px;

    background:rgba(124,58,237,.10);
}

/* =========================================
   NAVBAR
========================================= */

.navbar{

    background:rgba(2,6,23,.65)!important;

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);

    padding:16px 0;
}

.navbar-brand{

    font-weight:700;

    color:#fff!important;

    font-size:1.2rem;
}

.nav-link{

    color:#cbd5e1!important;

    transition:.3s;
}

.nav-link:hover{

    color:var(--primary)!important;
}

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

.card{

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.95),
            rgba(8,17,32,.95)
        );

    border:1px solid var(--border);

    border-radius:28px;

    backdrop-filter:blur(20px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.45);

    overflow:hidden;

    transition:.4s;
}

.card:hover{

    transform:translateY(-4px);

    border-color:rgba(0,255,213,.25);

    box-shadow:
        0 20px 50px rgba(0,255,213,.08);
}

/* =========================================
   LOGIN BOX
========================================= */

.login-box{

    padding:50px;
}

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

.main-title{

    font-size:3rem;

    font-weight:700;

    line-height:1.1;

    margin-bottom:15px;
}

.gradient-text{

    background:
        linear-gradient(
            90deg,
            #00ffd5,
            #3b82f6,
            #7c3aed
        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.sub-text{

    color:var(--muted);

    line-height:1.8;

    font-size:1rem;
}

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

.form-label{

    color:#cbd5e1;

    margin-bottom:10px;

    font-size:.95rem;
}

.form-control{

    background:rgba(255,255,255,.04)!important;

    border:1px solid rgba(255,255,255,.08)!important;

    border-radius:18px;

    color:#fff!important;

    padding:16px;

    transition:.3s;
}

.form-control:focus{

    background:rgba(255,255,255,.06)!important;

    border-color:rgba(0,255,213,.5)!important;

    box-shadow:
        0 0 0 .2rem rgba(0,255,213,.10)!important;
}

.form-control::placeholder{

    color:#64748b;
}

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

.btn-tech{

    background:
        linear-gradient(
            135deg,
            #00ffd5,
            #2563eb
        );

    border:none;

    border-radius:18px;

    padding:16px;

    color:#fff;

    font-weight:600;

    transition:.4s;
}

.btn-tech:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0,255,213,.25);

    color:#fff;
}

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

.feature-card{

    padding:25px;

    border-radius:24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

    border:1px solid rgba(255,255,255,.06);

    height:100%;

    transition:.4s;
}

.feature-card:hover{

    transform:translateY(-4px);

    border-color:rgba(0,255,213,.25);
}

.feature-icon{

    width:70px;
    height:70px;

    border-radius:20px;

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

    background:
        linear-gradient(
            135deg,
            rgba(0,255,213,.2),
            rgba(37,99,235,.2)
        );

    font-size:28px;

    margin-bottom:20px;
}

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

.dashboard-card{

    padding:30px;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.95),
            rgba(8,17,32,.95)
        );

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.dashboard-card:hover{

    transform:translateY(-5px);

    border-color:rgba(0,255,213,.25);

    box-shadow:
        0 20px 50px rgba(0,255,213,.08);
}

/* =========================================
   TABLE
========================================= */

.table{

    color:#fff;

    border-color:rgba(255,255,255,.08);
}

.table thead{

    background:rgba(255,255,255,.03);
}

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

.badge-tech{

    background:rgba(0,255,213,.15);

    color:#00ffd5;

    border:1px solid rgba(0,255,213,.2);

    padding:8px 14px;

    border-radius:999px;

    font-size:.8rem;
}

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

.sidebar{

    width:260px;

    min-height:100vh;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.95),
            rgba(2,6,23,.98)
        );

    border-right:1px solid rgba(255,255,255,.06);

    position:fixed;

    top:0;
    left:0;

    padding:30px 20px;
}

.sidebar-menu{

    list-style:none;

    padding-left:0;
}

.sidebar-menu li{

    margin-bottom:10px;
}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:16px;

    color:#cbd5e1;

    transition:.3s;
}

.sidebar-menu a:hover{

    background:rgba(0,255,213,.08);

    color:#00ffd5;
}

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

@media(max-width:768px){

    .main-title{

        font-size:2rem;
        color:#ffffff;
    }

    .login-box{

        padding:30px;
    }

}

.login-title{
    color:#ffffff !important;
}

.text-muted-tech{
    color:#ffffff !important;
}

.glass-btn{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    color:#fff;

    backdrop-filter:blur(10px);

    border-radius:14px;

    transition:.3s;
}

.glass-btn:hover{

    background:rgba(0,255,213,.1);
    color:#00ffd5;

    transform:translateY(-2px);

}

.fc{
    color:#fff;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid{
    border-color:rgba(255,255,255,.1);
}

.fc-toolbar-title{
    color:#fff;
}

.fc-button{
    background:#00ffd5 !important;
    border:none !important;
    color:#000 !important;
}
#map{

    width:100%;
    height:450px;

    border-radius:20px;

    overflow:hidden;

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

    box-shadow:
        0 0 30px rgba(0,255,213,.1);

}

.leaflet-control{
    z-index:999;
}

.leaflet-popup-content-wrapper{
    background:#03111f;
    color:#fff;
}

.leaflet-control-geocoder{
    width:300px;
}