body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: #0ff; /* neon blue text fallback */
  position: relative;
  overflow-x: hidden;
  background: white;
  background-image: radial-gradient(black 3px, transparent 0);
  background-size: 40px 40px;
  background-position: -19px -19px;
}
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  background: rgb(23, 23, 23);
  color: #fff;
  box-shadow: 0 18px 200px rgba(46, 46, 46, 0.5);
}
header h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 800;
}
header p {
  font-size: 1.4rem;
  opacity: 0.9;
  color: #fff;
}
section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem;
  background: #f0f0f0;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(46, 46, 46, 0.5);
  color: #006064;
}
h2 {
  color: rgb(23, 23, 23);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  border-left: 5px solid #00b8d4;
  padding-left: 1rem;
}
p {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #004d40;
}
.interests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.interest {
  text-align: center;
}
.interest img {
  width: 70px;
  height: 70px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px #00e5ff);
}
.interest p {
  font-weight: 600;
  color: #0097a7;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip below the element */
  position: absolute;
  top: 125%; /* Place below the link */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  /* Fade in transition */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.icon-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* space between icons */
  justify-content: center; /* optional for alignment */
  align-items: center;
}

.spin {
  animation: spin 2s linear infinite;
  display: block; /* optional, for consistent layout */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
