
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    background: url('./1732875056555\ 1.png') center/cover no-repeat; 
    position: relative;
}

body::before {
    content: '';
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}


.construction-page {
    width: 100%;
    text-align: center;
    z-index: 2;
}

header .line-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

header .line {
    width: 3%;
    height: 2px;
    background: #fff;
    margin-top: -90px 10px 0px 10px;
}

header h1 {
    margin-top: -90px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

main h2 {
    font-size: 96px;
    line-height: 90px;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}

.progress-bar-container {
    position: relative;
    width: 60%;
    margin: 0 auto 2rem auto;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #343434;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 50%;
    height: 100%;
    background: white;
    transition: width 0.5s ease-in-out;
}

/* .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
} */

.progress-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #fff; 
}
footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

footer .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

footer .social-icons a:hover {
    background: #007bff;
    color: #fff;
}