/* =========================
        SKILLS SECTION
========================= */
.skills-section {
  min-height: 100vh;
  padding: 120px 6%;
}
/* =========================
            TITLE
========================= */
.skills-title {
  text-align: center;
  font-size: 70px;
  color: cyan;
  margin-bottom: 80px;
  text-shadow: 0 0 20px cyan;
  animation: glow 2s infinite alternate;
}
/* =========================
        CONTAINER
========================= */
.skills-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
/* =========================
         SKILL CARD
========================= */
.skill-card {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 5px solid cyan;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 35px cyan;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  transition: 0.5s ease;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* =========================
          HOVER
========================= */
.skill-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px cyan;
}
/* =========================
            H2
========================= */
.skill-card h2 {
  color: cyan;
  font-size: 28px;
  margin-bottom: 15px;
  text-shadow: 0 0 12px cyan;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* =========================
            H3
========================= */
.skill-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}
/* =========================
            PERCENT
========================= */
.skill-card p {
  color: white;
  font-size: 32px;
  font-weight: bold;
}
/* =========================
         TITLE GLOW
========================= */
@keyframes glow {
  from {
    text-shadow:
      0 0 10px cyan,
      0 0 20px cyan;
  }
  to {
    text-shadow:
      0 0 30px cyan,
      0 0 60px cyan;
  }
}
/*Skill page style*/
.skills-bg {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, cyan, transparent);
  top: 20%;
  left: 30%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: -2;
  animation: bgMove 8s ease-in-out infinite;
}
@keyframes bgMove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.skill-card {
  transition: 0.4s;
}
.skill-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px cyan;
}
body {
  background: #070b1a;
  overflow-x: hidden;
}
/* Animated Background Lights */
.skills-light {
  position: fixed;
  width: 400px;
  height: 400px;
  background: cyan;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  top: 10%;
  left: 10%;
  animation: moveLight 8s ease-in-out infinite;
  z-index: -1;
}
.skills-light2 {
  position: fixed;
  width: 350px;
  height: 350px;
  background: #00f7ff;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  bottom: 10%;
  right: 10%;
  animation: moveLight2 10s ease-in-out infinite;
  z-index: -1;
}
@keyframes moveLight {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveLight2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* Skills Card */
.skill-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
/* Rotating Glow */
.skill-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: conic-gradient(cyan, transparent, cyan);
  animation: rotateGlow 5s linear infinite;
  top: -40%;
  left: -40%;
  opacity: 0.2;
}
@keyframes rotateGlow {
  100% {
    transform: rotate(360deg);
  }
}
/* Hover Effect */
.skill-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 0 40px cyan;
}
/* Text Glow */
.skill-card h2,
.skill-card h3 {
  text-shadow: 0 0 15px cyan;
}
