/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Navbar */
  header {
    width: 100%;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 15px rgba(0, 224, 255, 0.2);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }
  .logo span {
    color: #00e0ff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin: 0 18px;
  }
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00e0ff;
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after,
  .nav-links .active::after {
    width: 100%;
  }
  .nav-links a:hover,
  .nav-links .active {
    color: #00e0ff;
  }
  
  /* Skills Section */
  .skills {
    padding: 120px 100px;
    text-align: center;
  }
  
  .skills h1 {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .skills h1 span {
    color: #00e0ff;
    text-shadow: 0 0 10px #00e0ff;
  }
  
  .subtitle {
    color: #bbb;
    margin-bottom: 40px;
  }
  
  /* Skill Bars */
  .skills-container {
    max-width: 700px;
    margin: auto;
    text-align: left;
  }
  
  .skill {
    margin-bottom: 25px;
  }
  
  .skill h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  
  .bar {
    background: #222;
    border-radius: 25px;
    overflow: hidden;
    height: 12px;
    position: relative;
  }
  
  .bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00e0ff, #00ffa3);
    border-radius: 25px;
    transition: width 2s ease;
  }
  
  /* Circular Skills */
  .circle-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #00e0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.6);
  }
  
  .inner-circle {
    font-size: 22px;
    font-weight: bold;
    color: #00e0ff;
  }
  
  .circle p {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #bbb;
  }
  footer {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    color: #a3a3a3;
  }