
/* CyberLawr Professional Portfolio */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
background:#0d1117;
color:#e6edf3;
font-family:Arial,Helvetica,sans-serif;
line-height:1.7;
}
nav{
position:sticky;
top:0;
z-index:1000;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:#161b22;
border-bottom:1px solid #30363d;
backdrop-filter:blur(8px);
}
nav h2{color:#00ff88;font-size:2rem}
nav ul{display:flex;gap:30px;list-style:none}
nav a{color:#fff;text-decoration:none;font-weight:600;transition:.25s}
nav a:hover{color:#00ff88}
.hero{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:70px 8%;
}
.profile-img{
width:250px;height:250px;
border-radius:50%;
object-fit:cover;
border:5px solid #00ff88;
box-shadow:0 0 35px rgba(0,255,136,.25);
margin-bottom:35px;
}
.hero h1{font-size:4.8rem;color:#00ff88;margin-bottom:12px}
.hero h2{font-size:2rem;font-weight:400;margin-bottom:24px}
.hero p{max-width:900px;font-size:1.2rem;color:#c9d1d9}
.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}
.btn,.project-btn{
display:inline-block;
padding:15px 32px;
border-radius:10px;
background:#00ff88;
color:#000;
font-weight:bold;
text-decoration:none;
transition:.25s;
}
.btn:hover,.project-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 25px rgba(0,255,136,.45);
}
section{
max-width:1250px;
margin:auto;
padding:90px 40px;
}
section h2{
font-size:2.4rem;
color:#00ff88;
margin-bottom:35px;
text-align:center;
}
.about-card{
max-width:950px;
margin:auto;
background:#161b22;
border:1px solid #30363d;
border-radius:16px;
padding:40px;
}
.about-card p{margin-bottom:18px}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}
.card{
background:#161b22;
border:1px solid #30363d;
border-radius:16px;
padding:30px;
display:flex;
flex-direction:column;
text-align:center;
transition:.25s;
}
.card:hover{
transform:translateY(-8px);
border-color:#00ff88;
box-shadow:0 0 24px rgba(0,255,136,.2);
}
.card h3{
color:#00ff88;
margin-bottom:15px;
font-size:1.5rem;
}
.card p{
color:#c9d1d9;
flex:1;
}
.project-btn{margin-top:24px;align-self:center}
#contact{
text-align:center;
}
#contact a{
color:#00ff88;
text-decoration:none;
font-weight:bold;
}
#contact a:hover{text-decoration:underline}
@media(max-width:768px){
nav{flex-direction:column;gap:18px;padding:18px}
nav ul{flex-wrap:wrap;justify-content:center;gap:18px}
.hero h1{font-size:3rem}
.hero h2{font-size:1.4rem}
.hero p{font-size:1rem}
.profile-img{width:190px;height:190px}
section{padding:70px 20px}
section h2{font-size:2rem}
.cards{grid-template-columns:1fr}
.about-card{padding:24px}
}

/* ==========================================
   LOGO
========================================== */

.logo{
    color:#00ff88;
    text-decoration:none;
    transition:.3s;
}

.logo:hover{
    color:#ffffff;
}


/* ==========================================
   FOOTER
========================================== */

footer{
    background:#161b22;
    border-top:1px solid #2d333b;
    text-align:center;
    padding:40px 20px;
    margin-top:80px;
}

footer h3{
    color:#00ff88;
    font-size:28px;
    margin-bottom:12px;
}

footer p{
    color:#d0d0d0;
    margin:8px 0;
    font-size:16px;
}

footer a{
    color:#00ff88;
    text-decoration:none;
    font-weight:bold;
    margin:0 12px;
    transition:.3s;
}

footer a:hover{
    color:#ffffff;
}

footer .copyright{
    margin-top:25px;
    color:#8b949e;
    font-size:14px;
}