body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #0f172a;

  background:
    linear-gradient(rgba(248,250,252,0.85), rgba(248,250,252,0.85)),
    url("images/bg.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* CONTAINER */
.container {
  max-width: 850px;
  margin: auto;
  padding: 80px 20px;
}

/* STATUS */
.status {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #ecfeff;
  border-radius: 20px;
  font-size: 12px;
  color: #0ea5e9;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

h1 {
  font-size: 42px;
  margin-bottom: 5px;
}

.role {
  color: #64748b;
}

/* PROFILE IMAGE */
.profile {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;

  border: 5px solid #0ea5e9;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);

  transition: 0.3s ease;
}

.profile:hover {
  transform: scale(1.05);
}

/* LINKS */
.links a {
  margin-right: 15px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
}

/* SECTION */
section {
  margin-top: 60px;
}

h2 {
  font-size: 20px;
}

hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 10px 0 20px;
}

p {
  line-height: 1.7;
  color: #334155;
}

/* TAGS */
.tags span {
  display: inline-block;
  padding: 6px 12px;
  margin: 5px;
  background: #e2e8f0;
  border-radius: 20px;
  font-size: 12px;
}

/* ========================= */
/* 🔥 CERTIFICATION FIXED */
/* ========================= */

.cert-section {
  margin-top: 70px;
}

/* ❗ FIXED: remove flex centering */
.cert-card {
  margin-top: 20px;
  padding: 20px;

  background: rgba(255,255,255,0.6);
  border-radius: 16px;

  display: block; /* important */
  backdrop-filter: blur(8px);
}

/* ❗ LEFT ALIGNED IMAGE */
.cert-banner {
  width: 100%;
  max-width: 420px;

  border-radius: 10px;

  display: block;
  margin: 0; /* key fix */
}

/* subtle hover */
.cert-card:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* PROJECT */
.project {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.label {
  font-size: 11px;
  color: #0ea5e9;
  font-weight: 600;
}

/* BACKGROUND BLOB */
.bg-blob {
  position: fixed;
  right: -120px;
  bottom: -120px;
  width: 450px;
  height: 450px;
  background: #7dd3fc;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(40px);
}
