    /* Global Body */
    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        background-color: #f9fafb;
        margin: 0;
        padding: 0;
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

   /* =======================
    HEADING
========================== */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 2rem;
}

/* =======================
    HEADER & LOGO
========================== */
header {
    background-color: white;
    color: #0f172a;
    padding: 0.3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

header .logo-container img {
     height: 80px; /* dari 80px → 50px */
    border-radius: 6px;
    border: 10px solid white;
    background-color: #0f172a;
}

/* =======================
    NAVBAR
========================== */
nav {
    display: flex;
    gap: 0.8rem; /* sedikit lebih kecil dari 1rem */
}

nav a {
    font-size: 16px; /* sebelumnya 20px */
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.6rem 0.8rem; /* sebelumnya 1rem */
}

nav a:hover {
    color: #1d4ed8;
}

nav a.active-link {
    border-bottom: 2px solid #2563eb; /* lebih tipis */
    padding-bottom: 0.4rem;
    color: #2563eb;
}
/* =======================
    CTA BUTTON (Contact)
========================== */
nav a.read-more-btn {
    padding: 0.6rem 1rem;
    /*sebelumnya1rem*/border-radius: 10px;
    background-color: #2563eb;
    color: white;
    font-size: 16px;
    /*sebelumnya20px*/font-weight: 500;
    transition: all 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

nav a.read-more-btn:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* =======================
    DROPDOWN MENU
========================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 6px;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* =======================
    SUBMENU (Nested Dropdown)
========================== */
.submenu-container {
    position: relative;
}

.has-submenu {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.has-submenu:hover {
    background-color: #f2f2f2;
}

.arrow {
    margin-left: 5px;
    font-size: 0.8em;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;       /* arah ke kiri */
    left: auto;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
}


.submenu-container:hover .submenu {
    display: block;
}


    /* Grid */
    .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    /* Card Style */
    .card {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.5rem;
        width: 280px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: 0.3s ease-in-out;
        border: 1px solid #e5e7eb;
    }

    .card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    }

    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .card .name {
        font-size: 1.25rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 0.25rem;
    }

    .card .position {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }

    .description {
        font-size: 0.95rem;
        color: #4b5563;
        margin-bottom: 1rem;
    }

    /* Social Media */
    .socials a {
        margin: 0 5px;
        display: inline-block;
    }

    .socials img {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    .empty-message {
        text-align: center;
        font-size: 1.1rem;
        color: #6b7280;
    }

    /* Blog Detail */
    .blog-detail img {
        width: 100%;
        max-width: 700px;
        height: auto;
        margin: 1.5rem auto;
        border-radius: 8px;
        display: block;
    }

    .blog-detail h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #0f172a;
        text-align: center;
    }

    .blog-detail .content {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        white-space: pre-line;
        margin-top: 1rem;
        text-align: justify;
    }

    /* Back Link */
    .back-link {
        display: inline-block;
        margin-top: 2rem;
        text-align: center;
        color: #1d4ed8;
        text-decoration: none;
        font-weight: 500;
    }

    .back-link:hover {
        text-decoration: underline;
    }

/* ini style untuk form hubungi */
/* Contact Form */
form label {
    margin-top: 1.5rem;
    display: block;
    font-weight: 600;
    color: #374151;
}

form input,
form textarea {
    width: 100%;
    margin-top: 0.5rem;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: border 0.3s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

button[type="submit"] {
    margin-top: 2rem;
    padding: 14px;
    width: 100%;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #2563eb;
}
/* Tambahan buat navbar responsive */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0f172a;
}
/* untuk di tampilan home */
.read-more-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: blue;
    /*Latarbelakangbiru*/color: white;
    /*Teksberwarnaputih*/padding: 10px 20px;
    /*Sedikitpaddingagartombollebihbesar*/border-radius: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 20px;
}

.read-more-btn:hover {
    background-color: darkblue; /* Mengubah warna latar belakang saat dihover */
    transform: scale(1.05); /* Sedikit memperbesar tombol saat di-hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Memberikan efek bayangan saat hover */
}

/* untuk nampilin gambar */.modal {
    display: none; /* Modal disembunyikan secara default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Latar belakang gelap */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.p-4 {
    padding: 1rem;
}

.text-white {
    color: white;
}

.bg-gray-900 {
    background-color: rgba(0, 0, 0, 0.7);
}



.rounded-lg {
    border-radius: 8px;
}

.shadow-lg {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
    
    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #0f172a;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        background-color: #ffffff;
        flex-direction: column;
        width: auto;
        padding: 2rem 1rem;
        text-align: center;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        display: none;
        transition: all 0.3s ease-in-out;
        z-index: 9;
    }
    

    nav.show {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    nav a {
        padding: 0.5rem 0;
        font-size: 20px;
        font-weight: 600;
        color: #1f2937;
        border-bottom: 1px solid #f3f4f6;
        transition: background-color 0.3s ease;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a:hover {
        background-color: #f9fafb;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
}

/* Dropdown & submenu responsif */
.dropdown {
    width: 100%;
    text-align: center;
}

.dropdown-toggle {
    justify-content: center;
    width: 100%;
    display: inline-block;
}

.dropdown-content,
.submenu {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: none;
    display: none;
    padding-left: 1rem;
    background-color: transparent;
}

/* Tampilkan dropdown saat aktif di mobile */
.dropdown.open .dropdown-content {
    display: block;
}

/* Submenu dalam dropdown */
.submenu-container.open .submenu {
    display: block;
}

/* Tombol dropdown aktif di mobile */
.dropdown-toggle::after {
    content: "▼";
    font-size: 12px;
    margin-left: 8px;
}

/* Styling ulang link dalam dropdown */
.dropdown-content a,
.submenu a {
    background-color: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.5rem 0;
    color: #1f2937;
}

/* Aktifkan pointer untuk dropdown */
.dropdown-toggle {
    cursor: pointer;
}


    /* Optional: animasi muncul */
    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Footer */
footer {
    background-color: #0f172a;
    color: white;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    margin-top: 3rem;
}

.footer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    width: 100%;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Kontak Link */
.footer-section a {
    color: #93c5fd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Icon Sosmed */
.footer-section .icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.footer-section .icon-link img {
    width: 18px;
    height: 18px;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 1rem;
}

