#Header {
    width: 100%;
    min-height: 85vh;
    object-fit: cover;
    position: relative;
    background-size: cover;
    background-image: url("../Success Story/new photos/front-desk.webp");
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.overlay_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    font-family: var(--normal_fonts);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    text-align: center;

}

.header_content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.header_content p {
    font-size: 1.125rem;
    color: white;
    margin: 1rem 0;
    /* max-width: 70%; */
}

.header_content a {
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    background: var(--btn_bg);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.2s linear;
}

.header_content a:hover {
    background: black;
    transform: scale(1.03);
}

@media  screen and (max-width:1025px) {
    #Header .header_content h1{
        font-size: 3rem;
    }
    
}

@media screen and (max-width:768px) {
     #Header .header_content h1{
        font-size: 2.3rem;
    }
    #Header .header_content p{
        font-size: .95rem;
    }
}

@media screen and (max-width:440px) {
     #Header .header_content h1{
        font-size: 1.5rem;
    }
    #Header .header_content p{
        font-size: .875rem;
    }

    #Header .header_content a{
        padding: .5rem 1rem;
        font-size: .875rem;
    }
    
}