.skills-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.skills-icons i,
.skills-icons img {
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.skills-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.skills-icons i,
.skills-icons img {
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.skills-icons img:hover,
.skills-icons i:hover {
  transform: scale(1.3);
}


.social-icons a {
  text-decoration: none; /* removes underline */
  color: inherit;         /* inherits color from parent, avoids blue */
}

.social-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  margin-right: 20px;
}
.social-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.about-text {
  font-family: 'Rubik', sans-serif;
  word-spacing: 6px;
  line-height: 1.7;
  font-size: 1.1rem;
}


