* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Marcellus", serif;

   
    align-items: center;
    justify-content: center;

}
.next-button{
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}
.next-button .profile-badge a{
    color:white;
    text-decoration: none;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 200px 100px 0;
    gap: 0px;
     /* min-height: 100vh; */
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
}

.about-content p {
    font-size: 0.8rem;
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.underline {
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin-top: 10px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

/* ✅ Responsive Design for Mobile */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 0px;
    }

    .about-content h1 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1rem;
        margin: 0 auto 20px;
    }

    .underline {
        margin: 10px auto 30px;
    }

    .about-image img {
        max-width: 300px;
        border-radius: 50%;
    }
}

/* page */

.profile-container {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    padding: 40px;
    /* padding-top: 110px; */
    gap: 60px;
    height: 100vh;

}

.profile-content {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}
.profile-content .profile-badge a{
    color:white;
    text-decoration: none;
}
.profile-content h1 {
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 40px;

    font-family: "Cormorant Garamond", serif;
}

.profile-badge {
    display: inline-block;
    padding: 12px 28px;
    border: 0.1px solid #4b4a4a;
    border-radius: 50px;
    font-size: 0.75rem;
    
    letter-spacing: 0.7px;
    white-space: nowrap;
}

.profile-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    min-width: 250px;
}

.profile-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
}

.profile-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #212121;
    border-radius: 50%;
    transform: skewX(-10deg) scaleY(1.2);
    z-index: 1;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    transform: skewX(-10deg) scaleY(1.2);
    z-index: 2;
}

.profile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: skewX(10deg) scaleY(0.83) scale(1.3);
}

/* Tablets */
@media (max-width: 968px) {
    body {
        padding: 30px 15px;
    }

    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0;
    }

    h1 {
        margin-bottom: 25px;
    }

    .profile-badge {
        margin: 0 auto;
    }

    .profile-image-container {
        max-width: 350px;
    }

    .profile-wrapper {
        max-width: 300px;
        aspect-ratio: 1/1;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .profile-content h1 {
        font-size: 4.8rem;
        line-height: 1.2;
    }

    .profile-badge {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .profile-wrapper {
        max-width: 240px;
        aspect-ratio: 1/1;
    }

    /* Keep the skew & shape on mobile */
    .profile-bg,
    .profile-image {
        transform: skewX(-10deg) scaleY(1.2);
    }

    .profile-image img {
        transform: skewX(10deg) scaleY(0.83) scale(1.3);
    }
}