/* =====================================================
   MYSMKIB UI v3.0
   PART 1
=====================================================*/

:root{

    --primary:#2563EB;
    --primary2:#1D4ED8;

    --success:#16A34A;
    --warning:#F59E0B;
    --danger:#DC2626;

    --dark:#1E293B;

    --bg:#F4F7FB;

    --white:#ffffff;

    --border:#E2E8F0;

    --text:#334155;

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

    --radius:18px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

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

::-webkit-scrollbar{

    width:9px;

    height:9px;

}

::-webkit-scrollbar-thumb{

    background:#BFC8D4;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#94A3B8;

}

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

.sidebar{

    position:fixed;

    top:0;

    left:0;

    bottom:0;

    width:270px;

    background:
    linear-gradient(
    180deg,
    #2563EB,
    #1D4ED8);

    color:#fff;

    overflow-y:auto;

    box-shadow:

    8px 0 25px rgba(0,0,0,.12);

    z-index:1000;

}

/*=====================================================
BRAND
=====================================================*/

.brand{

    padding:30px 20px;

    text-align:center;

    border-bottom:

    1px solid rgba(255,255,255,.15);

}

.logo{

    width:85px;

    height:85px;

    object-fit:contain;

    margin-bottom:15px;

    transition:.35s;

}

.logo:hover{

    transform:rotate(-8deg)
    scale(1.05);

}

.brand h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;

}

.brand small{

    opacity:.8;

    font-size:13px;

}

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

.menu-title{

    padding:

    22px 25px 10px;

    font-size:11px;

    letter-spacing:1px;

    color:

    rgba(255,255,255,.70);

    font-weight:700;

}

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

.menu{

    list-style:none;

    padding:0 12px;

    margin:0;

}

.menu li{

    margin-bottom:6px;

}

.menu a{

    display:flex;

    align-items:center;

    gap:14px;

    color:#fff;

    text-decoration:none;

    padding:

    13px 16px;

    border-radius:14px;

    transition:.30s;

    font-weight:500;

}

.menu a i{

    width:22px;

    text-align:center;

    font-size:19px;

}

.menu a:hover{

    background:

    rgba(255,255,255,.12);

    transform:translateX(5px);

}

.menu a.active{

    background:#fff;

    color:var(--primary);

    font-weight:600;

    box-shadow:

    0 10px 20px rgba(0,0,0,.18);

}

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

.content{

    margin-left:270px;

    padding:30px;

    min-height:100vh;

}

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

.card{

    border:none;

    border-radius:20px;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.30s;

}

.card:hover{

    transform:translateY(-4px);

    box-shadow:

    0 18px 40px rgba(0,0,0,.12);

}

.card-header{

    border:none;

    font-weight:600;

    padding:18px 22px;

}

.card-body{

    padding:22px;

}

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

.card-body.text-white{

    background:

    linear-gradient(

    135deg,

    #2563EB,

    #4F8EF7

    );

    border-radius:18px;

}

.card-body.text-white h2{

    font-size:30px;

    font-weight:700;

}

.card-body.text-white h3{

    font-size:24px;

    margin-top:8px;

}

/*=====================================================
STATISTIK
=====================================================*/

.row.g-4 .card{

    overflow:hidden;

    position:relative;

}

.row.g-4 .card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:

    linear-gradient(

    #2563EB,

    #60A5FA

    );

}

.row.g-4 h5{

    color:#64748B;

    font-size:15px;

    margin-bottom:10px;

}

.row.g-4 h2{

    font-size:38px;

    font-weight:700;

    color:#1E293B;

}

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

.table{

    margin-bottom:0;

}

/*=====================================================
LINK
=====================================================*/

a{

    text-decoration:none;

}

a:hover{

    text-decoration:none;

}

/* =====================================================
   MYSMKIB UI v3.0
   PART 2
   FORM • BUTTON • TABLE • LOGIN
=====================================================*/

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

.form-label{

    font-weight:600;

    color:#475569;

    margin-bottom:8px;

}

