.exp-item {
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.exp-company {
  color: #0077cc;
  font-weight: 500;
  margin-left: 8px;
}
.exp-date {
  color: #888;
  font-size: 0.98em;
  margin: 2px 0 8px 0;
}
.exp-skills {
  color: #555;
  font-size: 0.97em;
  margin-top: 6px;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  max-width: 60%;
  margin: 48px auto 48px auto;
  padding: 40px 48px 32px 48px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
}

header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
header::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #0077cc 0%, #00c6ff 100%);
  opacity: 0.7;
}

h1 {
  margin: 0;
  font-size: 2.7em;
  color: #222;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.title {
  color: #0077cc;
  font-size: 1.25em;
  margin: 10px 0 0 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact {
  color: #444;
  font-size: 1.05em;
  margin: 6px 0 0 0;
  letter-spacing: 0.2px;
}

section {
  margin-bottom: 32px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 18px 24px 10px 24px;
  border: 1px solid rgba(0,0,0,0.03);
}

h2 {
  color: #0077cc;
  border-bottom: 2px solid #e0f0ff;
  padding-bottom: 6px;
  margin-bottom: 16px;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.5px;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 7px;
  line-height: 1.7;
}

button {
  background: linear-gradient(90deg, #0077cc 0%, #00c6ff 100%);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,123,204,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
button:hover {
  background: linear-gradient(90deg, #005fa3 0%, #00aaff 100%);
  box-shadow: 0 4px 16px rgba(0,123,204,0.13);
}

#profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #00c6ff;
  margin-bottom: 12px;
  box-shadow: 2px 2px 24px black;
  background: #fff;
}

/* Custom badge style for skills if Bootstrap is not present */
.skill-badge {
  display: inline-block;
  background: #e0e0e0;
  color: #333;
  border-radius: 12px;
  padding: 2px 10px;
  margin-right: 6px;
  font-size: 0.95em;
  font-weight: 500;
}

.bg-image {
  background-image: url("https://images.unsplash.com/photo-1587620962725-abab7fe55159?q=80&w=1631&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  filter: blur(8px);
  -webkit-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  transition: min-height 0.2s;
}

@media (max-width: 800px) {
  .container {
    padding: 16px 4vw;
  }
}
