body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
    background: #f5f7fa;
}

/* ================ */
/* ==== BERANDA ==== */
/* ================ */

/* ---- Button Login ---- */
.btn-login {
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 1000;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Primary Button */
.btn-primary-login {
    background: #f4b400;
    color: #0f1c70;
}

.btn-primary-login:hover {
    background: #ffcc33;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0f1c70;
}

.menu-active {
    color: black !important;
    font-weight: bold;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    padding: 12px 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border-bottom: 5px solid #f4c430; /* Garis kuning bawah */
}

/* Logo */
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    line-height: 1.1;
}

.logo-title {
    font-size: 16px;
    font-weight: 700;
    color: #0d6efd;
}

.logo-subtitle {
    font-size: 12px;
    color: #6c757d;
}

/* Navbar saat scroll */
.custom-navbar.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

/* Nav Link */
.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 5px;
    color: #333;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Hover Desktop Only */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeSlide 0.3s ease-in-out;
    }

    .navbar .dropdown-toggle::after {
        display: none; /* hilangkan arrow default bootstrap */
    }
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    animation: fadeSlide 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 8px 20px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: #f1f5ff;
    color: #0d6efd;
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tablet */
@media (max-width: 992px) {
    .navbar-nav {
        padding-top: 15px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

/* Responsive Mobile */
@media (max-width: 576px) {
    .logo-title {
        font-size: 14px;
    }

    .logo-subtitle {
        font-size: 11px;
    }
}

/* ===== HERO SECTION ===== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* body {
    background: #f5f5f5;
} */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

/* Overlay Biru */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 28, 112, 0.95) 0%,
        rgba(28, 43, 140, 0.85) 50%,
        rgba(28, 43, 140, 0.6) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

/* Badge */
.badge {
    display: inline-block;
    background: #f4b400;
    color: #0f1c70;
    padding: 10px 10px;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Heading */
.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #f4b400;
}

/* Paragraph */
.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Primary Button */
.btn-primary-hero {
    background: #f4b400;
    color: #0f1c70;
}

.btn-primary-hero:hover {
    background: #ffcc33;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0f1c70;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==== LAYANAN UTAMA ==== */

/* .layanan-utama{
    background: #0d6efd !important;
} */

/* Title */
.section-title-layanan {
    font-weight: 700;
    color: #0d3b66;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #f4a100;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Card */
.service-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    padding: 40px 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    color: inherit;
}

/* Animated Bottom Line */
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d3b66, #f4a100);
    transition: 0.4s ease;
}

.service-card:hover::after {
    left: 0;
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px);
    background: #0d3b66;
    color: #fff;
}

.service-card:hover h5,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .icon-box {
    background: #ffffff;
    color: #0d3b66;
}

/* Icon */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e9eef5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #0d3b66;
    transition: 0.4s;
}

/* Text */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    from {
        width: 0;
        height: 0;
        opacity: 0.7;
    }
    to {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
}

/* ==== FOOTER ==== */
.footer-section {
    background-color: #2c2f7b; /* Warna biru sesuai gambar */
    font-size: 15px;
}

.footer-title {
    font-weight: 600;
    position: relative;
}

.footer-line {
    width: 60px;
    height: 3px;
    background-color: #ffc107; /* Garis kuning */
}

.footer-text {
    color: #dcdcdc;
    line-height: 1.6;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-contact i {
    color: #ffc107;
    margin-right: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.social-icons a {
    color: #dcdcdc;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffc107;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #23265f;
    font-size: 14px;
    color: #bdbdbd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-line {
        margin: 0 auto 15px auto;
    }

    .footer-contact i {
        display: block;
        margin-bottom: 5px;
    }

    .social-icons {
        margin-top: 15px;
    }
}

/* ==== AGENDA PENGUMUMAN  ==== */

/* Title */
.section-title-agenda {
    font-weight: 700;
    color: #0d3b66;
}

.title-agenda-underline {
    width: 80px;
    height: 4px;
    background: #f4a100;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Wrapper */
.agenda-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Item */
.agenda-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: auto;
    transition: 0.3s;
    gap: 18px;
    display: flex;
    padding: 18px 22px;
    border-radius: 16px;
}

.agenda-item:last-child {
    margin-bottom: 0;
}

.agenda-item:hover {
    transform: translateY(-4px);
}

/* ICON */
.agenda-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.agenda-icon i {
    color: #fff;
    font-size: 50px;
}

/* Left Border */
.agenda-border {
    width: 10px;
    min-width: 10px;
    border-radius: 20px;
    background: #4f46e5;
}

/* Content */
.agenda-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 15px;
    color: #111827;
}

