/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== BASE ===== */
body{
  font-family: Arial, Helvetica, sans-serif;
  background:#0b1220;
  color:#e9eefc;
  line-height:1.6;
}

.container{
  max-width: 960px;
  margin: 24px auto;
  padding: 0 16px;
}

.card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
}

/* ===== HEADER ===== */
.header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}

.avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border: 3px solid rgba(255,255,255,0.25);
}

.name{
  font-size: 28px;
  font-weight: 800;
}

.subtitle{
  font-size: 15px;
  opacity: 0.85;
}

.headerActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

/* ===== BUTTON ===== */
.btn{
  display:inline-block;
  padding: 10px 16px;
  background:#2d6cff;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border-radius:12px;
  transition:0.2s ease;
}
.btn:hover{ opacity:0.9; }

.section-title{
  font-size:22px;
  margin-bottom: 12px;
}

.paragraph{
  opacity: 0.9;
  font-size: 14.5px;
}

/* ===== SKILLS ===== */
.skillsGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.skillItem{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 14px;
}

.skillTitle{
  font-weight: 800;
  margin-bottom: 6px;
}

.skillDesc{
  opacity: 0.85;
  font-size: 14px;
}

/* ===== TOOLS (CHIPS) ===== */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.chip{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0.95;
}

/* ===== TIMELINE ===== */
.timeline{
  display:flex;
  flex-direction:column;
  gap: 18px;
  padding-left: 6px;
}

.step{
  display:grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
}

.dot{
  width:14px;
  height:14px;
  background:#2d6cff;
  border-radius:50%;
  position:relative;
  margin-top: 8px;
}

.step:not(:last-child) .dot::after{
  content:"";
  position:absolute;
  top:14px;
  left:50%;
  transform: translateX(-50%);
  width:2px;
  height: calc(100% + 18px);
  background: rgba(255,255,255,0.18);
}

.content h3{
  font-size:18px;
  margin-bottom:4px;
}
.meta{
  font-size:14px;
  opacity:0.7;
  margin-bottom:8px;
}

ul{ padding-left:18px; }
li{ margin-bottom:6px; font-size:14px; }

/* ===== CONTACT ===== */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contactItem{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.12);
  text-decoration:none;
  color: #e9eefc;
  transition: 0.2s ease;
}
.contactItem:hover{ transform: translateY(-1px); }

.contactItemStatic{ cursor: default; }
.contactIcon{ font-size: 20px; }

.contactText{
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.contactLabel{
  font-weight: 800;
  font-size: 14px;
}
.contactValue{
  opacity: 0.8;
  font-size: 13.5px;
  word-break: break-word;
}

/* ===== FOOTER ===== */
.footer{
  text-align:center;
  opacity:0.65;
  padding: 16px 0 30px;
  font-size: 14px;
}

/* Company header (logo + name) */
.company{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

/* Circular logo icon */
.company-logo{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid #e5e7eb;   /* light professional border */
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Improve title alignment */
.company h3{
  margin: 0;
  font-size: 1.1rem;
}

/* Meta text */
.meta{
  font-size: 0.85rem;
  color: #6b7280;
}

/* Timeline dot (optional polish) */
.dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2563eb;
  margin-top: 12px;
}


/* ===== RESPONSIVE ===== */
@media (min-width: 768px){
  .avatar{ width:140px; height:140px; }
  .name{ font-size: 34px; }
  .section-title{ font-size: 24px; }

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

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