/* ===== PAGE BANNER ===== */
.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 110px 0 75px;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,30,0.88) 0%, rgba(200,16,46,0.5) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #c8102e; }
.breadcrumb i { font-size: 11px; color: #c8102e; }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ===== CANDIDATE PROFILE LAYOUT ===== */
.candidate-profile { background: #f4f4f4; }

.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 35px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.profile-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin-bottom: 25px;
}
.sidebar-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.sidebar-name-tag {
  background: #c8102e;
  padding: 18px 22px;
  text-align: center;
}
.sidebar-name-tag h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sidebar-name-tag span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-widget {
  background: #fff;
  border-radius: 4px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.sidebar-widget-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c8102e;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Personal Info List */
.personal-info-list { list-style: none; }
.personal-info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.personal-info-list li:last-child { border-bottom: none; }
.pi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pi-label i { color: #c8102e; width: 14px; }
.pi-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  padding-left: 20px;
}

/* Social Links */
.sidebar-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-social a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.sidebar-social a i { width: 16px; text-align: center; }
.social-fb { background: #3b5998; }
.social-fb:hover { background: #2d4373; }
.social-tw { background: #1da1f2; }
.social-tw:hover { background: #0c85d0; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-ig:hover { opacity: 0.9; }
.social-yt { background: #ff0000; }
.social-yt:hover { background: #cc0000; }
.social-li { background: #0077b5; }
.social-li:hover { background: #005885; }

.sidebar-cv-btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

/* ===== MAIN CONTENT ===== */
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-intro {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.candidate-role-tag {
  font-size: 14px;
  color: #c8102e;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.candidate-role-tag i { font-size: 12px; }
.profile-lead {
  font-size: 17px;
  color: #333;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 18px;
  border-left: 4px solid #c8102e;
  padding-left: 20px;
}
.profile-intro p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.profile-intro p:last-child { margin-bottom: 0; }

.profile-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-section-title i { color: #c8102e; font-size: 18px; }

/* ===== SKILLS ===== */
.profile-skills {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.skills-bars { display: flex; flex-direction: column; gap: 20px; }
.skill-item {}
.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.skill-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.skill-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #c8102e;
}
.skill-bar {
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #c8102e, #ff4d6d);
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease;
}

/* ===== EXPERIENCE & EDUCATION ===== */
.profile-exp-edu {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.exp-edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.exp-edu-col h3 { margin-bottom: 25px; }
.exp-edu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}
.exp-edu-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #eee;
}
.exp-edu-item {
  display: flex;
  gap: 18px;
  padding-bottom: 25px;
  position: relative;
}
.exp-edu-item:last-child { padding-bottom: 0; }
.exp-edu-dot {
  width: 14px;
  height: 14px;
  background: #c8102e;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  left: -20px;
  margin-right: -14px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #c8102e;
  z-index: 1;
}
.exp-edu-year {
  display: inline-block;
  background: #fff0f3;
  color: #c8102e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.exp-edu-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.exp-edu-body p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* ===== AWARDS ===== */
.profile-awards {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  border-left: 3px solid #c8102e;
  transition: all 0.3s;
}
.award-item:hover {
  background: #fff0f3;
  transform: translateX(4px);
}
.award-icon {
  width: 46px;
  height: 46px;
  background: #c8102e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.award-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}
.award-body span {
  font-size: 13px;
  color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .profile-layout { grid-template-columns: 260px 1fr; gap: 25px; }
}
@media (max-width: 768px) {
  .banner-content h1 { font-size: 34px; }
  .page-banner { padding: 80px 0 55px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .sidebar-photo { height: 280px; }
  .exp-edu-grid { grid-template-columns: 1fr; gap: 30px; }
  .awards-grid { grid-template-columns: 1fr; }
  .profile-intro, .profile-skills, .profile-exp-edu, .profile-awards { padding: 22px; }
  .candidate-info-grid { grid-template-columns: 1fr; gap: 10px; }
  .profile-section-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .banner-content h1 { font-size: 26px; }
  .sidebar-photo { height: 240px; }
  .profile-lead { font-size: 15px; }
}
