*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI',sans-serif;
    background: #fff;
    color: #0a0a0a;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a0a0a;
    z-index: 1000;
}

.logo{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav-links{
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover{
    color: #7F77DD;
}

#home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 5rem 10%;
    gap: 2rem;
}


.home-content{
    display:flex;
    flex-direction: column;
    gap: 3rem;
}


.home-img{
    flex: 1;
    display: flex;
    justify-content: center;
}

.home-img img{
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: cover;

}

.home-p {
    color: black;
    background: rgb(128, 128, 128,0.124);
    display: inline-block;
    border-radius: 25px;
    padding: 5px 10px;
    margin-bottom: 30px;
}


h1{
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3{
    display: block;
    font-size: 1.17em;
    unicode-bidi: isolate;
    margin-bottom: 10px;
}

.info-p{
    color: #222;
    font-family: "Roboto",sans-serif;
    padding-bottom:10px ;
}

.info-p2{
    display: flex;
    gap: 1rem;
    color: #2c2c2c;
    padding-bottom: 10px;
}

.btnn{
    display: flex;
    gap: 1rem;
    padding-bottom: 10px;
}

.btn-home{
    background-color: #0a0a0a;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    cursor: pointer;
}

.btn-contact{
    background-color: transparent;
    border: 2px solid #0a0a0a;
    border-radius: 10px;
    padding: 10px 10px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-contact:hover{
    background-color: #0a0a0a;
    color: rgb(255, 255, 255);
}


#about{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem 2rem;
    align-items: center;
}
.about-img img{
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.about-text h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #7F77DD;
}
.about-text p{
    color: #888;
    line-height: 1.8;
    margin-bottom: .75rem;
}
#skills{
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}
.skills-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}
.skill-card{
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 500;
    transition: transform .2s, background .2s;
}
.skill-card:hover{
    transform: scale(1.05);
    background: #7F77DD;
}