* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f3f4f6;
  color: #111827;
  overflow-x: hidden;
}

header {
  background: #1f2937;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #3b82f6;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: #3b82f6;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME */
.home {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.profile-pic img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #3b82f6;
  margin-bottom: 20px;
}

.home-content h1 {
  font-size: 30px;
}

.home-content span {
  color: #3b82f6;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #2563eb;
}

/* ABOUT */
.about, .contact {
  padding: 70px 20px;
  text-align: center;
}

.about p {
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #444;
}

.skills {
  margin-top: 30px;
}

.skill-list {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.skill {
  background: #3b82f6;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
}

.contact-info {
  margin-top: 40px;
}

.contact-info ul {
  list-style: none;
  margin-top: 10px;
}

.contact-info a {
  color: #3b82f6;
  text-decoration: none;
}

footer {
  background: #1f2937;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}