  body {
            font-family: 'Montserrat', sans-serif;
            background: #f9f9f9;
        }

        /* Bottom Nav Styling */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: #198754;
            /* Hijau Bootstrap */
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid #145c32;
            z-index: 1050;
        }

        .bottom-nav a {
            flex: 1;
            text-align: center;
            color: white;
            font-size: 14px;
            text-decoration: none;
            padding: 5px 0;
            transition: 0.3s;
        }

        .bottom-nav a i {
            display: block;
            font-size: 18px;
            margin-bottom: 2px;
        }

        .bottom-nav a:hover {
            background: #157347;
            color: #f8f9fa;
        }

        .bottom-nav a span {
            font-size: 12px;
        }

        /* Offcanvas Sidebar */
        .offcanvas {
            max-width: 250px;
        }

        .offcanvas .nav-link {
            color: #198754;
            font-weight: 500;
        }

        .offcanvas .nav-link:hover {
            background: #e9f7ef;
            border-radius: 5px;
        }

        /* Top Bar */
        .top-bar {
            background: #075c6d;
            color: #fff;
            font-size: 14px;
            padding: 6px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar .left span {
            margin-right: 15px;
        }

        .top-bar .right i {
            margin-left: 12px;
            cursor: pointer;
        }

        /* Header */
        .header {
            background: #f8fcff;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .header-left img {
            height: 60px;
            margin-right: 15px;
        }

        .header-left h1 {
            font-size: 20px;
            margin: 0;
            font-weight: bold;
            color: #075c6d;
        }

        .header-left p {
            margin: 0;
            font-size: 14px;
            color: #444;
        }

        /* Typing animation for header */
        .typing-header {
            border-right: .15em solid #075c6d;
            white-space: nowrap;
            font-size: 15px;
            overflow: hidden;
            display: inline-block;
            animation: typing-header 3s steps(30, end) infinite alternate,
                blink .75s step-end infinite;
        }

        @keyframes typing-header {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        /* Typing animation for hero */
        .typing-hero {
            border-right: .15em solid #fff;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: typing-hero 1.5s steps(15, end) infinite alternate,
                blink-hero .75s step-end infinite;
        }

        @keyframes typing-hero {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        @keyframes blink-hero {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: #fff;
            }
        }

        /* Search */
        .search-box {
            position: relative;
            margin-top: 10px;
        }

        .search-box input {
            padding: 8px 30px 8px 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .search-box i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        /* Navbar */
        .navbar-custom {
            background: #0c6d7d;
        }

        .navbar-custom .nav-link {
            color: #fff !important;
            padding: 10px 15px;
        }

        .navbar-custom .nav-link:hover {
            background: #09545f;
        }

        .dropdown-menu {
            background: #0c6d7d;
        }

        .dropdown-menu .dropdown-item {
            color: #fff;
        }

        .dropdown-menu .dropdown-item:hover {
            background: #09545f;
        }

        .navbar-custom .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }

        /* Hero */
        .hero {
            background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: #fff;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero img {
            height: 100px;
        }

        .hero h1 {
            font-weight: bold;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
        }

        .hero p {
            font-size: 18px;
        }

        /* Quick Menu */
        .quick-menu .card {
            min-width: 90px;
            max-width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Footer */
        .footer {
            background: #075c6d;
            color: #fff;
            padding: 40px 0;
        }

        .footer a {
            color: #ffeb3b;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Mobile Bottom Nav */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #075c6d;
            color: #fff;
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1000;
        }

        .bottom-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            text-align: center;
        }

        .bottom-nav i {
            display: block;
            font-size: 18px;
            margin-bottom: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .search-box {
                margin-top: 15px;
                width: 100%;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero img {
                height: 80px;
            }

            nav.navbar-custom {
                display: none;
            }

            /* hide desktop navbar */
            .bottom-nav {
                display: flex;
            }

            /* show mobile bottom nav */
        }

        /* Default: Desktop */
        .top-bar {
            display: flex;
        }

        /* tampil di desktop */
        .bottom-nav {
            display: none;
        }

        /* sembunyi di desktop */

        /* Mobile */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            /* sembunyi di mobile */
            .bottom-nav {
                display: flex;
            }

            /* tampil di mobile */
        }

        .hero {
            background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: #fff;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero img {
            height: 100px;
        }

        .hero h1 {
            font-weight: bold;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
        }

        .hero p {
            font-size: 18px;
        }

        /* Quick Menu */
        .quick-menu a {
            text-decoration: none;
            color: #333;
            transition: 0.3s;
            display: block;
        }

        .quick-menu a:hover {
            transform: scale(1.05);
        }

        .quick-menu img {
            height: 28px;
            margin-bottom: 4px;
        }

        .quick-menu p {
            font-size: 11px;
            margin-bottom: 0;
            margin-top: 2px;
        }

        .quick-menu .card {
            min-width: 90px;
            max-width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Sambutan & Statistik */
        .sambutan {
            background: #388e3c;
            color: #fff;
            border-radius: 12px;
        }

        .statistik {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Info Box */
        .info-box {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .info-box:hover {
            transform: translateY(-5px);
        }

        .info-box img {
            height: 50px;
            margin-bottom: 10px;
        }

        /* Berita */
        .card {
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
        }

        .card:hover {
            transform: scale(1.03);
        }

        .card img {
            height: 300px;
            object-fit: cover;
        }

        /* Perangkat Desa */
       

        /* Footer */
        .footer {
            background: #075c6d;
            color: #fff;
            padding: 40px 0;
        }

        .footer a {
            color: #ffeb3b;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .search-box {
                margin-top: 15px;
                width: 100%;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero img {
                height: 80px;
            }
        }
         .info-box {
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        padding: 2rem;
        text-align: center;
        height: 100%;
        border-radius: 1rem;
        border: 1px solid #f0f0f0;
        background-color: white;
        transition: box-shadow 0.3s ease;
    }
    .info-box:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    .info-box img {
        width: 60px;
        margin-bottom: 1rem;
    }
    .info-box h6 {
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    .table thead th {
        background-color: #00497a;
        color: white;
        text-align: center;
    }
    .table tbody td {
        text-align: center;
        vertical-align: middle;
    }
    .libur {
        background-color: #f8d7da;
        color: #842029;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        display: inline-block;
    }