* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background-color: #13bfea;
      color: #333;
      line-height: 1.6;
    }

    header {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
    }

    


    header h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      background-color: rgba(15, 105, 168, 0.1);
      padding: 10px 20px;
      border-radius: 20px;
      transition: background 0.3s ease;
    }

    nav a:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }

    section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #333;
      text-align: center;
    }

    .skills-list, .projects-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .skills-list div, .projects-list div {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
    }

    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }

   
    }
    header {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 20px 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: rgba(255,255,255,0.3);
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
}



.profile-info h1 {
  font-size: 1.2rem;
  margin: 0;
}

.profile-info p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}
#home {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  color: #333;
  padding: 100px 20px;
  text-align: center;
}

.home-content {
  max-width: 800px;
  margin: auto;
}

#home h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

#home p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #974de7;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #2575fc;
}

