html, body {
    height: 100%;
    margin: 0;
}

.home-hero {
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Text content on the left */
.text-section {
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.text-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.text-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}


/* Container that holds content in the center */
.container {
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    height: 100%;
}

/* Content block containing your text and progress bar */
.content {
    text-align: center; /* Optional: centers text within content */
}

.progressbar-center {
    
}

/* Styling for the footer at the bottom */
.footer {
    position: fixed; /* Fixed to the bottom of the page */
    left: 50%;
    transform: translateX(-50%); /* Center it horizontally */
    bottom: 0px; /* Adjust this value to control distance from bottom */
    width: 100%; /* Ensure it spans the entire width */
    text-align: center; /* Center text in footer */
    padding: 10px 0; /* Padding for spacing inside footer */
}