* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #020617;
  color: #e2e8f0;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar li {
  margin-left: 20px;
}

.navbar a {
  color: #e2e8f0;
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  padding: 40px;
}

.profile {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  border: 3px solid #38bdf8;
  box-shadow: 0 0 20px #38bdf8;
}

/* BUTTON */
.btn {
  padding: 10px 20px;
  background: #38bdf8;
  color: black;
  margin: 5px;
  border: none;
  cursor: pointer;
}

/* DROPDOWN */
.resume-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #1e293b;
}

.resume-dropdown:hover .dropdown-content {
  display: block;
}

/* SECTIONS */
.section {
  padding: 60px;
  text-align: center;
}

/* SKILLS */
.skills span {
  background: #1e293b;
  padding: 10px;
  margin: 5px;
  border-radius: 20px;
}

/* PROJECTS */
.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #1e293b;
  padding: 20px;
  margin: 10px;
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #38bdf8;
}

/* EXPERIENCE */
.experience-box {
  background: #1e293b;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-left: 4px solid #38bdf8;
  border-radius: 10px;
}

.duration {
  color: #94a3b8;
}

.desc {
  margin: 10px 0;
}

/* SOCIAL */
.social-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  background: #1e293b;
  border-radius: 8px;
  color: white;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* TYPING CURSOR */
#typing::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}