/* Time */
.agenda-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2563eb;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.agenda-time i {
    font-size: 15px;
}

/* Description */
.agenda-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Hover Effect */
.agenda-item {
    transition: all 0.3s ease;
}

.agenda-item:hover {
    transform: translateY(-10px);
}

/* Responsif

/* Tablet */
@media (max-width: 992px) {
    .section-title h1 {
        font-size: 38px;
    }

    .agenda-wrapper {
        padding: 30px;
    }

    .agenda-content h3 {
        font-size: 22px;
    }

    .agenda-time {
        font-size: 18px;
    }

    .agenda-content p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-title h1 {
        font-size: 28px;
    }

    .agenda-wrapper {
        padding: 20px;
        border-radius: 18px;
    }

    .agenda-item {
        gap: 14px;
        margin-bottom: 30px;
    }

    .agenda-content h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .agenda-time {
        font-size: 15px;
    }

    .agenda-time i {
        font-size: 16px;
    }

    .agenda-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .agenda-border {
        width: 4px;
        min-width: 4px;
    }
}

/* ================ */
/* ==== PROFIL ==== */
/* ================ */

/* UNTUK JUDUL HALAMAN */
.section-title-profil {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-title-profil::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f59e0b;
    margin: 12px auto;
    border-radius: 10px;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 50px;
    font-size: 16px;
}

/* CARD TAMPILAN */
/* Supaya semua kolom dalam 1 row tingginya sama */
.org-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 20px;
}

.org-row > div {
    display: flex;
}

/* CARD UTAMA */
.org-card {
    width: 130%;
    /* max-width: 340px; */
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.org-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.06);
}

/* Avatar konsisten */
.avatar {
    width: 115px;
    height: 115px;
    border-radius: 50%; /* jika ingin dibuat kotak ganti PX */
    object-fit: cover;
    object-position: center 20%;
    display: block;
    margin-bottom: 10px;
    border: 2px solid #0ea5e9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    image-rendering: auto;
}

/* hanya tambahan boleh dihapus */
.org-card:hover .avatar {
    transform: scale(1.05);
}

/* Judul nama di dalam card */
.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
    /* min-height: 54px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* text keterangan jabatan di dalam card */
.card-role {
    font-size: 15px;
    color: #64748b;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
    min-height: 45px;
}

/* SVG overlay */
#orgLines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    /* tambahan */
    z-index: 0;
}

/* card di atas garis */
.org-card {
    position: relative;
    z-index: 2;
}

/* Responsif Tablet */

@media (max-width: 991px) {
    .section-title-profil {
        font-size: 30px;
    }

    .org-card {
        min-height: 260px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }
}

/* Responsif Mobile */

