* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #111, #000);
  color: #f5f5f5;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero img {
  width: 180px;
  height: 180px;
  border-radius: 30%;
  border: 4px solid gold;
  margin: 0 auto 20px;
}

.hero span {
  color: gold;
}

.hero p {
  opacity: 0.9;
}

.hero-btns {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: gold;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.outline {
  background: transparent;
  border: 2px solid gold;
  color: gold;
}

.card {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin: 50px auto;
  width: 80%;
}

.card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: gold;
}

.skill {
  margin-bottom: 15px;
}

.bar {
  width: 100%;
  height: 10px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  width: 0;
  background: gold;
  transition: width 1.5s ease;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

form textarea {
  height: 120px;
  resize: none;
}

.email-note {
  margin-top: 15px;
}

.email-note a {
  color: gold;
}

footer {
  text-align: center;
  padding: 20px;
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}

@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}
