section {
    min-height: 100vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
  }

  /* Skills Section */
  .skills {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 5%;
}
  
.skills::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

  
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
  }
  
  .skill-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(var(--accent), var(--accent-alt), var(--accent));
    animation: rotate 10s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .skill-card:hover::before {
    opacity: 0.1;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .skill-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
    animation: bounce 2s ease-in-out infinite;
  }
  
  .skill-card:nth-child(2n) .skill-icon {
    color: var(--accent-alt);
    animation-delay: 0.5s;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
  }
  
  .skill-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
  }
  
  .skill-description {
    color: var(--text-dim);
    line-height: 1.6;
  }