.header {
    background-color: var(--black);
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
}

.left-header h1 {
    font-size: 58px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.left-header span {
    color: var(--green);
}

.left-header img {
    width: 93px;
}

.left-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.left-header .BtnResume {
    background-color: var(--green);
    padding: 5px 30px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(153, 204, 51, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-header .BtnResume:hover {
    background-color: var(--white);
    transition: all 0.5s ease;
    box-shadow: 0px 4px 20px rgba(254, 255, 252, 0.5);
}

.imgCircle {
    background-image: url('/assets/headerImage.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 530px;
    height: 650px; /* Larger default height */
    position: relative;
    border-radius: 55px;
    margin: 70px auto 35px;
    box-shadow: 0 8px 6px rgba(240, 237, 237, 0.5);
}

.shapesOne {
    position: absolute;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    background-color: var(--green);
    top: 70px;
    left: -50px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
}

.shapesTwo {
    width: 100px;
    height: 110px;
    background-color: var(--green);
    position: absolute;
    bottom: 10px;
    left: -30px;
    border-radius: 17px;
    rotate: 40deg;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Responsive Image Height */
@media (max-width: 1200px) {
    .imgCircle {
        width: 450px;
        height: 550px; /* Adjusted height for medium screens */
    }
}

@media (max-width: 992px) {
    .imgCircle {
        width: 400px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .imgCircle {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 576px) {
    .imgCircle {
        width: 300px;
        height: 400px;
    }
}
