<<<<<<< HEAD
/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #00e87a;
  --green-dk: #00b85f;
  --green-lt: rgba(0, 232, 122, 0.1);
  --green-bd: rgba(0, 232, 122, 0.22);
  --blue:     #4fa8ff;
  --hot:      #ff5c5c;
  --hot-bg:   rgba(255, 92, 92, 0.1);
  --cloud:    #a78bfa;
  --cloud-bg: rgba(167, 139, 250, 0.1);

  --bg:   #05080f;
  --bg2:  #080d18;
  --bg3:  #0c1220;
  --bg4:  #111926;
  --bg5:  #16202e;

  --border:  rgba(255,255,255,0.05);
  --border2: rgba(0,232,122,0.18);
  --border3: rgba(0,232,122,0.35);

  --text:  #c4d4e8;
  --text2: #6a85a0;
  --text3: #384a5e;

  --str:  #7ec8a0;
  --kw:   #4fa8ff;
  --num:  #e8a87c;

  --radius:    12px;
  --radius-sm: 7px;

  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg5); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dk); }

/* ===== MONO UTILITY ===== */
.mono { font-family: var(--font-mono); }
.prompt { color: var(--green); margin-right: 6px; }
.kw   { color: var(--kw); }
.str  { color: var(--str); }
.num  { color: var(--num); }

/* ===== NAV ===== */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 8, 15, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 2px;
}
.logo-bracket { color: var(--green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::before { content: './'; color: var(--text3); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-resume-btn {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 7px 18px;
  border: 1px solid var(--green-bd);
  border-radius: 4px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav-resume-btn:hover {
  background: var(--green-lt);
  border-color: var(--border3);
  box-shadow: 0 0 12px rgba(0,232,122,0.12);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 130px 36px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* animated dot-matrix canvas lives behind */
.dot-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

/* scanline overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px;
  width: 100%;
}

/* terminal title bar */
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 16px;
  width: fit-content;
  min-width: 260px;
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.t-red    { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: var(--green); }
.t-path {
  font-size: 0.72rem;
  color: var(--text2);
  margin-left: 8px;
  letter-spacing: 0.03em;
}

.hero-content {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 0 8px 8px 8px;
  padding: 40px 44px 44px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.cursor-blink {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--green);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeUp 0.7s ease both;
}
.title-dim    { color: var(--text3); }
.title-accent { color: var(--green); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.25s ease both;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--bg3);
  transition: all 0.2s;
}
.social-pill:hover {
  border-color: var(--green-bd);
  color: var(--green);
  background: var(--green-lt);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.35s ease both;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,232,122,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
}
.btn-secondary:hover {
  border-color: var(--green-bd);
  color: var(--green);
  background: var(--green-lt);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 36px; }

.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  color: var(--text2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 52px;
}
.section-title em { font-style: normal; color: var(--green); }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text2);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.85;
}
.about-text strong { color: var(--text); font-weight: 500; }

.target-box {
  background: var(--bg3);
  border: 1px solid var(--green-bd);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 24px;
}
.target-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text2);
  margin-bottom: 12px;
}
.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.target-tags span {
  background: var(--bg4);
  color: var(--green);
  border: 1px solid var(--green-bd);
  padding: 4px 11px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s var(--ease);
}
.stat-card:hover {
  border-color: var(--green-bd);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,232,122,0.06);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-num small { font-size: 0.5em; }
.stat-label {
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.04em;
}

/* ===== SKILLS ===== */
.skills { background: var(--bg); }

.skills-note {
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: -30px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skill-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all 0.25s var(--ease);
}
.skill-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.skill-hot {
  border-color: rgba(255,92,92,0.18);
  background: linear-gradient(135deg, var(--bg2), rgba(255,92,92,0.04));
}
.skill-hot:hover { border-color: rgba(255,92,92,0.35); }

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.skill-card-header h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.skill-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 3px;
}
.badge-core  { background: var(--green-lt); color: var(--green); border: 1px solid var(--green-bd); }
.badge-hot   { background: var(--hot-bg); color: var(--hot); border: 1px solid rgba(255,92,92,0.25); }
.badge-cloud { background: var(--cloud-bg); color: var(--cloud); border: 1px solid rgba(167,139,250,0.25); }

