bodynew {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.hero {
    background-image: url('/img/img1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.overlaynew {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 38, 38, 0.6);
}

.hero-content {
    display: flex;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.text-container {
    max-width: 600px;
}

h1new {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
}

pade {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
    color: white;
}

.btn {
    background-color: #ff9800;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e67e22;
}

.profile-container {
    text-align: center;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    h1new {
        font-size: 2.5em;
    }

    .profile-pic {
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
}
