        /* Dashboard*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: #2c3e50;
        }

        nav {
            background-color: #1a252f;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 50px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            position: relative;
        }

        nav a {
            color: #f8f9fa;
            text-decoration: none;
            font-size: 16px;
            padding: 10px 15px;
            border-radius: 5px;
            transition: 0.3s;
            display: block;
        }

        nav a:hover {
            background-color: #e74c3c;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #ffffff;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            top: 100%;
            left: 0;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: #1a252f;
            padding: 12px;
            display: block;
            transition: 0.3s;
        }

        .dropdown-content a:hover {
            background-color: #e74c3c;
            color: #ffffff;
        }

        header {
            background: linear-gradient(to right, #1a252f, #34495e);
            color: white;
            padding: 10px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;

        }

        .container {
            max-width: 1200;            
            margin: 0 auto;
            padding: 20px;
            text-align: left;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 10px;
            margin-top: 20px;
        }

        .card {
            background: rgba(255, 255, 255, 0.85);
            /* Transparan agar menyatu dengan background */
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            /* Efek kabut tipis */
            transition: transform 0.3s ease-in-out;
        }

        /* Efek Hover Card */
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.3);
        }

        /* Heading Styling */

        .card h2 {
            font-size: 24px;
            color: #2c3e50;
            text-align: center;
            font-weight: bold;
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #3498db, #2c3e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Efek garis bawah animasi saat hover */
        .card h2::after {
            content: "";
            width: 80px;
            height: 4px;
            background: #3498db;
            position: absolute;
            left: 50%;
            bottom: -8px;
            transform: translateX(-50%);
            border-radius: 2px;
            transition: width 0.3s ease-in-out;
        }

        .card h2:hover::after {
            width: 120px;
        }

        /* Styling Subjudul */
        .card h3 {
            font-size: 17px;
            font-weight: bold;
            color: #2d572c;
            /* Hijau daun */
            transition: all 0.3s ease-in-out;
            display: inline-block;
            padding: 5px 12px;
            border-radius: 8px;
            background: linear-gradient(90deg, rgba(46, 204, 113, 0.3), rgba(39, 174, 96, 0.3));
        }

        /* Hover untuk h3 */
        .card h3:hover {
            background: linear-gradient(90deg, rgba(39, 174, 96, 0.6), rgba(35, 155, 86, 0.6));
            transform: scale(1.05);
            box-shadow: 0px 5px 15px rgba(39, 174, 96, 0.4);
        }

        /* 📖 Paragraf dengan Efek Tropis */
        .card p {
            font-size: 17px;
            color: #3e2723;
            /* Warna tanah basah */
            line-height: 1.8;
            text-align: justify;
            opacity: 0;
            transform: translateY(15px);
            animation: fadeInUp 0.8s ease-in-out forwards;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
        }

        /* Efek Hover untuk Paragraf */
        .card p:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* 🌟 Animasi Fade-in */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tambahan untuk interaksi */
        .card p:hover {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        }





        /* Styling List */
        .card ul {
            padding-left: 0;
            list-style: none;
            /* Hilangkan default bullet */
            counter-reset: list-counter;
            /* Inisialisasi counter */
        }

        .card ul li {
            font-size: 16px;
            /* Ukuran teks lebih besar */
            color: #2c3e50;
            margin-bottom: 12px;
            padding: 14px 18px;
            background: linear-gradient(135deg, #f8f9fa, #eef1f5);
            /* Efek gradasi lembut */
            border-left: 6px solid #3498db;
            /* Garis biru tegas di kiri */
            border-radius: 8px;
            /* Sudut membulat */
            display: flex;
            align-items: center;
            box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
            /* Efek bayangan */
            transition: all 0.3s ease-in-out;
            position: relative;
            counter-increment: list-counter;
            /* Tambahkan counter */
        }

        /* Tambahkan nomor dalam lingkaran di depan list */
        .card ul li::before {
            content: counter(list-counter);
            /* Nomor otomatis */
            font-size: 11px;
            font-weight: bold;
            color: white;
            background: #3498db;
            /* Warna biru untuk lingkaran */
            border-radius: 80%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
        }

        /* Hover Effect */
        .card ul li:hover {
            background: linear-gradient(135deg, #e3f2fd, #d6eaf8);
            /* Warna lebih cerah saat hover */
            transform: translateX(8px);
            /* Geser sedikit ke kanan */
            box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.15);
            /* Bayangan lebih dalam */
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .grid {
                flex-direction: column;
            }

            .card {
                padding: 20px;
                max-width: 100%;
            }
        }

        /* 🍃 Kontak - Tampilan Lebih Segar & Natural */
        .kontak {
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.8), rgba(39, 174, 96, 0.9));
            /* Gradasi hijau tropis */
            border-radius: 12px;
            box-shadow: 0px 5px 15px rgba(0, 100, 0, 0.2);
            /* Bayangan hijau lembut */
            text-align: center;
            color: white;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* 🌿 Efek Hover untuk Kontak */
        .kontak:hover {
            transform: scale(1.03);
            box-shadow: 0px 8px 20px rgba(0, 100, 0, 0.3);
        }

        /* 📧 Teks dalam kontak */
        .kontak h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .kontak p {
            font-size: 17px;
            line-height: 1.6;
        }

        /* 💡 Footer dengan Efek Gradasi & Lembut */
        footer {
            background: linear-gradient(180deg, #1a252f, #2c3e50);
            /* Gradasi gelap tropis */
            color: white;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
            border-radius: 20px 20px 0 0;
            box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
        }

        /* ✨ Efek Hover pada Footer */
        footer:hover {
            background: linear-gradient(180deg, #2c3e50, #34495e);
            transition: 0.3s ease-in-out;
        }

        /* 🌍 Media Query untuk Responsif */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                padding: 15px;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .kontak {
                padding: 20px;
            }

            footer {
                padding: 20px;
            }
        }


        .btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease-in-out;
        }

        .btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            transition: transform 0.5s ease-out;
        }

        .btn:active::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .btn:hover {
            background-color: #c0392b;
            transform: scale(1.05);
        }

        /* Title */
        .title {
            margin: 0;
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            /* Warna putih solid */
            position: relative;
            display: inline-block;
            text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
            /* Sedikit glow pada teks */
        }

        /* Efek cahaya matahari di belakang teks */
        .title::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 230, 80, 0.9) 10%, rgba(255, 150, 0, 0.5) 40%, transparent 70%);
            transform: translate(-50%, -50%);
            z-index: -1;
            opacity: 0.9;
            filter: blur(40px);
            /* Cahaya lebih soft tapi tetap fokus */
            transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
        }

        /* Efek tambahan saat hover */
        .title:hover::before {
            opacity: 1;
            /* Meningkatkan intensitas cahaya saat hover */
            filter: blur(60px);
        }

        /* Logo */
        .logo {
            width: 80px;
            /* Ukuran logo */
            height: auto;
            /* Menjaga aspek rasio */
            background-color: white;
            /* Latar belakang putih */
            padding: 8px;
            /* Tambahkan padding agar ada jarak antara logo dan background */
            border-radius: 50%;
            /* Agar tetap berbentuk bulat */
            box-shadow: 0px 0px 15px rgba(255, 200, 0, 0.6);
            /* Glow emas */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* Efek hover agar lebih interaktif */
        .logo:hover {
            transform: scale(1.1);
            box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.8);
            /* Glow lebih tajam saat hover */
        }

        .text-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            /* Agar teks tetap rata kiri */
        }

        .tagline-container {
            display: flex;
            flex-direction: column;
            margin-top: 5px;
            /* Jarak ke teks utama */
        }

        .tagline {
            font-size: 14px;
            font-weight: normal;
            font-style: italic;
            color: #f1c40f;
            /* Warna emas */
            font-family: 'Dancing Script', cursive;
            /* Font tulisan bersambung */
            text-shadow: 0px 0px 6px rgba(241, 196, 15, 0.6);
        }

        .header-tagline {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Agar teks dan tagline berada di tengah */
        }



        /* Wrapper teks agar tagline turun ke bawah */
        .text-wrapper {
            display: flex;
            flex-direction: column;
            /* Memastikan tagline ada di bawah title */
        }

        /* Styling untuk Section Selamat Datang */
        .welcome-section {
            text-align: center;
            /* Teks rata tengah */
            margin-top: 20px;
            /* Jarak dari header */
            padding: 15px;
            /* Ruang dalam agar tidak terlalu padat */
            max-width: 800px;
            /* Batasi lebar teks agar mudah dibaca */
            margin-left: auto;
            margin-right: auto;
        }

        /* Styling untuk Judul */
        .welcome-section h2 {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            /* Warna gelap untuk keterbacaan */
            margin-bottom: 10px;
        }

        /* Styling untuk Teks */
        .welcome-text {
            font-size: 16px;
            color: #555;
            /* Warna abu gelap agar nyaman dibaca */
            line-height: 1.6;
            /* Jarak antar baris agar lebih rapi */
            text-align: justify;
            /* Teks rata kiri-kanan */
        }

        /* Gambar*/


        .hero-image {
            width: 20%;
            max-height: 150px;
            /* Ukuran tidak terlalu besar */
            object-fit: cover;
            /* Menyesuaikan ukuran tanpa merusak proporsi */
            border-radius: 12px;
            /* Membuat tampilan lebih elegan */
            position: center;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            /* Bayangan lembut */
        }

        /* Overlay pada hero-image agar lebih profesional */
        .hero-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            /* Efek gelap semi-transparan */
            border-radius: 12px;
        }

        /* Responsiveness untuk mobile */
        @media (max-width: 768px) {
            .hero-image {
                max-height: 250px;
                border-radius: 8px;
            }

            .hero-image {
                height: 50px;
            }
        }

        .image-spi {
            width: 100%;
            max-width: 80px;
            /* Ukuran gambar tidak terlalu besar */
            height: auto;
            border-radius: 12px;
            box-shadow: 0px 6px 15px rgba(3, 1, 1, 0.2);
            transition: transform 0.3s ease-in-out;
        }

        /* Efek hover untuk gambar */
        .image-spi:hover {
            transform: scale(1.03);
        }

        /* Responsiveness untuk layar kecil */
        @media (max-width: 768px) {
            .grid {
                flex-direction: column;
                text-align: center;
            }

            .image-spi {
                max-width: 100%;
            }
        }


        /* Container utama */
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }

        /* Kartu berita */
        .news-card {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .news-card:hover {
            transform: translateY(-5px);
            /* Efek melayang saat hover */
        }

        /* Thumbnail berita */
        .news-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* Konten berita */
        .news-content {
            padding: 15px;
        }

        .news-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #333;
        }

        .news-content p {
            font-size: 14px;
            color: #666;
        }

        /* Tombol baca selengkapnya */
        .btn-readmore {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 12px;
            background: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 14px;
            transition: background 0.3s ease-in-out;
        }

        .btn-readmore:hover {
            background: #0056b3;
        }

        /* Responsif untuk layar kecil */
        @media (max-width: 768px) {
            .news-thumbnail {
                height: 150px;
            }

            .news-content h3 {
                font-size: 16px;
            }

            .news-content p {
                font-size: 13px;
            }

            .btn-readmore {
                font-size: 12px;
                padding: 6px 10px;
            }
        }

        /* PKPT tael*/
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th,
        td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: #007BFF;
            color: white;
        }

        /*wbs*/
        #wbs-container {
            display: none;
            margin-top: 10px;
            width: 100%;
            height: 80vh;
            /* Gunakan tinggi penuh */
            display: flex;
            justify-content: center;
            /* Pusatkan iframe jika perlu */
            align-items: flex-start;
            /* Mulai dari atas */
        }

        #wbs-frame {
            width: 100%;
            min-height: 800px;
            /* Pastikan tinggi cukup */
            border: none;
        }

        