.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 2rem;
}

.personal{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.8;
}

.personal .console-text {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.personal, .professional {
  flex: 1;
}

.professional{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 3rem 0;
}

.professional .console-text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.personal h3, .professional h3 {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color);
}

/* Skill Orbit System */
.skill-icons {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center hub */
.skill-icons::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--highlight-color) 0%, transparent 70%);
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px var(--highlight-color);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Orbit rings */
.skill-icons::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px dashed var(--highlight-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: rotate 30s linear infinite;
}

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

.skill-icons i {
  position: absolute;
  font-size: 2.5rem;
  color: var(--highlight-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 2;
  filter: drop-shadow(0 0 8px var(--highlight-color));
}

/* Position icons in orbit */
.skill-icons i:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 20s linear infinite;
}

.skill-icons i:nth-child(2) {
  top: 20%;
  right: 15%;
  animation: orbit 22s linear infinite;
  animation-delay: -2s;
}

.skill-icons i:nth-child(3) {
  top: 40%;
  right: 5%;
  animation: orbit 24s linear infinite;
  animation-delay: -4s;
}

.skill-icons i:nth-child(4) {
  bottom: 35%;
  right: 10%;
  animation: orbit 26s linear infinite;
  animation-delay: -6s;
}

.skill-icons i:nth-child(5) {
  bottom: 15%;
  right: 25%;
  animation: orbit 28s linear infinite;
  animation-delay: -8s;
}

.skill-icons i:nth-child(6) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 30s linear infinite;
  animation-delay: -10s;
}

.skill-icons i:nth-child(7) {
  bottom: 15%;
  left: 25%;
  animation: orbit 32s linear infinite;
  animation-delay: -12s;
}

.skill-icons i:nth-child(8) {
  bottom: 35%;
  left: 10%;
  animation: orbit 34s linear infinite;
  animation-delay: -14s;
}

.skill-icons i:nth-child(9) {
  top: 40%;
  left: 5%;
  animation: orbit 36s linear infinite;
  animation-delay: -16s;
}

.skill-icons i:nth-child(10) {
  top: 20%;
  left: 15%;
  animation: orbit 38s linear infinite;
  animation-delay: -18s;
}

.skill-icons i:nth-child(11) {
  top: 50%;
  left: 0%;
  animation: orbit 40s linear infinite;
  animation-delay: -20s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(170px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(170px) rotate(-360deg);
  }
}

/* Hover effect - stops orbit and glows */
.skill-icons i:hover {
  animation-play-state: paused;
  transform: scale(1.5) !important;
  color: var(--blue-accent);
  filter: drop-shadow(0 0 20px var(--blue-accent));
  z-index: 10;
}

/* Connection lines on hover */
.skill-icons i:hover::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, var(--blue-accent), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: lineGlow 1s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Ripple effect when hovering skill icons */
.skill-icons i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-icons i:hover::after {
  width: 200%;
  height: 200%;
  opacity: 0;
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@media screen and (max-width: 800px) {
  .about-content {
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .personal{
    width: 100%;
  }
  
  .skill-icons {
    width: 320px;
    height: 320px;
  }
  
  .skill-icons::before {
    width: 60px;
    height: 60px;
  }
  
  .skill-icons::after {
    width: 280px;
    height: 280px;
  }
  
  .skill-icons i {
    font-size: 2rem;
  }
  
  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(130px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(130px) rotate(-360deg);
    }
  }
}