<style>
  strong {
    color: #007bff;
    font-weight: 700;
  }
  ul li {
    margin-bottom: 0.8rem;
  }
  p {
    margin-bottom: 1rem;
  }
  section h2 {
    margin-bottom: 1rem;
  }
</style>


.k8s-cta{
  background: linear-gradient(135deg,#ff3d00,#ff9100);
  color:#fff !important;
  padding:12px 20px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:0 0 0 rgba(255,61,0,0.6);
  animation:pulseGlow 1.5s infinite;
  letter-spacing:.5px;
  text-transform:uppercase;
  border:2px solid #fff;
  cursor:pointer;
  transition:.2s;
}

.k8s-cta:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px rgba(255,61,0,0.8);
}

.pulse-dot{
  width:12px;
  height:12px;
  background:#00ff3c;
  border-radius:50%;
  animation:pulseDot 1.2s infinite;
  box-shadow:0 0 10px rgba(0,255,60,0.9);
}

@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(255,61,0,0.7);}
  70%{box-shadow:0 0 0 16px rgba(255,61,0,0);}
  100%{box-shadow:0 0 0 0 rgba(255,61,0,0);}
}

@keyframes pulseDot{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(1.5);}
}



body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

header {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
  object-fit: cover;
}

.contact a {
  color: #ddd;
  margin: 0 6px;
  text-decoration: none;
}

h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 6px;
  margin-top: 40px;
}

ul {
  padding-left: 20px;
}

.job {
  margin-bottom: 30px;
}

.job h3 {
  margin-bottom: 8px;
  color: #1a5276;
}

footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: white;
}

