* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.header {
    position: relative;
    height: 50vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
   /*     transform: scale(0.9);  Added this line for zoom out effect */
}

.logo {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: auto;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Changed from center to flex-start */
    justify-content: center;
    padding: 20px 0 20px 100px;  /* Added specific left padding */
    background-color: white;
}


h1 {
    font-size: 80px;
    margin: 0;
    color: black;
    font-weight: normal;
}

p {
    font-size: 32px;
    margin: 10px 0;
    color: black;
}

.contact-btn {
    background-color: #D93025;
    color: white;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 32px;
    text-transform: lowercase;
    display: block;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-btn {
    background-color: #D93025;
    color: white;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 32px;
    text-transform: lowercase;
    display: block;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-btn::before {
    content: "";
    background: #fff;
    height: 200px;
    left: -86px;
    opacity: 0.2;
    position: absolute;
    top: -64px;
    transform: rotate(35deg);
    transition: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    pointer-events: none;
    z-index: 1;
}

.contact-btn:hover {
    background-color: rgba(217, 48, 37, 0.1);
    color: #D93025;
    transform: translateY(-2px);
}

.contact-btn:hover::before {
    left: 130%;
}

@media (min-width: 1024px) {
    .header {
        height: 60vh;
    }
}
