.header-section {
    position: relative;
    background: white;
    color: #081529;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /* Optional: Adds rounded corners for a softer look */
    z-index: 10;
    overflow: hidden; /* Ensures the fade effect is contained within the section */
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: -1;
}
/* Styling for the header text */
.header-text {
    font-size: 2rem;
	color: #081529;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 2s ease, transform 2s ease;
}

/* Trigger fade-in and raise-up effect */
.fade-raise {
    opacity: 1;
    transform: translateY(0); /* Move to its original position */
}