/* Reset and Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
  }
  
  header {
    width: 100%;
    background-color: #1f1f1f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f260;
  }
  
  nav ul {
    display: flex;
    list-style-type: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
    position: relative;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00f260;
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  nav ul li a:hover {
    color: #00f260;
  }
  
  /* Skills Section Styling */
  #skills-section {
    padding: 50px;
    background-color: #1f1f1f;
    color: #e0e0e0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .skills-intro {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .skills-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .skills-intro p {
    font-size: 1.2rem;
    color: #c0c0c0;
  }
  
  /* Skills Cards Styling */
  .skills-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    background-color: #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 1rem;
    color: #c0c0c0;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .skills-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 100%;
      max-width: 500px;
    }
  }
  