.form-control,
.form-select{

    height:50px;

    border:1px solid #D8E2EE;

    border-radius:14px;

    font-size:15px;

    transition:.30s;

    box-shadow:none;

}

textarea.form-control{

    min-height:120px;

    resize:vertical;

}

.form-control:focus,
.form-select:focus{

    border-color:#2563EB;

    box-shadow:

    0 0 0 .18rem rgba(37,99,235,.15);

}

.form-control::placeholder{

    color:#94A3B8;

}

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

.btn{

    border-radius:14px;

    font-weight:600;

    padding:10px 22px;

    transition:.30s;

    border:none;

}

.btn:hover{

    transform:translateY(-2px);

}

.btn:active{

    transform:scale(.98);

}

/* Primary */

.btn-primary{

    background:

    linear-gradient(

    135deg,

    #2563EB,

    #3B82F6

    );

}

.btn-primary:hover{

    background:

    linear-gradient(

    135deg,

    #1D4ED8,

    #2563EB

    );

}

/* Success */

.btn-success{

    background:

    linear-gradient(

    135deg,

    #16A34A,

    #22C55E

    );

}

/* Danger */

.btn-danger{

    background:

    linear-gradient(

    135deg,

    #DC2626,

    #EF4444

    );

}

/* Warning */

.btn-warning{

    background:

    linear-gradient(

    135deg,

    #F59E0B,

    #FBBF24

    );

    color:#fff;

}

/* Secondary */

.btn-secondary{

    background:#64748B;

}

/* Outline */

.btn-outline-primary{

    border:2px solid #2563EB;

    color:#2563EB;

}

.btn-outline-primary:hover{

    background:#2563EB;

    color:#fff;

}

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

.table{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

}

.table thead{

    background:

    linear-gradient(

    135deg,

    #2563EB,

    #3B82F6

    );

    color:#fff;

}

.table thead th{

    border:none;

    padding:16px;

    font-weight:600;

    vertical-align:middle;

}

.table tbody td{

    padding:15px;

    vertical-align:middle;

    border-color:#EEF2F7;

}

.table-hover tbody tr{

    transition:.25s;

}

.table-hover tbody tr:hover{

    background:#F4F8FF;

}

/* Zebra */

.table-striped tbody tr:nth-child(even){

    background:#FBFCFE;

}

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

.badge{

    padding:8px 14px;

    border-radius:30px;

    font-weight:500;

    font-size:12px;

}

/*=====================================================
ALERT
=====================================================*/

.alert{

    border:none;

    border-radius:16px;

    padding:18px 22px;

    font-weight:500;

    box-shadow:

    0 8px 20px rgba(0,0,0,.06);

}

.alert-success{

    background:#ECFDF5;

    color:#166534;

}

.alert-danger{

    background:#FEF2F2;

    color:#991B1B;

}

.alert-warning{

    background:#FFFBEB;

    color:#92400E;

}

.alert-info{

    background:#EFF6FF;

    color:#1D4ED8;

}

/*=====================================================
MODAL
=====================================================*/

.modal-content{

    border:none;

    border-radius:22px;

    overflow:hidden;

    box-shadow:

    0 20px 45px rgba(0,0,0,.18);

}

.modal-header{

    border:none;

    padding:20px 25px;

}

.modal-title{

    font-weight:700;

}

.modal-footer{

    border:none;

    padding:18px 25px;

}

/*=====================================================
DROPDOWN
=====================================================*/

.dropdown-menu{

    border:none;

    border-radius:14px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.12);

}

.dropdown-item{

    padding:10px 18px;

    transition:.25s;

}

.dropdown-item:hover{

    background:#EFF6FF;

}

/*=====================================================
PAGINATION
=====================================================*/

.pagination{

    gap:8px;

}

.page-link{

    border:none;

    border-radius:12px;

    color:#2563EB;

    min-width:42px;

    text-align:center;

}

.page-item.active .page-link{

    background:#2563EB;

}

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

.login-page{

    background:

    linear-gradient(

    135deg,

    #EAF3FF,

    #FFFFFF

    );

}

