    /* 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: #ffffff;
    color: #0f172a;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

header .logo-container {
    display: flex;
    align-items: center;
    z-index: 1001;
}

header .logo-container img {
    height: 65px;
    transition: transform 0.3s ease;
}

header .logo-container img:hover {
    transform: scale(1.05);
}

/* =======================
    NAVBAR
========================== */
nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a {
    position: relative;
    font-size: 15px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Hover effect dengan garis bawah animasi */
nav a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 70%;
}

nav a:hover {
    color: #2563eb;
    background-color: #eff6ff;
}

nav a.active-link {
    color: #2563eb;
    background-color: #dbeafe;
    font-weight: 600;
}

nav a.active-link::before {
    width: 0;
}
/* =======================
    CTA BUTTON (Contact)
========================== */
nav a.read-more-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    margin-left: 0.5rem;
}

nav a.read-more-btn::before {
    display: none;
}

nav a.read-more-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

nav a.read-more-btn:active {
    transform: translateY(0);
}


/* =======================
    DROPDOWN MENU
========================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: #2563eb;
    background-color: #eff6ff;
}

.dropdown-toggle.active-link {
    color: #2563eb;
    background-color: #dbeafe;
    font-weight: 600;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 9px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown.open .dropdown-toggle::after,
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background-color: #ffffff;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 8px 0;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.dropdown.open .dropdown-content,
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
    padding-left: 24px;
}

.dropdown-content a.active-link {
    background-color: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    border-left-color: #2563eb;
}

/* =======================
    SUBMENU (Nested Dropdown)
========================== */

.has-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.has-submenu:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
    padding-left: 24px;
}

.arrow {
    margin-left: auto;
    font-size: 10px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.submenu-container:hover .arrow {
    transform: rotate(180deg) translateX(3px);
}

.submenu {
    display: none;
    position: absolute;
    top: -8px;
    right: 100%;
    margin-right: 8px;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.submenu-container:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.submenu a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
    padding-left: 24px;
}

.submenu a.active-link {
    background-color: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    border-left-color: #2563eb;
}

/* =======================
    MENU TOGGLE (Mobile)
========================== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0f172a;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

.menu-toggle:active {
    transform: scale(0.95);
}


/* =======================
    SUBMENU (Nested Dropdown)
========================== */
.submenu-container {
    position: relative;
}


    /* 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;
}
/* 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;
    color: white;
    padding: 10px 20px;
    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);
}


/* =======================
    RESPONSIVE STYLES
========================== */
@media (max-width: 1024px) {
    header {
        padding: 0.8rem 1.5rem;
    }
    
    nav {
        gap: 0.3rem;
    }
    
    nav a {
        font-size: 14px;
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
        flex-wrap: nowrap;
    }

    header .logo-container img {
        height: 55px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 0 2rem;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    nav.show {
        right: 0;
    }

    /* Overlay ketika menu terbuka */
    nav.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    nav a {
        padding: 1rem 1.5rem;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid #e2e8f0;
        margin: 0;
    }

    nav a::before {
        display: none;
    }

    nav a:hover {
        background-color: #f1f5f9;
        padding-left: 2rem;
    }

    nav a.read-more-btn {
        margin: 1rem 1.5rem;
        padding: 1rem;
        border-radius: 12px;
        text-align: center;
        border-bottom: none;
    }

    nav a.read-more-btn:hover {
        padding-left: 1rem;
    }

    /* Dropdown Mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: space-between;
        border-bottom: 1px solid #e2e8f0;
    }

    .dropdown-toggle::after {
        font-size: 12px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: #f8fafc;
        min-width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        transform: none;
    }

    .dropdown.open .dropdown-content {
        max-height: 600px;
        border-bottom: 1px solid #e2e8f0;
        opacity: 1;
    }

    .dropdown-content a {
        padding: 0.9rem 2rem;
        border-bottom: 1px solid #e2e8f0;
        border-left: none;
    }

    .dropdown-content a:hover {
        padding-left: 2.5rem;
    }

    /* Submenu Mobile */
    .submenu-container {
        width: 100%;
    }

    .has-submenu {
        padding: 0.9rem 2rem;
        border-bottom: 1px solid #e2e8f0;
        border-left: none;
    }

    .has-submenu .arrow {
        transform: rotate(90deg);
    }

    .submenu-container.open .has-submenu .arrow {
        transform: rotate(270deg);
    }

    .has-submenu:hover {
        padding-left: 2.5rem;
    }

    .submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: #f1f5f9;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        transform: none;
    }

    .submenu-container.open .submenu {
        max-height: 400px;
        opacity: 1;
    }

    .submenu a {
        padding: 0.9rem 2.5rem;
        border-bottom: 1px solid #e2e8f0;
        border-left: none;
    }

    .submenu a:hover {
        padding-left: 3rem;
    }

    .submenu a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    nav {
        width: 90%;
        max-width: 280px;
    }

    header .logo-container img {
        height: 50px;
    }
}