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

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

body {
  background: #f5f6fa;
  padding: 30px 15px;
  color: #222;
}

.container {
  max-width: 950px;
  margin: auto;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.profile-pic {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077ff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.title {
  color: #0077ff;
  font-weight: 600;
  margin-top: 6px;
}

.location {
  color: gray;
  font-size: 14px;
  margin-top: 4px;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.right a {
  text-decoration: none;
  font-size: 14px;
  color: #222;
}

.right a:hover {
  color: #0077ff;
}

.section {
  margin-top: 30px;
}

.section h2 {
  font-size: 18px;
  margin-bottom: 14px;
  border-left: 5px solid #0077ff;
  padding-left: 12px;
}

.section p {
  line-height: 1.8;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.skill-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
}

.skill-box h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #0077ff;
}

.skill-box ul {
  padding-left: 18px;
}

.skill-box li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

.certs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certs li {
  padding: 7px 12px;
  border-radius: 20px;
  background: #eef5ff;
  color: #0077ff;
  font-size: 13px;
  font-weight: 600;
}

.card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  margin-top: 15px;
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card .date {
  font-size: 13px;
  color: gray;
  margin-bottom: 10px;
}

.footer {
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 13px;
  color: gray;
}

@media (max-width: 750px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