.login-card{

    width:100%;

    max-width:430px;

    margin:auto;

    padding:40px;

    background:#fff;

    border-radius:26px;

    box-shadow:

    0 25px 50px rgba(0,0,0,.12);

}

.login-card img{

    width:90px;

    display:block;

    margin:auto;

    margin-bottom:20px;

}

.login-card h3{

    font-weight:700;

    text-align:center;

    margin-bottom:25px;

}

.login-card .btn{

    width:100%;

    height:52px;

}

/*=====================================================
UTILITY
=====================================================*/

.shadow-soft{

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

}

.rounded-xl{

    border-radius:22px;

}

.text-small{

    font-size:13px;

}

.fw-semibold{

    font-weight:600;

}

/* =====================================================
   MYSMKIB UI v3.0
   PART 3 (FINAL)
   GALLERY • QUOTES • SOSMED • ANIMATION • UTILITIES
=====================================================*/

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

*{
    transition:
    background .25s,
    color .25s,
    border-color .25s,
    box-shadow .25s;
}

.fade-up{

    animation:fadeUp .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

.card{

    overflow:hidden;

    position:relative;

}

.card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:linear-gradient(
    90deg,
    #2563EB,
    #60A5FA);

    transition:.35s;

}

.card:hover::after{

    width:100%;

}

/*=====================================================
GALERI FOTO
=====================================================*/

.galeri-scroll{

    display:flex;

    flex-wrap:nowrap;

    overflow-x:auto;

    gap:22px;

    padding:10px;

    scroll-behavior:smooth;

}

.galeri-scroll::-webkit-scrollbar{

    height:8px;

}

.galeri-scroll::-webkit-scrollbar-thumb{

    background:#CBD5E1;

    border-radius:20px;

}

.galeri-item{

    flex:0 0 auto;

    width:320px;

    height:220px;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

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

    transition:.35s;

}

.galeri-item:hover{

    transform:
    translateY(-8px);

}

.galeri-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.galeri-item:hover img{

    transform:scale(1.08);

}

/*=====================================================
BIODATA FOTO
=====================================================*/

.card img.rounded{

    border-radius:18px !important;

    border:5px solid #fff;

    box-shadow:

    0 10px 25px rgba(0,0,0,.15);

}

/*=====================================================
QUOTES
=====================================================*/

.bi-quote{

    font-size:55px;

    color:#2563EB;

}

.card .fst-italic{

    line-height:1.9;

    font-size:18px;

}

/*=====================================================
SOSIAL MEDIA
=====================================================*/

.btn-outline-danger,
.btn-outline-success,
.btn-outline-dark{

    border-width:2px;

    border-radius:50px;

    padding:10px 22px;

}

.btn-outline-danger:hover{

    background:#E1306C;

    border-color:#E1306C;

}

.btn-outline-success:hover{

    background:#25D366;

    border-color:#25D366;

}

.btn-outline-dark:hover{

    background:#111827;

    border-color:#111827;

}

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

.table-striped tr th{

    background:#F8FAFC;

    font-weight:600;

    width:220px;

}

.table-striped td{

    color:#475569;

}

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

.bi{

    vertical-align:middle;

}

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

.card-header{

    font-size:17px;

}

.card-header i{

    margin-right:8px;

}

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

.badge{

    letter-spacing:.4px;

}

/*=====================================================
LOADING HOVER
=====================================================*/

.btn{

    overflow:hidden;

    position:relative;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:

    linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.28),

        transparent

    );

}

.btn:hover::before{

    left:120%;

    transition:.7s;

}

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

h5{

    font-weight:600;

}

h2{

    font-weight:700;

}

/*=====================================================
UTILITY
=====================================================*/

.radius-xl{

    border-radius:24px;

}

.shadow-lg-soft{

    box-shadow:

    0 20px 45px rgba(0,0,0,.12);

}

.border-soft{

    border:1px solid #E5E7EB;

}

.bg-soft{

    background:#F8FAFC;

}

.text-muted{

    color:#64748B !important;

}

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

.content{

    padding-bottom:40px;

}