* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #e6e6fa;
    overflow-x: hidden;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(100, 149, 237, 0.4);
  }

  .logo {
    font-size: 24px;
    font-weight: 600;
    color: cornflowerblue;
  }

  nav ul {
    display: flex;
    gap: 20px;
  }

  nav ul li {
    list-style: none;
  }

  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: cornflowerblue;
  }

  .hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .intro img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid cornflowerblue;
  }

  .intro h1 {
    font-size: 3rem;
    animation: fadeIn 1s ease-in;
  }

  .intro h2 {
    font-size: 2rem;
    color: cornflowerblue;
    margin-top: 10px;
  }

  .intro p {
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.6;
  }

  .btn-primary {
    background-color: cornflowerblue;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
  }

  .btn-primary:hover {
    background-color: #fff;
    color: cornflowerblue;
  }

  .section {
    padding: 60px 20px;
    text-align: center;
  }

  .section h1 {
    font-size: 2.5rem;
    color: cornflowerblue;
    margin-bottom: 30px;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
  }

  .project-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid cornflowerblue;
  }
  
  .project-card a{
  text-decoration:none;
  color:white;
  }

  .project-card:hover {
    transform: translateY(-10px);
    background-color: #2a2a3a;
  }

  .skills ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .skills li {
    background: cornflowerblue;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
  }

  .footer {
    padding: 30px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
  }

  .footer a {
    color: cornflowerblue;
    text-decoration: none;
    margin-right: 20px;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background: #1c1c2d;
      position: absolute;
      top: 70px;
      right: 20px;
      padding: 20px;
      border-radius: 10px;
    }

    nav ul.active {
      display: flex;
    }

    .hamburger {
      display: block;
    }
  }