*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    width:100%;
    height:100vh;
    background-image:url("./Images/ChatGPT\ Image\ Jul\ 20\,\ 2026\,\ 08_06_12\ PM.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    color:#fff;
    overflow:hidden;
}

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero{
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    z-index:1;
    padding:20px;
}
.intro{
    font-size:18px;
    letter-spacing:5px;
    color:#8bbdff;
    margin-bottom:15px;
    font-weight:500;
}

.name{
    font-size:90px;
    line-height:90px;
    font-weight:700;
    margin-bottom:20px;
}

.name span{
    color:#8bbdff;
}

.name:hover{
    color:#8bbdff;
    transition:.3s;
}

.name:hover span{
    color:white;
}

.role{
    font-size:28px;
    color:#8bbdff;
    font-weight:500;
    margin-bottom:25px;
}

.role::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#8bbdff;
    margin:12px auto 0;
}

.desc,
.desc2{
    width:650px;
    max-width:90%;
    font-size:18px;
    line-height:30px;
    color:#e0e0e0;
}

.desc{
    margin-bottom:10px;
}

.scroll-btn{
    margin-top:40px;
    padding:14px 34px;
    border:2px solid #8bbdff;
    border-radius:30px;
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.scroll-btn:hover{
    background:#8bbdff;
    color:#111;
}

::selection{
    background:#8bbdff;
    color:#111;
}
