*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

html{
  scroll-behavior: smooth;
}

body{
  background: #0b0f19;
  color: #ffffff;
  line-height: 1.6;
}

a{
  text-decoration: none;
  color: inherit;
}

.navbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap{
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
}

.nav-links{
  display: flex;
  gap: 18px;
  font-size: 15px;
  opacity: 0.9;
}

.nav-links a:hover{
  opacity: 0.7;
}

.hero{
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}

.tag{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}

.hero h1{
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-desc{
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-btns{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  transition: 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}

.btn.primary{
  background: #7c3aed;
  border: 1px solid #7c3aed;
}

.btn.primary:hover{
  background: #6d28d9;
}

.profile-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.profile-card img{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
  margin-bottom: 14px;
}

.profile-card h3{
  font-size: 20px;
  margin-bottom: 6px;
}

.profile-card small{
  opacity: 0.7;
  font-size: 14px;
}

.section{
  max-width: 1100px;
  margin: auto;
  padding: 55px 20px;
}

.section-title{
  font-size: 26px;
  margin-bottom: 12px;
}

.muted{
  opacity: 0.75;
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 650px;
}

.skills-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-pill{
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-box{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.contact-box p{
  opacity: 0.85;
  font-size: 15px;
}

.contact-box a{
  color: #7c3aed;
  font-weight: 600;
}

.contact-box a:hover{
  text-decoration: underline;
}


.footer{
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.7;
  font-size: 14px;
}

@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc{
    margin: auto;
    margin-bottom: 22px;
  }

  .hero-btns{
    justify-content: center;
  }

  .nav-links{
    display: none;
  }
}
