body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

h1 {
    color: #ff6600; /* Warna oranye/konstruksi */
    margin-bottom: 10px;
}

.construction-icon {
    font-size: 80px;
    color: #ff6600; 
    display: block;
    margin: 0 auto 20px;
    /* Menerapkan animasi */
    animation: bounce 2s infinite ease-in-out alternate;
}

/* ------------------- Animasi Ikon (construction-icon) ------------------- */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px); /* Ikon bergerak ke atas 15px */
    }
}


/* ------------------- Animasi Bar Progress ------------------- */
.progress-bar {
    width: 80%;
    height: 15px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px auto 30px;
}

.progress-fill {
    height: 100%;
    width: 0%; /* Mulai dari 0 */
    background-color: #007bff; /* Warna biru */
    /* Menerapkan animasi */
    animation: loading 3s infinite linear;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    100% {
        width: 100%; /* Mengisi hingga 100% dan berulang */
    }
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}