@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #1BC5BD;
    --accent-color: #3699FF;
    --accent2-color: #ffff;

    --seccond-color: #003B3F;
    --third-color: #D9D9D9;
}

.primary-color {
    color: var(--primary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.accent-color {
    color: var(--accent-color);
}

.accent-bg {
    background-color: var(--accent-color);
}

.accent2-color {
    color: var(--accent2-color);
}

.accent2-bg {
    background-color: var(--accent2-color);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #3699FF;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

/* Header */
#header {
    background-color: var(--primary-color);
    color: var(--accent2-color);
    padding: 4rem 4rem;
    display: flex;
    align-items: center;
}

#header h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

#header p {
    font-weight: 500;
    font-size: 1.5rem;
}

@media only screen and (max-width: 990px) {
    #header h1 {
        font-weight: 600;
        font-size: 2rem;
    }

    #header p {
        font-weight: 400;
        font-size: 1rem;
    }
}

/* Footer */

footer {
    background-color: #014b4a;
    /* Warna hijau tua sesuai gambar */
    color: #fff;
    padding: 40px 20px 10px;
}

footer .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: all 300ms solid;
}

footer #navigasi a:hover::before {
    content: '';
    height: 0;
    border-top: 1px solid var(--accent2-color);
    display: inline-block;
    width: 10px;
    padding-bottom: 5px;
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.social-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #fff;
}

.social-icons a:hover {
    color: #d1d1d1;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.node {
    background: var(--primary-color);
    color: var(--accent2-color);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.node span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

.connector {
    width: 2px;
    background: var(--accent-color);
    margin: -20px auto;
    height: 40px;
}

#floating-button-wa {
    font-size: 35px;
    color: #fff;
    border-color: transparent;
    padding: 0px 11px;
    z-index: 10 !important;
    bottom: 15px;
    right: 10px;
    background-color: #25d366;
    transition: all 300ms ease-out;
}

#floating-button-wa:hover {
    background-color: var(--primary-color);
    /* border-color: black; */
    color: black;
}