
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #080808, #101010);
  color: #fff;
}
.container {
  width: 90%;
  margin: auto;
  padding: 20px 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: #0a0a0a;
  z-index: 1000;
}
.logo {
  font-size: 24px;
  color: cyan;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #00ffff;
  border-bottom: 2px solid #00ffff;
}
.header-text {
  margin-top: 10vh;
  text-align: center;
  animation: fadeInDown 1.2s ease-out;
}
.header-text h1 {
  font-size: 3rem;
}
.header-text h1 span {
  color: #00ffff;
}
.welcome-banner {
  text-align: center;
  font-size: 2rem;
  padding: 20px;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  animation: pulse 2s infinite;
}
.sub-title {
  font-size: 2rem;
  color: cyan;
  margin: 30px 0 10px;
}
img {
  border-radius: 10px;
  max-width: 300px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.skills-list li {
  display: inline-block;
  background-color: #1f1f1f;
  padding: 10px 20px;
  margin: 10px 5px;
  border-radius: 5px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #111;
  padding: 20px;
  border-radius: 10px;
}
form input, form textarea {
  padding: 10px;
  font-family: inherit;
  border: none;
  border-radius: 5px;
}
form button {
  padding: 10px;
  background: cyan;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #1f1f1f;
  color: #999;
  margin-top: 40px;
}
a {
  color: cyan;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .row {
    flex-direction: column;
    text-align: center;
  }
}
