/*==================================
GOOGLE FONT
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================
RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    overflow-x:hidden;
}

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

.sidebar{

    position:fixed;

    left:0;

    top:0;

    width:250px;

    height:100vh;

    background:#0f172a;

    padding:20px;

    overflow-y:auto;

    z-index:1000;

}

.sidebar-title{

    color:white;

    font-size:22px;

    font-weight:700;

    text-align:center;

    margin-bottom:30px;

}

.sidebar .nav-link{

    color:#cbd5e1;

    padding:12px 15px;

    margin-bottom:8px;

    border-radius:10px;

    transition:.3s;

}

.sidebar .nav-link:hover{

    background:#2563eb;

    color:white;

}

.sidebar .nav-link.active{

    background:#2563eb;

    color:white;

}

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

.main-content{

    margin-left:250px;

    padding:25px;

}

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

.card{

    border:none;

    border-radius:20px;

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.card-header{

    border-radius:20px 20px 0 0!important;

    font-weight:600;

}

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

.table{

    background:white;

    border-radius:15px;

    overflow:hidden;

}

.table thead{

    background:#0f172a;

    color:white;

}

.table tbody tr:hover{

    background:#eef5ff;

}

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

.stat-card{

    border-radius:20px;

    color:white;

    padding:25px;

    box-shadow:0 15px 30px rgba(0,0,0,.12);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h2{

    font-size:38px;

    font-weight:700;

}

.stat-card p{

    margin:0;

    opacity:.9;

}

/*==================================
COLOR
==================================*/

.bg-blue{

    background:#2563eb;

}

.bg-green{

    background:#16a34a;

}

.bg-orange{

    background:#ea580c;

}

.bg-red{

    background:#dc2626;

}

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

.navbar{

    background:transparent;

    transition:.4s;

    padding:18px 0;

}

.navbar-brand{

    display:flex;

    align-items:center;

    color:white!important;

}

.navbar-brand img{

    width:60px;

    margin-right:10px;

}

.navbar-brand h5{

    margin:0;

    font-size:22px;

    font-weight:700;

}

.navbar-brand span{

    font-size:14px;

}

.nav-link{

    color:white!important;

    margin-left:20px;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:#ffc107!important;

}

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

.btn-login{

    background:#ffc107;

    color:#111;

    padding:12px 30px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-login:hover{

    background:#ffb300;

    color:#111;

}

.btn-gold{

    background:#f4b400;

    color:#111;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-gold:hover{

    background:#e39d00;

    color:white;

}

.btn-outline-light{

    border:2px solid #0B2345;

    color:#0B2345;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-outline-light:hover{

    background:#0B2345;

    color:white;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../img/background.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(255,255,255,.93) 0%,

        rgba(255,255,255,.78) 35%,

        rgba(255,255,255,.20) 65%,

        rgba(255,255,255,0) 100%

    );

}

.hero .container{

    position:relative;

    z-index:2;

}

/*==================================
TEXT HERO
==================================*/

.hero-text h1{

    font-size:80px;

    font-weight:800;

    color:#08204A;

    line-height:1.1;

}

.hero-text h3{

    margin-top:20px;

    color:#d39b00;

    font-size:34px;

    font-weight:700;

    line-height:1.4;

}

.hero-text p{

    margin-top:25px;

    font-size:19px;

    color:#444;

    line-height:1.9;

}

/*==================================
HERO IMAGE
==================================*/

.hero-img{

    width:95%;

    animation:float 4s ease-in-out infinite;

    filter:drop-shadow(0 20px 30px rgba(0,0,0,.30));

}

/*==================================
ANIMATION
==================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================
FEATURE BOX
==================================*/

.hero-feature{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:45px;

}

