body{
background-color: #464646;
color: rgb(255, 255, 255);
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px;
background: #2c2c2c;
backdrop-filter: blur(10px);
}
.hero{
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(135deg, #575757, #646464) ;
}
.hero-box{
background: rgba(255, 245, 245, 0.068);
padding: 50px;
border-radius: 15px;
text-align:center;
backdrop-filter:blur(10px);
}
.hero-img{
margin-top: 25px;
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 50%;
border: 4px solid#000000;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about{
background: #000000;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.links{
margin-top: 30px;
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.links a{
padding: 12px 25px;
border-radius: 30px;
background: transparent;
border: 2px solid #666666;
color: #777777;
text-decoration: none;
font-weight: 500;
transition:all 0.3 ease;
}
.links a:hover{
background: #000000;
color: #979797;
transform: translateY(-5px);
}
a {
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
}
a:hover {
  color: #0D7CFF;
  text-shadow: 0 0 10px #3562df, 0 0 20px #0D7CFF, 0 0 30px #0D7CFF, 0 0 40px #0D7CFF;
}
.hire-btn:hover{
  background: white;
}
.hire-btn{
  display: inline-block;
  margin-top: 20%;
  padding: 12px 30px;
  background: #00f2fe;
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}
.popular{
  border: 20px solid #00f2fe;
}
.work-hero{
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(135deg, #494949, #6f7a7a);
}
.work-hero h2{
  font-size: 42px;
  margin-bottom: 10px;
}
.pricing{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.price{
  font-size: 32px;
  margin: 15px 0;
}
.about-images {
margin-top: 40px;
display: flex;
gap: 25px;
justify-content: center;
flex-wrap: wrap;
}
.about-images img{
  width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}
.about-images img:hover{
  transform: translateY(-8px);
}