/* =========================================
   About Me – Styles v1.0
   Theme: Navy Blue & Orange (matches Portfolio)
   ========================================= */

.psc-about {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: var(--psc-about-maxwidth, 1080px);
  margin: 0 auto;
  padding: 0 var(--psc-container-padding, 16px) 60px;
  color: var(--psc-text, #1e293b);
  box-sizing: border-box;
}

.psc-about.psc-fullwidth {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ── Hero ── */
.psc-about-hero {
  display: flex;
  align-items: center;
  gap: 52px;
  background: linear-gradient(135deg, var(--psc-about-navy, #0d1b3e) 0%, var(--psc-about-navy-mid, #1a2f5e) 100%);
  border-radius: 20px;
  padding: var(--psc-hero-padding-y, 52px) var(--psc-hero-padding-x, 56px);
  margin-bottom: var(--psc-hero-margin-bottom, 48px);
  position: relative;
  overflow: hidden;
}

.psc-about-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--psc-about-orange-glow, rgba(249,115,22,.18)) 0%, transparent 70%);
  pointer-events: none;
}

.psc-about-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 200px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.psc-about-photo-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.psc-about-photo {
  width: 170px; height: 170px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--psc-about-orange, #f97316);
  box-shadow: 0 0 0 6px rgba(249,115,22,.18), 0 12px 40px rgba(0,0,0,.35);
  display: block;
}

.psc-about-hero-text {
  flex: 1;
  position: relative; z-index: 1;
}

.psc-about-hero-text .psc-about-name {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.5px;
  line-height: 1.1;
}

.psc-about-hero-text .psc-about-name span {
  color: var(--psc-about-orange, #f97316);
}

.psc-about-tagline {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin: 0 0 22px;
  line-height: 1.5;
}

.psc-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.psc-about-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(249,115,22,.5);
  color: var(--psc-about-orange, #f97316);
  background: rgba(249,115,22,.08);
}

/* ── Bio Section ── */
.psc-about-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--psc-body-gap, 36px);
  align-items: start;
}

@media (max-width: 780px) {
  .psc-about-hero { flex-direction: column; text-align: center; padding: 36px 24px; gap: 28px; }
  .psc-about-tags { justify-content: center; }
  .psc-about-body { grid-template-columns: 1fr; }
}

.psc-about-bio h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--psc-about-navy, #0d1b3e);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--psc-about-orange, #f97316);
  display: inline-block;
}

.psc-about-bio p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 18px;
}

.psc-about-bio strong {
  color: var(--psc-about-navy, #0d1b3e);
}

/* ── Specializations List ── */
.psc-about-specs {
  background: linear-gradient(135deg, #f0f4fb 0%, #e8eefa 100%);
  border: 1px solid #dce4f0;
  border-radius: 16px;
  padding: var(--psc-card-padding, 28px);
}

.psc-about-specs h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--psc-about-navy, #0d1b3e);
  margin: 0 0 16px;
}

.psc-about-spec-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}

.psc-about-spec-list li {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 14px;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid var(--psc-about-orange, #f97316);
  box-shadow: 0 1px 4px rgba(13,27,62,.07);
  line-height: 1.4;
}

/* ── Experience Timeline ── */
.psc-about-experience { margin-top: 8px; }

.psc-about-experience h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--psc-about-navy, #0d1b3e);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--psc-about-orange, #f97316);
  display: inline-block;
}

.psc-timeline {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid #e2e8f5;
}

.psc-timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.psc-timeline-item:last-child { padding-bottom: 0; }

.psc-timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--psc-about-orange, #f97316);
  box-shadow: 0 0 0 4px rgba(249,115,22,.15);
}

.psc-timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}

.psc-timeline-header h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--psc-about-navy, #0d1b3e);
  margin: 0;
}

.psc-timeline-dates {
  font-size: 12px;
  font-weight: 700;
  color: var(--psc-about-orange, #f97316);
  background: rgba(249,115,22,.1);
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.psc-timeline-company {
  font-size: 13.5px;
  font-weight: 600;
  color: #5a6a85;
  margin-bottom: 8px;
}

.psc-timeline-bullets {
  margin: 0; padding: 0 0 0 18px;
  list-style: disc;
}

.psc-timeline-bullets li {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 4px;
}

/* ── Education Rows ── */
.psc-about-edu-row {
  padding: 9px 0;
  border-bottom: 1px solid #f0f4fb;
}
.psc-about-edu-row:last-child { border-bottom: none; }
.psc-about-edu-title { font-size: 13.5px; font-weight: 700; color: var(--psc-about-navy, #0d1b3e); line-height: 1.4; }
.psc-about-edu-meta { font-size: 12.5px; color: #5a6a85; margin-top: 2px; }

/* ── Sidebar Card ── */
.psc-about-sidebar {}

.psc-about-card {
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 16px;
  padding: var(--psc-card-padding, 26px);
  box-shadow: 0 4px 20px rgba(13,27,62,.08);
  margin-bottom: 20px;
}

.psc-about-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--psc-about-navy, #0d1b3e);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f4fb;
}

.psc-about-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4fb;
  font-size: 14px;
}
.psc-about-stat-row:last-child { border-bottom: none; }
.psc-about-stat-label { color: #5a6a85; font-weight: 500; }
.psc-about-stat-value { font-weight: 700; color: var(--psc-about-navy, #0d1b3e); }
.psc-about-stat-value.orange { color: var(--psc-about-orange, #f97316); }

.psc-about-skills-grid {
  display: flex; flex-wrap: wrap; gap: 7px;
}

.psc-about-skill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  background: linear-gradient(135deg, #eef2fb, #dce6f8);
  color: var(--psc-about-navy, #0d1b3e);
  border-radius: 50px;
  border: 1px solid rgba(13,27,62,.1);
}

.psc-about-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--psc-about-navy, #0d1b3e), var(--psc-about-navy-mid, #1a2f5e));
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px; font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  letter-spacing: .4px;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(13,27,62,.25);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.psc-about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,27,62,.35);
}
.psc-about-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--psc-about-orange, #f97316), rgba(249,115,22,.6));
  opacity: 0;
  transition: opacity .3s;
}
.psc-about-cta:hover::after { opacity: 1; }
.psc-about-cta span { position: relative; z-index: 1; }

/* ── Contact Row ── */
.psc-about-contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f4fb;
  font-size: 14px; color: #374151;
}
.psc-about-contact-row:last-child { border-bottom: none; }
.psc-about-contact-icon { font-size: 16px; flex-shrink: 0; }
.psc-about-contact-row a { color: var(--psc-about-orange, #f97316); text-decoration: none; font-weight: 600; }
.psc-about-contact-row a:hover { text-decoration: underline; }
