body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5dc; /* Light gray background */
}



.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden; /* Ensure image does not overflow */
}
.container {
    text-align: center;
    background-color: #ccf489; /* Charcoal */
    color: #ffffff;
    padding: 50px;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333; /* Dark gray */
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #555; /* Medium gray */
}

h3 {
    font-size: 18px;
    color: #777; /* Light gray */
    margin-bottom: 10px;
}


.construction-icon {
    font-size: 70px;
}

.logo {
    max-width: 150px;
    margin: 20px 0;
}

.loading-bar {
    width: 100%;
    background-color: #eee; /* Light gray */
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 10px;
}

.loading-progress {
    width: 20%; /* Progress bar width */
    height: 100%;
    background-color: #4285f4; /* Google blue */
    animation: loading 3s linear forwards;
}


/* .loading-text {
    position: absolute;
    top: 65%; /* Position above the loading bar */
    /* left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    /* color: #333; /* Dark gray */
    /* font-size: 14px;
} */ 


@keyframes loading {
    from { width: 0; }
    to { width: 20%; }
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin: 0 15px;
    color: #333; /* Dark gray */
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}

.social-icon.facebook {
    background-color: #3b5998; /* Facebook blue */
}

.social-icon.instagram {
    background-color: #e4405f; /* Instagram pink */
}

.social-icon.linkedin {
    background-color: #0077b5; /* LinkedIn blue */
}

.social-icon.x {
    background-color: #dc3545; /* Red for X */
}

.social-media a:hover {
    transform: scale(1.1);
}
