/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  display: flex;
  background: #f6f8fa;
  color: #0d1117;
  min-height: 100vh;
}

/* ===============================
   LEFT PROFILE PANEL
================================ */
.profile-card {
  width: 260px;
  background: #0d1117;
  color: #ffffff;
  padding: 30px 20px;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.profile-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.profile-card .title {
  font-size: 14px;
  opacity: 0.85;
}

.profile-card .tags {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.availability {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.availability .dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.social-row a {
  color: #c9d1d9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.big-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.big-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.big-btn.solid {
  background: #06b6d4;
  color: #0d1117;
}

.views {
  margin-top: auto;
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
}

/* ===============================
   MAIN CONTENT AREA
================================ */
.content {
  flex: 1;
  padding: 40px 180px 60px 60px;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #57606a;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.btn.primary:hover {
  background: #1d4ed8;
}

/* ===============================
   CARDS
================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.5;
}

/* ===============================
   METRICS
================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.metrics div {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.metrics strong {
  font-size: 26px;
  color: #1f6feb;
}

.metrics span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #57606a;
}

/* ===============================
   ABOUT / SKILLS / EXPERIENCE / RESUME
================================ */
.about-page,
.skills-page,
.experience-page,
.resume-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-hero,
.skills-hero,
.experience-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h1,
.skills-hero h1,
.experience-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.about-hero p,
.skills-hero p,
.experience-hero p {
  font-size: 17px;
  color: #57606a;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 70px 0;
}

.about-section,
.skills-section,
.experience-section {
  text-align: center;
  margin-bottom: 60px;
}

.about-section h2,
.skills-section h2,
.experience-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.about-section p,
.skills-section li,
.experience-section li {
  font-size: 16px;
  color: #57606a;
  line-height: 1.7;
}

.about-section p {
  max-width: 780px;
  margin: 0 auto 20px;
}

.skills-section ul,
.experience-section ul {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
  text-align: left;
}

.skills-section li,
.experience-section li {
  margin-bottom: 10px;
}

/* ===============================
   RIGHT SIDE NAV
================================ */
.side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.side-nav a {
  background: #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0d1117;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 600;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  .profile-card {
    width: 100%;
    position: relative;
    min-height: auto;
  }

  .content {
    padding: 40px 20px;
  }

  .side-nav {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CENTER HEADINGS (ABOUT / SKILLS / EXPERIENCE)
================================ */

.about-page h1,
.about-page h2,
.skills-page h1,
.skills-page h2,
.experience-page h1,
.experience-page h2,
.resume-page h1,
.resume-page h2 {
  text-align: center;
}


/* ==========================
   PROJECTS PAGE
========================== */

.project-card:hover{
    transform:translateY(-6px);
    border-color:#0078d4;
    box-shadow:0 25px 50px rgba(37,99,235,.18);
}

/* ===============================
   PROJECT CARDS
================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card-image{
    height:220px;
}

.project-card-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.4s;
}

.project-card:hover .project-card-image img{

    transform:scale(1.06);

}

.project-card-body{

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:16px;

}
/* ===============================
   BADGES
================================ */
.project-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-advanced {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.badge-completed {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.badge-category {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #90caf9;
}


/* ===============================
   PROJECT CARD CONTENT
================================ */
.project-card-title{

    font-size:22px;

    font-weight:700;

    color:#0d1117;

    line-height:1.3;

}

.project-card-desc {
  font-size: 14px;
  color: #57606a;
  line-height: 1.6;
  margin: 0;
}

.project-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-tag {
  background: #f0f4ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
}

.project-skills {
  background: #f6f8fa;
  border-radius: 10px;
  padding: 14px 16px;
}

.project-skills h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-skills ul {
  padding-left: 18px;
  margin: 0;
}

.project-skills li {
  font-size: 13px;
  color: #57606a;
  margin-bottom: 4px;
  line-height: 1.5;
}

.project-card-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:auto;
    padding-top:10px;
}

.btn-view-project{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;

    padding:12px 22px;

    background:linear-gradient(135deg,#0078d4,#2563eb);

    color:#fff;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    box-shadow:0 6px 18px rgba(0,120,212,.30);
}

.btn-view-project:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(0,120,212,.40);
    background:linear-gradient(135deg,#005a9e,#1d4ed8);
}

.btn-view-github {
  background: #ffffff;
  color: #0d1117;
  border: 2px solid #d1d5db;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-view-github:hover {
  border-color: #0d1117;
  background: #f6f8fa;
}

/* ===============================
   PROJECT DETAIL PAGE
================================ */
.project-detail-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Hero */
.project-detail-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2a3a 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 50px 40px 40px;
  margin-bottom: 50px;
}

.project-detail-hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.project-detail-hero h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: left;
}

.project-detail-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 780px;
}

.project-detail-hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #06b6d4;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.project-detail-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.project-detail-hero .btn-back-projects {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}

.project-detail-hero .btn-back-projects:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: #ffffff;
}

.project-detail-hero .btn-view-github {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

.project-detail-hero .btn-view-github:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
}

/* Sections */
.pd-section {
  margin-bottom: 60px;
}

.pd-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 14px;
}

.pd-section-icon {
  font-size: 22px;
}

.pd-section-lead {
  font-size: 16px;
  color: #57606a;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Overview Grid */
.pd-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pd-overview-card {
  background: #f6f8fa;
  border-radius: 12px;
  padding: 22px;
  border-left: 4px solid #0078d4;
}

.pd-overview-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d1117;
}

.pd-overview-card p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.6;
}

