body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #0b0b0b;
  color: #f2f2f2;
  scroll-behavior: smooth;
}

header {
  text-align: center;
  padding: 120px 20px 60px;
}

header h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;
  font-weight: 600;
}

header p {
  color: #999;
  font-size: 1.1rem;
}

section {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

h2 {
  font-size: 2rem;
  border-bottom: 2px solid #ff4b2b;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 35px;
}

.about,
.resume,
.projects {
  line-height: 1.8;
  color: #cfcfcf;
}

.resume-entry {
  margin-bottom: 30px;
}

.resume-entry h3 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  color: #ff4b2b;
}

.resume-entry p,
.resume-entry li {
  color: #ccc;
  margin-bottom: 4px;
}

.projects .project {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.projects .project:hover {
  background: #222;
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 50px 0;
  color: #777;
  font-size: 0.9rem;
}

.resume-img-wrapper {
  text-align: center;
  margin-top: 20px;
}

.resume-img {
  width: 350px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid #ff4b2b;
}

.resume-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.projects .project img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