.feature-box{

    width:150px;

    background:white;

    border-radius:20px;

    padding:20px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    transition:.3s;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box i{

    font-size:40px;

    color:#f4b400;

    margin-bottom:15px;

}

.feature-box span{

    display:block;

    font-weight:600;

}

/*==================================
SECTION FITUR
==================================*/

.fitur{

    padding:100px 0;

    background:#fff;

}

.fitur h2{

    font-size:42px;

    font-weight:700;

    color:#0B2345;

    margin-bottom:50px;

}

.fitur-card{

    background:white;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.fitur-card:hover{

    transform:translateY(-10px);

}

.fitur-card i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:#ffc107;

    color:#0B2345;

    font-size:35px;

    margin-bottom:20px;

}

.fitur-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.fitur-card p{

    color:#666;

    line-height:1.8;

}

/*==================================
FOOTER
==================================*/

footer{

    background:#081c3d;

    color:white;

    text-align:center;

    padding:30px 20px;

}

footer p{

    margin:0;

    opacity:.9;

}

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

@media(max-width:991px){

    .hero{

        text-align:center;

        padding-top:120px;

    }

    .hero-text h1{

        font-size:58px;

    }

    .hero-text h3{

        font-size:28px;

    }

    .hero-text p{

        font-size:17px;

    }

    .hero-img{

        width:75%;

        margin-top:40px;

    }

    .hero-feature{

        justify-content:center;

    }

    .navbar-brand h5{

        font-size:18px;

    }

    .main-content{

        margin-left:0;

    }

    .sidebar{

        position:relative;

        width:100%;

        height:auto;

    }

}

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

@media(max-width:768px){

    .hero{

        padding:120px 0 80px;

    }

    .hero-text h1{

        font-size:42px;

    }

    .hero-text h3{

        font-size:22px;

    }

    .hero-text p{

        font-size:15px;

    }

    .hero-img{

        width:90%;

    }

    .feature-box{

        width:100%;

    }

    .btn-gold,

    .btn-outline-light{

        width:100%;

        display:block;

        text-align:center;

        margin-bottom:15px;

    }

    .sidebar{

        width:100%;

        position:relative;

        min-height:auto;

    }

    .main-content{

        margin-left:0;

        padding:15px;

    }

    .stat-card{

        margin-bottom:20px;

    }

}

/*==================================
RESPONSIVE SMALL MOBILE
==================================*/

@media(max-width:576px){

    .navbar-brand img{

        width:45px;

    }

    .navbar-brand h5{

        font-size:16px;

    }

    .navbar-brand span{

        font-size:11px;

    }

    .hero-text h1{

        font-size:34px;

    }

    .hero-text h3{

        font-size:18px;

    }

    .hero-text p{

        font-size:14px;

    }

    .fitur{

        padding:70px 0;

    }

    .fitur h2{

        font-size:30px;

    }

    .fitur-card{

        padding:30px;

    }

}

/*====================================
 DASHBOARD BACKGROUND
=====================================*/

.dashboard-wrapper{

    position:relative;

    min-height:100vh;

    padding:25px;

    overflow:hidden;

}

/* Background */

.dashboard-wrapper::before{

    content:"";

    position:fixed;

    top:56px;

    left:250px;

    right:0;

    bottom:0;

    background:
    linear-gradient(
        rgba(255,255,255,.45),
        rgba(255,255,255,.45)
    ),
    url("../img/bsd.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    filter:blur(7px);

    transform:scale(1.08);

    z-index:-2;

}

/* Overlay putih */

.dashboard-wrapper::after{

    content:"";

    position:fixed;

    top:56px;

    left:250px;

    right:0;

    bottom:0;

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

    z-index:-1;

}

@media(max-width:991px){

.dashboard-wrapper::before,
.dashboard-wrapper::after{

left:0;

}

}

.card{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border:none;

    border-radius:18px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

/*====================================
BACKGROUND SEMUA HALAMAN
=====================================*/

.main-content::before{

    content:"";

    position:fixed;

    top:56px;

    left:250px;

    right:0;

    bottom:0;

    background:
    linear-gradient(
        rgba(255,255,255,.50),
        rgba(255,255,255,.50)
    ),
    url("../img/bsd.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    filter:blur(8px);

    transform:scale(1.08);

    z-index:-2;

}

.main-content::after{

    content:"";

    position:fixed;

    top:56px;

    left:250px;

    right:0;

    bottom:0;

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

    z-index:-1;

}