/* Problem List */
.pd-problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8f0;
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 4px solid #f97316;
}

.pd-problem-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.pd-problem-item div {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Solution Stack */
.pd-solution-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.pd-solution-layer {
  width: 100%;
  max-width: 700px;
  padding: 18px 24px;
  border-radius: 10px;
  text-align: center;
}

.pd-solution-top {
  background: #e3f2fd;
  border: 2px solid #90caf9;
}

.pd-solution-top strong {
  display: block;
  color: #1565c0;
  font-size: 15px;
}

.pd-solution-top span {
  font-size: 13px;
  color: #57606a;
}

.pd-solution-engine {
  background: #0d1117;
  color: #ffffff;
  border: 2px solid #0078d4;
}

.pd-solution-engine strong {
  display: block;
  font-size: 15px;
  color: #06b6d4;
  margin-bottom: 12px;
}

.pd-solution-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pd-solution-policies span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.pd-solution-arrow {
  font-size: 22px;
  color: #0078d4;
  line-height: 1;
  padding: 4px 0;
}

.pd-solution-outcomes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 700px;
}

.pd-outcome {
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.pd-outcome-grant { background: #e8f5e9; color: #2e7d32; border: 2px solid #a5d6a7; }
.pd-outcome-block { background: #fce4ec; color: #c62828; border: 2px solid #f48fb1; }
.pd-outcome-require { background: #fff8e1; color: #f57f17; border: 2px solid #ffe082; }

.pd-key-decisions {
  background: #f6f8fa;
  border-radius: 12px;
  padding: 22px 24px;
  border-left: 4px solid #22c55e;
  margin-top: 24px;
}

.pd-key-decisions h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d1117;
}

.pd-key-decisions ul {
  padding-left: 20px;
  margin: 0;
}

.pd-key-decisions li {
  font-size: 14px;
  color: #57606a;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Architecture */
.pd-arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.pd-arch-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  border-top: 3px solid #0078d4;
}

.pd-arch-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d1117;
}

.pd-arch-card p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.6;
}

/* Tables */
.pd-tech-table-wrap,
.pd-ps-table-wrap,
.pd-value-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.pd-tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pd-tech-table th {
  background: #0d1117;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.pd-tech-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

.pd-tech-table tr:last-child td {
  border-bottom: none;
}

.pd-tech-table tr:nth-child(even) td {
  background: #f9fafb;
}

/* Technologies Grid */
.pd-tech-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.pd-tech-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-tech-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.pd-tech-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #0d1117;
}

.pd-tech-item small {
  font-size: 12px;
  color: #57606a;
}

/* Phases */
.pd-phase {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
  background: #ffffff;
}

.pd-phase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pd-phase-badge {
  background: #0078d4;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pd-phase-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0d1117;
}

.pd-phase > p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pd-phase-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pd-phase-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  padding: 8px 12px;
  background: #f6f8fa;
  border-radius: 8px;
}

