*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#000;
  color:white;
  overflow-x:hidden;
}

/* ORB */
.orb{
  position:fixed;
  width:400px;
  height:400px;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.15;
}

.orb1{
  background:white;
  top:-100px;
  left:-100px;
}

.orb2{
  background:white;
  bottom:-100px;
  right:-100px;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

/* HERO */
.hero{
  text-align:center;
  margin-top:80px;
}

.hero img{
  width:110px;
  border-radius:50%;
  box-shadow:0 0 30px rgba(255,255,255,0.3);
}

h1{
  font-size:42px;
  margin-top:20px;
  text-shadow:0 0 10px rgba(255,255,255,0.5);
}

#typing{
  margin-top:10px;
  opacity:0.7;
}

.desc{
  margin-top:15px;
  opacity:0.6;
  max-width:500px;
  margin-inline:auto;
}

/* PROFILE */
.profile{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:20px;
  margin-top:80px;
}

.profile-left{
  background:rgba(255,255,255,0.03);
  padding:20px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  text-align:center;
}

.profile-left img{
  width:80px;
  border-radius:50%;
}

.badge{
  display:inline-block;
  margin-top:10px;
  padding:5px 12px;
  background:rgba(255,255,255,0.1);
  border-radius:20px;
  font-size:12px;
}

.info{
  margin-top:15px;
  font-size:14px;
  opacity:0.8;
}

.profile-right{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
}

.skill{
  background:rgba(255,255,255,0.03);
  padding:15px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.skill:hover{
  box-shadow:0 0 20px rgba(255,255,255,0.2);
}

/* SERVICES */
.services{
  margin-top:80px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
}

.card{
  background:rgba(255,255,255,0.03);
  padding:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(255,255,255,0.2);
}

/* ABOUT */
.about{
  margin-top:80px;
  line-height:1.7;
  opacity:0.85;
}
