/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero {
    position: relative;
    min-height: 100vh; /* Ensure hero covers full height of the viewport */
    background: url('images/cloud-engineer.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    text-align: center;
    color: white;
}

.profile-image {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    color: coral;
}

h2 {
    color: rgb(172, 172, 172);
}

h1, h2 {
    margin: 10px 0;
}

/* Social Media Icons */
.social-media {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.social-icon {
    width: 30px;
    margin: 0 30px;
    border-radius: 20%;
}

/* Footer Section */
footer {
    position: absolute;
    bottom: 20px; /* Position footer closer to the bottom */
    width: 100%;
    text-align: center;
    /* color: white; Use white text to blend with the background */
}

footer h3 {
    font-size: 0.7rem;
    font-weight: normal !important;
    margin-bottom: 20px;
    color: white;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.company-logo {
    width: 80px;
    height: auto;
}

/* Ensure body takes up full height */
body, html {
    height: 100%;
}