.pd-phase-step span {
  background: #0078d4;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Screenshots Gallery */
.pd-screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pd-screenshot-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #0d1117;
}

.pd-screenshot-item a {
  display: block;
}

.pd-screenshot-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.pd-screenshot-item:hover img {
  transform: scale(1.03);
}

.pd-screenshot-item p {
  font-size: 12px;
  color: #57606a;
  padding: 8px 10px;
  text-align: center;
  background: #ffffff;
  margin: 0;
}

/* Callout */
.pd-callout {
  border-radius: 10px;
  padding: 14px 18px;
  margin: 14px 0;
  font-size: 14px;
  line-height: 1.6;
}

.pd-callout-info {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  color: #1565c0;
}

.pd-callout strong {
  display: block;
  margin-bottom: 4px;
}

/* Code Blocks */
.pd-code-block {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin: 14px 0;
}

.pd-code-header {
  background: #1e2533;
  color: rgba(255,255,255,0.7);
  padding: 10px 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-code-lang {
  background: rgba(255,255,255,0.1);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  color: #06b6d4;
}

.pd-code-block pre {
  background: #0d1117;
  color: #c9d1d9;
  padding: 20px;
  overflow-x: auto;
  margin: 0;
}

.pd-code-block code {
  font-family: "Cascadia Code", "Fira Code", "Consolas", monospace;
  font-size: 13px;
  line-height: 1.6;
}

/* Skills Grid */
.pd-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.pd-skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
}

.pd-skill-icon {
  color: #f59e0b;
  font-size: 16px;
  flex-shrink: 0;
}

/* Lessons Grid */
.pd-lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.pd-lesson-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  position: relative;
}

.pd-lesson-num {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #0078d4, #06b6d4);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}

.pd-lesson-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 8px;
}

.pd-lesson-card p {
  font-size: 14px;
  color: #57606a;
  line-height: 1.6;
}

/* References */
.pd-references-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-reference-link {
  background: #f0f4ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pd-reference-link:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Back Row */
.pd-back-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
}

/* Value Table */
.pd-value-table td:first-child {
  font-weight: 500;
  color: #0d1117;
}

/* ===============================
   RESPONSIVE — PROJECT DETAIL
================================ */
@media (max-width: 900px) {
  .pd-overview-grid,
  .pd-arch-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-hero {
    padding: 30px 20px;
  }

  .project-detail-hero h1 {
    font-size: 26px;
  }

  .project-detail-hero-stats {
    gap: 18px;
  }

  .pd-solution-outcomes {
    flex-direction: column;
  }

  .pd-screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-cards-grid {
    grid-template-columns: 1fr;
  }

  .pd-screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .pd-lessons-grid,
  .pd-skills-grid,
  .pd-tech-tags-grid {
    grid-template-columns: 1fr;
  }

  .pd-phase-header {
    flex-wrap: wrap;
  }
}

.resume-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.resume-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.resume-header p {
  font-size: 16px;
  color: #57606a;
  max-width: 750px;
}

.resume-section {
  margin-top: 50px;
}

.resume-section h2 {
  font-size: 24px;
  border-bottom: 2px solid #eaeef2;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.item {
  margin-bottom: 24px;
}

.item .year {
  font-size: 13px;
  color: #57606a;
}

.item h3 {
  font-size: 18px;
  margin: 4px 0;
}

.cert-list {
  padding-left: 18px;
}

.resume-download {
  margin-top: 60px;
  text-align: center;
}