@media (max-width: 768px) {
    .section-title-profil {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .org-card {
        min-height: auto;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .avatar {
        width: 90px;
        height: 90px;
    }

    .card-title {
        font-size: 16px;
        min-height: auto;
    }

    .card-role {
        font-size: 13px;
        min-height: auto;
    }

    #orgLines {
        display: none;
    }
}


/* ================================= */
/* ===== LAYANAN ADMINISTRASI ===== */
/* ================================ */

/* body {
    background: #f5f7fb;
    font-family: "Segoe UI", sans-serif;
} */

/* Breadcrumb */
.custom-breadcrumb a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

.custom-breadcrumb a:hover {
    text-decoration: underline;
}

/* Card */

.service-box-administrasi {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Isi card fleksibel */
.service-box-administrasi p {
    min-height: 48px; /* supaya tinggi teks seragam */
}

/* Hover tetap smooth */
.service-box-administrasi:hover {
    transform: translateY(-6px);
}

.border-blue {
    border-bottom: 5px solid #1e3a8a;
}

.border-blue:hover h5 {
    color: #1e3a8a;
}

/* Icon */
.icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.bg-blue {
    background: #f4b400;
}

/* Title */

.section-title-administrasi {
    font-weight: 600;
    transition: 0.3s;
}

.section-title-administrasi::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f59e0b;
    margin: 10px auto;
    border-radius: 3px;
}
.service-box:hover .section-title-administrasi {
    color: #2563eb;
}

/* Modern Button */
.btn-modern {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Modal */
.custom-modal {
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Button */
.lihat-administrasi-btn {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.lihat-administrasi-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

/* =====  LAYANAN ADMINISTRASI ===== */

/* Header */
.custom-header {
    background: linear-gradient(235deg, #233f66, #3b82f6);
    padding: 24px 30px;
    border: none;
}

.custom-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

/* Table */
.detail-table {
    margin: 0;
}

.detail-table tr {
    border-bottom: 1px solid #eef2f7;
}

.detail-table tr:last-child {
    border-bottom: none;
}

.detail-table td {
    padding: 18px 24px;
    vertical-align: top;
    font-size: 15px;
}

.detail-table .label {
    width: 30%;
    background: #fafbfc;
    color: #111827;
    font-weight: 600;
}

.detail-table .value {
    color: #111827;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-table,
    .detail-table tbody,
    .detail-table tr,
    .detail-table td {
        display: block;
        width: 100%;
    }

    .detail-table tr {
        padding: 10px 0;
    }

    .detail-table td {
        padding: 10px 18px;
    }

    .detail-table .label {
        width: 100%;
        background: transparent;
        padding-bottom: 4px;
        font-size: 13px;
    }

    .detail-table .value {
        padding-top: 0;
        font-size: 15px;
    }

    .custom-header h3 {
        font-size: 20px;
    }
}

/* ================ */
/* ==== BERITA ==== */
/* ================ */

/* body {
    background: #f5f7fb;
    font-family: "Segoe UI", sans-serif;
} */

/* Section Title */

.section-title-berita {
    font-weight: 700;
    font-size: 36px;
    color: #0d3b66;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title-berita::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #f4a100;
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

.section-desc {
    max-width: 700px;
    margin: 10px auto 0;
    color: #64748b;
    font-size: 16px;
}

/* Search */

.search-box-berita {
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.search-box-berita:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Card */

.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
}

/* Image */

.news-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.news-card:hover img {
    transform: scale(1.1);
}
/* Badge */

.badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* Body */

.news-body {
    padding: 20px;
}

.news-meta {
    font-size: 13px;
    color: #64748b;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.news-title {
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
}

.news-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

/* Modern Button */

.btn-read {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

/* Hover effect */

.btn-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
}

/* Active click */

.btn-read:active {
    transform: scale(0.96);
}

/* Button Berita Utama */
.lihat-berita-btn {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.lihat-berita-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

/* Pagination modern */

.pagination .page-link {
    border-radius: 8px;
    margin: 0 4px;
    border: none;
    color: #334155;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pagination .page-item.active .page-link {
    background: #2563eb;
    color: #fff;
}

.pagination .page-link:hover {
    background: #e0e7ff;
    color: #2563eb;
}

/* Responsive */

@media (max-width: 768px) {
    .section-title-berita {
        font-size: 28px;
    }

    .news-img {
        height: 180px;
    }
}

/* ============================ */
/* ===== LAYANAN APLIKASI ===== */
/* ============================ */
.aplikasi-section {
    background-color: #f5f7fb;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.header-box-aplikasi {
    background: #fff;
    border-radius: 12px;
    border-left: 6px solid #1e3a8a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title-aplikasi {
    font-weight: 700;
    color: #0f172a;
}

.subtitle {
    color: #64748b;
    margin-bottom: 0;
}

/* Card */
.app-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    color: inherit;
}

.app-card h5 {
    font-weight: 700;
    /*color: #1e3a8a;*/
    transition: color 0.3s ease;
}

.app-card p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 14px;
}

/* Icon */
.icon-link {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #94a3b8;
    font-size: 18px;
}

/* Hover */
.app-card:hover {
    /*background-color: #eef4ff;*/
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Colored borders */
.border-gold {
    border-bottom: 5px solid gold;
}
.border-purple {
    border-bottom: 5px solid #7c3aed;
}
.border-green {
    border-bottom: 5px solid #16a34a;
}
.border-orange {
    border-bottom: 5px solid #ea580c;
}
.border-red {
    border-bottom: 5px solid #dc2626;
}
.border-teal {
    border-bottom: 5px solid #0d9488;
}

/* Hover title color mengikuti theme card */
.border-gold:hover h5 {
    color: gold;
}
.border-purple:hover h5 {
    color: #7c3aed;
}
.border-green:hover h5 {
    color: #16a34a;
}
.border-orange:hover h5 {
    color: #ea580c;
}
.border-red:hover h5 {
    color: #dc2626;
}
.border-teal:hover h5 {
    color: #0d9488;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-aplikasi {
        font-size: 22px;
    }
}

/* ====================== */
/* ===== PENGUMUMAN ===== */
/* ====================== */

.pengumuman-section {
    background-color: #f3f4f6;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ICON */
.halaman-pengumuman-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon {
    font-size: 28px;
    color: #ffff;
}

.header-box {
    background: #233f66;
    padding: 40px;
    border-radius: 16px;
}

.main-card {
    border-radius: 14px;
}

.section-title {
    font-weight: 700;
    color: #1f2d3d;
}

/* Search */

.search-box-pengumuman {
    max-width: 280px;
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.search-box-pengumuman:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.announcement {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.highlight-pengumuman {
    background: #f5f1d7;
    border: 1px solid #e6d98c;
}

.announcement:hover {
    background: #e8f0fe;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .header-box {
        padding: 25px;
    }

    .header-box h1 {
        font-size: 1.5rem;
    }

    .search-box-pengumuman {
        max-width: 100%;
    }
}

/* PAGINATION  */
#pagination button {
    min-width: 36px;
    border-radius: 8px;
}

#pagination button {
    border-radius: 20px;
    padding: 6px 14px;
    transition: all 0.2s ease;
}

#pagination button:hover {
    transform: translateY(-1px);
}

/* ===================== */
/* ===== STATISTIK ===== */
/* ===================== */
/* body {
    font-family: "Poppins", sans-serif;
    background: #f4f6fb;
} */

.section-title-statistik {
    font-weight: 700;
    color: #1f2d5a;
}

.section-title-statistik::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f59e0b;
    margin: 10px auto;
    border-radius: 3px;
}

/* STAT CARD */
.stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    color: #fff;
}

/* Border Variants */
.border-aqua {
    border-left: 6px solid aqua;
}

.border-chocolate {
    border-left: 6px solid chocolate;
}

.border-gray {
    border-left: 6px solid gray;
}

/* Hover Color Change */
.border-aqua:hover {
    background: aqua;
}

.border-chocolate:hover {
    background: chocolate;
}

.border-gray:hover {
    background: gray;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
}

/* Chart Card */
.chart-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.chart-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

canvas {
    max-height: 350px;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 28px;
    }
}

/* NON ASN */
.nonasn-total {
    background: linear-gradient(135deg, #1f2d5a, #304a91);
    color: white;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(31, 45, 90, 0.25);
}

.nonasn-total span {
    font-size: 20px;
    font-weight: 700;
}

.mini-stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
}

.mini-stat-card:hover {
    transform: translateY(-5px);
    background: #1f2d5a;
    color: white;
}

.mini-stat-card h6 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.mini-stat-card span {
    font-size: 24px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .nonasn-total {
        width: 100%;
        text-align: center;
    }

    .mini-stat-card span {
        font-size: 20px;
    }
}

/* ================== */
/* ===== KONTAK ===== */
/* ================== */

/* body {
    background: #f4f7fb;
    font-family: "Segoe UI", sans-serif;
    color: #1e293b;
} */

/* SECTION */
.contact-section {
    min-height: 100vh;
}

.section-title-kontak {
    font-weight: 700;
    font-size: 36px;
    color: #0d3b66;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title-kontak::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #f4a100;
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

/* CARD */
.contact-card,
.info-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
}

.card-title-kontak {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

/* INPUT */
.custom-input {
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    padding: 14px 16px;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: none !important;
}

.custom-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

/* BUTTON */
.btn-kontak {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-kontak:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: white;
}

/* INFO */
.info-item {
    gap: 18px;
    margin-bottom: 30px;
    align-items: start;
}

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f172a;
}

.info-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* MAP */
.map-box iframe {
    border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title-kontak {
        font-size: 34px;
    }

    .contact-card,
    .info-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-title-kontak {
        font-size: 28px;
    }

    .section-title-kontak::after {
        font-size: 15px;
    }

    .card-title-kontak {
        font-size: 20px;
    }

    .btn-kontak {
        width: 100%;
    }

    .info-item {
        flex-direction: row;
    }
}
