body {
margin: 0;
font-family: Arial, sans-serif;
background: #0f0f0f;
color: #ffffff;
line-height: 1.6;
}

/* HERO */

.hero {
  padding: 60px 10%;
  display: flex;
  align-items: center;
  gap: 25px;
}

.profile-wrapper {
  flex-shrink: 0;
} 
#profileImage {
  width: 150px;
  height: 200px ;
}
/* SECTIONS */
.section {
padding: 80px 10%;
}

.section h2 {
margin-bottom: 20px;
font-size: 1.8rem;
}

/* CARDS */
.card {
background: #1a1a1a82;
padding: 20px;
border-radius: 10px;
}

/* SKILLS GRID */
.section h2 {
  text-align: center;
}

.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.box {
background: #1a1a1a;
padding: 20px;
border-radius: 10px;
text-align: center;
}

/* PROJECTS */
.project {
background: #1a1a1a;
padding: 20px;
margin-bottom: 15px;
border-radius: 10px;
}

.project a {
color: #4da3ff;
text-decoration: none;
}

/* FOOTER */
footer {
text-align: center;
padding: 40px;
color: #666;
}

/* PROFILE IMAGE */
.profile-pic {
width: 50px;
height: 50px;
border-radius: 10%;
object-fit: cover;
margin-bottom: 20px;
border: 2px solid #333;
}

/* HERO ICONS */
.icons {
margin-top: 20px;
display: flex;
gap: 15px;
}

.icons img {
width: 28px;
height: 28px;
filter: brightness(0.8);
transition: 0.2s;
}

.icons img:hover {
filter: brightness(1.2);
transform: scale(1.1);
}

/* SKILL BOX ICONS */


.box {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.box:hover {
  transform: translateY(-5px);
  background: #222;
}
.box img {
width: 40px;
height: 40px;
}

.box {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  transition: 0.2s ease;
}

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

  max-width: 800px;
  margin: 0 auto;
}