*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#1f2937;
    overflow-x:hidden;
}

.topbar{
    background:#0b2c6b;
    color:white;
    padding:12px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.navbar{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    box-shadow:0 2px 15px rgba(0,0,0,0.06);
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo h2{
    font-size:30px;
    color:#0b2c6b;
    margin-bottom:3px;
}

.logo p{
    color:#6b7280;
    font-size:14px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:3px;
    background:#0d6efd;
    transition:0.3s;
    border-radius:10px;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#0d6efd;
}

.hero{
    min-height:90vh;
    background:linear-gradient(rgba(7,19,52,0.55),rgba(7,19,52,0.55)),url('../img/kantor.jpeg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:700px;
    color:white;
}

.hero-content h1{
    font-size:68px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
    color:#e5e7eb;
}

.btn{
    display:inline-block;
    padding:15px 32px;
    background:#0d6efd;
    color:white;
    border:none;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    cursor:pointer;
    margin-right:10px;
    box-shadow:0 8px 20px rgba(13,110,253,0.25);
}

.btn:hover{
    transform:translateY(-4px);
    background:#0b5ed7;
}

.section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    color:#0b2c6b;
    margin-bottom:15px;
}

.section-title p{
    color:#6b7280;
    font-size:18px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:24px;
    padding:40px 30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.4s;
    border:1px solid #eef2f7;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.card h3{
    color:#0b2c6b;
    font-size:24px;
    margin-bottom:18px;
}

.card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:20px;
}

.content-page{
    padding:100px 8%;
    max-width:1200px;
    margin:auto;
}

.content-page h1{
    font-size:54px;
    color:#0b2c6b;
    margin-bottom:25px;
}

.content-page h2{
    color:#0d6efd;
    margin-top:35px;
    margin-bottom:15px;
}

.content-page p,
.content-page li{
    color:#4b5563;
    line-height:1.9;
    font-size:17px;
}

.content-page ul,
.content-page ol{
    margin-left:25px;
    margin-top:15px;
}

.table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.table th,
.table td{
    padding:18px;
    text-align:left;
    border-bottom:1px solid #e5e7eb;
}

.table th{
    background:#0b2c6b;
    color:white;
}

.table tr:hover{
    background:#f9fafb;
}

form{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

input,
textarea,
select{
    width:100%;
    padding:16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    margin-top:10px;
    margin-bottom:20px;
    font-size:16px;
    outline:none;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#0d6efd;
}

.footer{
    background:#0b2c6b;
    color:white;
    text-align:center;
    padding:35px;
    margin-top:80px;
}

.footer p{
    color:#dbe4ff;
}

@media(max-width:992px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }
}

@media(max-width:600px){

    .topbar{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:36px;
    }

    .content-page h1{
        font-size:38px;
    }

    .btn{
        width:100%;
        text-align:center;
        margin-bottom:15px;
    }
}
/* =========================
   TABEL UNIT KERJA
========================= */

.table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:18px;
}

.table th{
    background:#0b2c6b;
    color:white;
    padding:18px 22px;
    font-size:15px;
    white-space:nowrap;
}

.table td{
    padding:18px 22px;
    font-size:15px;
    border-bottom:1px solid #e5e7eb;
    vertical-align:middle;
}

/* KOLOM NIP */
.table td:nth-child(2){
    min-width:260px;
    font-family:monospace;
    font-size:15px;
    letter-spacing:1px;
    color:#111827;
    font-weight:600;
}

/* RESPONSIVE */
.table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

/* CARD UNIT KERJA */
.card{
    overflow:hidden;
}

/* ANIMASI DATA */
.card table{
    animation:fadeDown 0.4s ease;
}

@keyframes fadeDown{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* SYARAT PELAYANAN */
.card ul{
    margin-top:15px;
    padding-left:20px;
}

.card ul li{
    margin-bottom:12px;
    color:#4b5563;
}

/* ANIMASI */
.card div{
    animation:fadeDown 0.4s ease;
}

@keyframes fadeDown{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}