.skill-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skill-tags li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text2);
  font-family: var(--font-body);
  line-height: 1.5;
  transition: color 0.2s;
}
.skill-tags li:hover { color: var(--text); }
.tag-bullet {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.skill-hot .tag-bullet { color: var(--hot); }

/* ===== EXPERIENCE ===== */
.experience { background: var(--bg2); }

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green) 0%, transparent 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 44px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -39px; top: 8px;
  width: 14px; height: 14px;
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 3px;
  transform: rotate(45deg);
  transition: background 0.2s;
}
.timeline-item:hover .timeline-dot { background: var(--green); }

.timeline-content {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: all 0.25s var(--ease);
}
.timeline-content:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.timeline-role {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.timeline-company { font-size: 0.85rem; color: var(--text2); }
.timeline-client  { color: var(--text3); }
.timeline-date {
  font-size: 0.72rem;
  color: var(--green);
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  padding: 4px 11px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.timeline-points {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-points li {
  font-size: 0.875rem;
  color: var(--text2);
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}
.timeline-points li::before {
  content: '›';
  position: absolute; left: 0; top: 1px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 1rem;
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.timeline-tech span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text3);
  background: var(--bg4);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 3px;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-lead {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 32px;
}

.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}
.contact-method:hover {
  border-color: var(--green-bd);
  transform: translateX(4px);
  background: var(--bg3);
}
.method-icon {
  width: 38px; height: 38px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.method-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.method-value {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
}

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.7rem;
  color: var(--text2);
  letter-spacing: 0.05em;
}
.form-group input, .form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text3);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green-bd);
  box-shadow: 0 0 0 3px rgba(0,232,122,0.07);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 36px;
  background: var(--bg);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
footer p { font-size: 0.72rem; color: var(--text3); text-align: center; flex: 1; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 70px 24px; }
  .hero { padding: 110px 24px 70px; }
  .hero-content { padding: 28px 24px 32px; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .hero-title { letter-spacing: -0.5px; }
  .skills-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 22px; }
  .timeline-dot { left: -30px; }
  .timeline-header { flex-direction: column; }
}
=======
/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #d4d4d4;
    line-height: 1.6;
}

header {
    background-color: #252525;
    color: #eee;
    padding: 1em 0;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.7em;
    font-weight: bold;
    color: #00bcd4;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00bcd4;
}

.hero {
    background-color: #252525;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #eee;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.social-links-hero {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links-hero .logo-placeholder img,
.social-links-hero .social-icon {
    width: 64px; /* Even larger for hero */
    height: 64px;
    margin: 0;
    vertical-align: middle;
    filter: grayscale(0%); /* Fully colored */
    transition: opacity 0.3s ease;
}

.social-links-hero a:hover .social-icon {
    opacity: 1;
}

.button {
    display: inline-block;
    background-color: #00bcd4;
    color: #222;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #008ba7;
}

.about, .skills, .contact {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #eee;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 10px;
}

.skills-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-category {
    background-color: #252525;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: calc(33% - 40px);
    min-width: 280px;
    border: 1px solid #333;
}

.skill-category h3 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
    color: #00bcd4;
}

.logo-list {
    list-style: none;
    padding: 0;
}

.logo-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.logo-placeholder img, .tech-logo {
    width: 36px; /* Slightly larger for skills */
    height: 36px;
    margin-right: 15px;
    vertical-align: middle;
    filter: grayscale(0%); /* Fully colored for skills too */
    transition: filter 0.3s ease;
}

.contact p {
    color: #ccc;
    margin-bottom: 15px;
    text-align: center;
}

.contact p a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact p a:hover {
    color: #008ba7;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 20px;
    background-color: #252525;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #eee;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #333;
    color: #eee;
}

.form-group textarea {
    resize: vertical;
}

footer {
    background-color: #252525;
    color: #aaa;
    text-align: center;
    padding: 2em 0;
    border-top: 1px solid #333;
    position: sticky;
    bottom: 0;
    width: 100%;
}

/* Basic responsive adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 15px 0;
    }

    .skills-list {
        flex-direction: column;
        align-items: stretch;
    }

    .skill-category {
        width: 100%;
    }

    .social-links-hero {
        flex-direction: row;
        justify-content: center;
        gap: 20px; /* Adjust spacing for smaller screens */
    }

    .social-links-hero .logo-placeholder img,
    .social-links-hero .social-icon {
        width: 48px; /* Slightly smaller on smaller screens */
        height: 48px;
    }
}

.resume-download {
    margin-top: 20px; /* or any value you prefer */
}
>>>>>>> a3d3d1c2880dda1dfa9bf7bde3458ad8a2f6bc50
