* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f4f7fb;
  color: #333;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.resume-container {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 25px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 3px solid #0078d7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.github-link {
  color: #0078d7;
  font-size: 14px;
  text-decoration: none;
}
.github-link:hover {
  text-decoration: underline;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0078d7;
}

.header-text h1 {
  font-size: 32px;
  color: #0078d7;
}

.header-text h3 {
  font-weight: 500;
  color: #444;
  margin-top: 5px;
}

.summary {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  background: #e8f2ff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact a {
  color: #0078d7;
  text-decoration: none;
}

.download-btn {
  background: orange;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.download-btn:hover {
  background: #005bb5;
}

/* Content */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.section h2 {
  color: #0078d7;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #0078d7;
  display: inline-block;
  padding-bottom: 4px;
}

ul {
  list-style: none;
}

li {
  background: #f9f9f9;
  margin: 8px 0;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid #ddd;
}

li a {
  color: #0078d7;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .content {
    grid-template-columns: 1fr;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-btn {
    align-self: center;
  }
}
