* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}


header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero {
  max-width: 700px;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  margin-bottom: 20px;
}

h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.typing {
  font-size: 24px;
  color: #38bdf8;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: #38bdf8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: #0f172a;
}

section {
  padding: 80px 10%;
}

.title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #334155;
}

.card h3 {
  margin-bottom: 15px;
  color: #38bdf8;
}

.contact {
  text-align: center;
}


footer {
  background: #020617;
  text-align: center;
  padding: 30px;
  color: #94a3b8;
}