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

body{
  background: linear-gradient(to bottom right,#ccc3eb,#ffbdac,#ffe087);
  color:#333;
  transition:0.3s;
}

.dark{
  background:#1f2937;
  color:lime;
}

.navbar{
  display:flex;
  justify-content:space-between;
  padding:15px 30px;
}

.hero{
  text-align:center;
  padding:100px 20px;
}

.profile-pic{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.primary-btn{
  margin-top:20px;
  padding:10px 25px;
  border:none;
  border-radius:30px;
  cursor:pointer;
}

section{
  padding:80px 20px;
  text-align:center;
}

.skill{
  max-width:400px;
  margin:20px auto;
  text-align:left;
}

.bar{
  height:12px;
  background:#ddd;
  border-radius:20px;
  overflow:hidden;
}

.fill{
  height:100%;
  width:0;
  background:#90dbf4;
  transition:1.5s;
}

.gallery{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.gallery img{
  width:250px;
  border-radius:15px;
  cursor:pointer;
  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.05);
}

.info-card{
  background:;

  padding:25px;

  border-radius:20px;

  max-width:350px;

  margin:auto;

  box-shadow:0 10px 20px #555555;
}

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
}

.modal img{
  max-width:80%;
  max-height:80%;
}

#closeModal{
  position:absolute;
  top:20px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
 
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
.timeline{

  max-width:600px;

  margin:40px auto;

  text-align:left;

}

.timeline-item{

  background:white;

  padding:20px;

  margin-bottom:20px;

  border-radius:15px;

  box-shadow:0 8px 20px rgba(0,0,0,0.08);

}
footer{text-align:center;padding:30px;opacity:.6;}

@media(max-width:600px){

  .glow{font-size:2.2rem;}