
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fa;
    color: #071a33;
    line-height: 1.6;
}


.header {
    position: relative;

    width: 100%;
    min-height: 350px;

    padding: 70px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: #071a33;
    color: #ffffff;

    overflow: hidden;
}

.header::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    left: -120px;
    top: -130px;
}

.header::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    right: -150px;
    bottom: -180px;
}


.header h1 {
    position: relative;
    z-index: 2;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(55px, 8vw, 90px);

    font-weight: 400;

    letter-spacing: 4px;

    line-height: 1;

    color: #ffffff;

    margin-bottom: 15px;
}


.header p {
    position: relative;
    z-index: 2;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    color: #cbd8e6;

    letter-spacing: 0.5px;
}

.navbar {
    width: 100%;
    background: #071a33;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #8c6cff;
}

.team-container {
    width: 90%;
    max-width: 1150px;

    margin: 70px auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.team-card {
    position: relative;

    width: 100%;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #dce5ed;

    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(7, 26, 51, 0.08);

    transition: 0.3s ease;

    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(7, 26, 51, 0.15);
}


.team-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #071a33;
}


.profile-image {
    width: 110px;
    height: 110px;

    margin: 5px auto 18px;

    border-radius: 50%;

    overflow: hidden;

    background: #e8eef5;

    border: 4px solid #e8eef5;

    box-shadow:
        0 6px 15px rgba(7, 26, 51, 0.12);
}

.profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


.team-card h2 {
    font-family: "Poppins", sans-serif;

    font-size: 21px;

    font-weight: 700;

    color: #071a33;

    margin-bottom: 3px;
}


.job {
    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 500;

    color: #1769aa;

    margin-bottom: 20px;
}


.button {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 8px;
}


.buttons {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 8px;
}


.btn {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 45px;

    padding: 11px 16px;

    border-radius: 9px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.2px;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.btn::before {
    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    top: 0;
    left: 0;

    background: rgba(255,255,255,0.12);

    transition: width 0.3s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}


.btn.profile {
    background: #071a33;

    color: #ffffff;

    border: 1px solid #071a33;
}

.btn.profile:hover {
    background: #0d3158;

    box-shadow:
        0 8px 20px rgba(7,26,51,0.2);
}


.btn.pos {
    background: #ffffff;

    color: #0b4f83;

    border: 1px solid #b9cede;

    box-shadow:
        0 3px 10px rgba(7,26,51,0.05);
}

.btn.pos:hover {
    background: #eef6fc;

    border-color: #1769aa;

    color: #071a33;
}


.btn.laporan {
    background: #f5f7fa;

    color: #071a33;

    border: 1px solid #d5dee7;
}

.btn.laporan:hover {
    background: #e9f0f6;

    border-color: #9fb3c5;
}


.about {
    padding: 90px 20px;

    background: #ffffff;

    text-align: center;
}

.about .container {
    width: 90%;

    max-width: 800px;

    margin: auto;
}

.about h2 {
    font-family: "Bebas Neue", sans-serif;

    font-size: 52px;

    font-weight: 400;

    letter-spacing: 2px;

    color: #071a33;

    margin-bottom: 15px;
}

.about h2 span {
    color: #1769aa;
}

.about p {
    font-family: "Poppins", sans-serif;

    font-size: 14px;

    color: #64748b;
}


.team {
    padding: 90px 0;

    background: #f5f7fa;
}

.team h2 {
    text-align: center;

    font-family: "Bebas Neue", sans-serif;

    font-size: 52px;

    font-weight: 400;

    letter-spacing: 2px;

    color: #071a33;

    margin-bottom: 35px;
}

.team h2 span {
    color: #1769aa;
}


.service {
    padding: 90px 0;

    background: #ffffff;
}

.service h2 {
    text-align: center;

    font-family: "Bebas Neue", sans-serif;

    font-size: 52px;

    font-weight: 400;

    letter-spacing: 2px;

    color: #071a33;

    margin-bottom: 40px;
}

.service h2 span {
    color: #1769aa;
}

.service-grid {
    width: 90%;

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}




.service-card {
    padding: 30px;

    background: #f5f7fa;

    border: 1px solid #dce5ed;

    border-radius: 14px;

    transition: 0.3s ease;
}

.service-card:hover {
    background: #071a33;

    transform: translateY(-6px);
}

.service-card h3 {
    color: #1769aa;

    font-size: 19px;

    margin-bottom: 10px;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    color: #64748b;

    font-size: 13px;
}

.service-card:hover p {
    color: #d3dfeb;
}


.contact {
    position: relative;

    padding: 100px 20px;

    background: #071a33;

    color: #ffffff;

    text-align: center;

    overflow: hidden;
}

.contact h2 {
    position: relative;

    z-index: 2;

    font-family: "Bebas Neue", sans-serif;

    font-size: 60px;

    font-weight: 400;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.contact h2 span {
    color: #9dd7ff;
}

.contact p {
    position: relative;

    z-index: 2;

    max-width: 600px;

    margin: auto;

    color: #cbd8e6;

    font-size: 14px;
}



.contact button {
    position: relative;

    z-index: 2;

    margin-top: 25px;

    padding: 12px 28px;

    border: none;

    border-radius: 8px;

    background: #ffffff;

    color: #071a33;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact button:hover {
    transform: translateY(-4px);

    background: #eaf4fc;
}



footer {
    padding: 35px 20px;

    text-align: center;

    background: #04101f;

    color: #8296aa;
}

footer h3 {
    font-family: "Bebas Neue", sans-serif;

    color: #ffffff;

    font-size: 27px;

    font-weight: 400;

    letter-spacing: 3px;

    margin-bottom: 5px;
}

footer p {
    font-family: "Poppins", sans-serif;

    font-size: 12px;
}


@media (max-width: 900px) {

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header h1 {
        font-size: 70px;
    }
}


@media (max-width: 600px) {

    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .header {
        min-height: 300px;

        padding: 55px 15px;
    }

    .header h1 {
        font-size: 50px;

        letter-spacing: 2px;

        line-height: 1;
    }

    .header p {
        font-size: 12px;
    }


    
    .team-container {
        width: 90%;

        grid-template-columns: 1fr;

        margin: 45px auto;
    }



    .team-card {
        padding: 30px 22px;
    }


    .profile-image {
        width: 110px;

        height: 110px;

        margin: 5px auto 18px;
    }


    

    .about {
        padding: 70px 20px;
    }

    .about h2 {
        font-size: 45px;
    }



    .team {
        padding: 70px 0;
    }

    .team h2 {
        font-size: 45px;

        margin-bottom: 30px;
    }



    .service {
        padding: 70px 0;
    }

    .service h2 {
        font-size: 45px;
    }

    .service-grid {
        width: 90%;

        grid-template-columns: 1fr;
    }


    

    .contact {
        padding: 75px 20px;
    }

    .contact h2 {
        font-size: 50px;

        line-height: 1;
    }


    footer {
        padding: 30px 15px;
    }
}



@media (max-width: 380px) {

    .header h1 {
        font-size: 43px;
    }

    .team-card h2 {
        font-size: 19px;
    }

    .profile-image {
        width: 100px;

        height: 100px;
    }

    .btn {
        font-size: 12px;

        min-height: 43px;

        padding: 10px;
    }
}