/* ============================================
   CENTRALIZED COLOR SYSTEM - EASY TO MODIFY
   ============================================ */

:root {
  /* Base Colors - Core Theme */
  --dark: #50514F;          /* Dark gray for text */
  --light: #ffffff;         /* Light background */
  
  /* PRIMARY Color Palette - Change these to update main theme */
  --primary: #247BA0;       /* Primary blue - Main brand color */
  --primary-light: #5DA8D0; /* Lighter shade of primary */
  --primary-dark: #1A5A7A;  /* Darker shade of primary */
  
  /* SECONDARY Color Palette - Complementary colors */
  --secondary: #70C1B3;     /* Teal/cyan - Secondary accent */
  --secondary-light: #9FD9CE; /* Lighter secondary */
  --secondary-dark: #4A9C8E;  /* Darker secondary */
  
  /* ACCENT Color Palette - Attention/emphasis colors - CHANGE THESE! */
  --accent: #FF7F50;        /* Coral orange - Primary accent (Changed from #F25F5C) */
  --accent-light: #FFA07A;  /* Light salmon - Lighter accent */
  --accent-dark: #E66741;   /* Dark coral - Darker accent */
  
  /* HIGHLIGHT Color Palette - Highlights/attention */
  --highlight: #FFD166;     /* Golden yellow - Highlights */
  --highlight-light: #FFE08A; /* Lighter highlight */
  --highlight-dark: #F2B93B;  /* Darker highlight */
  
  /* Semantic Colors - Derived from above */
  --success: #70C1B3;       /* Success states (using secondary) */
  --warning: #FFD166;       /* Warning states (using highlight) */
  --error: #FF7F50;         /* Error states (using accent) */
  --info: #247BA0;          /* Info states (using primary) */
  
  /* UI Element Colors */
  --border-color: rgba(80, 81, 79, 0.2);
  --shadow-color: rgba(80, 81, 79, 0.1);
  --overlay-color: rgba(80, 81, 79, 0.6);
  
  /* Card Colors */
  --card-bg: white;
  --card-border: rgba(80, 81, 79, 0.1);
  --card-shadow: 0 2px 8px rgba(80, 81, 79, 0.06);
  --card-hover-shadow: 0 12px 24px rgba(80, 81, 79, 0.12);
  
  /* Timeline Colors */
  --timeline-bg: linear-gradient(90deg, 
    rgba(36, 123, 160, 0.1) 0%, 
    rgba(112, 193, 179, 0.1) 100%);
  --timeline-progress: linear-gradient(90deg, 
    var(--secondary) 0%, 
    var(--primary) 100%);
  --timeline-point-bg: white;
  --timeline-point-border: var(--primary);
  --timeline-point-active: var(--primary);
  
  /* Social Media Brand Colors */
  --github-color: #50514F;
  --youtube-color: #FF0000;
  --linkedin-color: #0077B5;
  --twitter-color: #1DA1F2;
  --instagram-color: #E4405F;
  --website-color: #70C1B3;
  --email-color: #FFD166;
}

/* ============================================
   MAIN STYLES
   ============================================ */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navigation */
.nav-container {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
  opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary);
  color: white;
  opacity: 1;
}

/* Search Bar */
.search-section {
  margin: 30px 0;
  width: 100%;
}

.search-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.search-bar {
  width: 100%;
  padding: 16px 24px;
  background: white;
  color: var(--dark);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: var(--card-shadow);
}

.search-bar::placeholder {
  color: rgba(80, 81, 79, 0.4);
}

.search-bar:focus {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(36, 123, 160, 0.15);
  transform: translateY(-2px);
}

/* Search States */
.search-bar.searching {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23247BA0" stroke-width="2"><path d="M12 2v4m0 12v4M4.93 4.93l2.83 2.83m8.48 8.48l2.83 2.83M2 12h4m12 0h4M4.93 19.07l2.83-2.83m8.48-8.48l2.83-2.83"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 50px;
}

.search-bar.error {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FF7F50" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 50px;
  border-color: var(--accent);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Modern Flat UI Styling */
.flat-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.flat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Hero Section */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  margin-bottom: 24px;
  width: 100%;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 20px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Redesigned Timeline Slider */
.timeline-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 0;
}

.timeline-wrapper {
  position: relative;
  height: 180px;
  margin-bottom: 60px;
  cursor: pointer;
  user-select: none;
}

.timeline {
  position: relative;
  height: 100%;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 6px;
  background: var(--timeline-bg);
  border-radius: 3px;
  transform: translateY(-50%);
  overflow: visible;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--timeline-progress);
  border-radius: 3px;
  opacity: 0.1;
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--timeline-progress);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 0 20px rgba(36, 123, 160, 0.3);
}

.timeline-progress::after {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  width: 4px;
  background: var(--highlight);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--highlight);
}

/* Timeline Points with Vertical Extensions */
.timeline-point-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-point {
  width: 20px;
  height: 20px;
  background: var(--timeline-point-bg);
  border: 4px solid var(--timeline-point-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 10px rgba(36, 123, 160, 0.2);
  position: relative;
  z-index: 2;
}

.timeline-point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(36, 123, 160, 0.1);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-point:hover {
  transform: translateY(-50%) translateX(-50%) scale(1.5);
  box-shadow: 0 4px 20px rgba(36, 123, 160, 0.4);
}

.timeline-point:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.timeline-point.active {
  background: var(--timeline-point-active);
  border-color: var(--timeline-point-active);
  transform: translateY(-50%) translateX(-50%) scale(1.6);
  box-shadow: 0 0 0 6px rgba(36, 123, 160, 0.2),
              0 4px 25px rgba(36, 123, 160, 0.4);
  z-index: 5;
}

.timeline-point.active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.4);
}

/* Vertical Connection Lines */
.timeline-point-line {
  position: absolute;
  bottom: 100%;
  width: 2px;
  height: 40px;
  background: linear-gradient(to top, 
    rgba(36, 123, 160, 0.3) 0%, 
    transparent 100%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.timeline-point-container.active .timeline-point-line {
  height: 60px;
  background: linear-gradient(to top, 
    var(--primary) 0%, 
    rgba(36, 123, 160, 0.5) 100%);
  box-shadow: 0 0 10px rgba(36, 123, 160, 0.3);
}

/* Job Title Labels */
.timeline-point-label {
  position: absolute;
  bottom: calc(100% + 50px);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--dark), #404140);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 8px 30px var(--shadow-color);
  min-width: 200px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.timeline-point-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--dark) transparent transparent transparent;
}

.timeline-point-container:hover .timeline-point-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.timeline-point-container.active .timeline-point-label {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
  z-index: 6;
}

.timeline-point-container.active .timeline-point-label::after {
  border-color: var(--primary) transparent transparent transparent;
}

/* Year Indicators */
.timeline-year {
  position: absolute;
  top: calc(50% + 25px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.timeline-point-container:hover .timeline-year {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
  background: rgba(255, 255, 255, 1);
}

.timeline-point-container.active .timeline-year {
  opacity: 1;
  color: var(--primary);
  font-weight: 600;
  background: rgba(36, 123, 160, 0.1);
  transform: translateX(-50%) translateY(2px);
}

/* Timeline Background Glow */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(112, 193, 179, 0.05) 0%,
    rgba(36, 123, 160, 0.05) 50%,
    transparent 70%
  );
  transform: translateY(-50%);
  border-radius: 40px;
  z-index: 0;
}

/* Active Job Pulse Effect */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 123, 160, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(36, 123, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(36, 123, 160, 0);
  }
}

.timeline-point.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
  z-index: 1;
}

/* Job Info Display */
.job-info-container {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--secondary);
  min-height: 200px;
}

.job-info {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.job-info.active {
  opacity: 1;
  transform: translateY(0);
}

.job-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-title-icon {
  color: var(--primary);
}

.job-dates {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-dates i {
  font-size: 18px;
}

.job-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  opacity: 0.9;
  margin-bottom: 20px;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.job-detail {
  flex: 1;
  min-width: 200px;
}

.detail-label {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 4px;
  font-weight: 500;
}

.detail-value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

/* Sections */
.section-spacing {
  margin-bottom: 80px;
}

.topics-section {
  padding-top: 40px;
}

.section-title {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-icon {
  margin-right: 12px;
  color: var(--accent);
}

.section-description {
  color: var(--dark);
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 700px;
  opacity: 0.9;
  text-align: center;
  margin: 0 auto 40px;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Project Cards */
.project-card {
  height: 100%;
  cursor: pointer;
  position: relative;
}

.project-content {
  padding: 30px;
}

.project-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.project-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.project-description {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(80, 81, 79, 0.1);
}

.project-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-time {
  color: var(--dark);
  font-size: 12px;
  background: rgba(80, 81, 79, 0.08);
  padding: 4px 10px;
  border-radius: 12px;
  opacity: 0.8;
}

/* Skill/Hobby/Topic Cards */
.content-card {
  padding: 30px;
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.skill-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hobby-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.topic-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.card-description {
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.9;
}

.card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(80, 81, 79, 0.1);
}

.card-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  opacity: 0.8;
}

/* Topic Tags */
.topic-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(36, 123, 160, 0.1);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin: 4px 8px 4px 0;
}

.subtopics-container {
  margin-top: 20px;
}

.subtopics-label {
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 500;
  opacity: 0.8;
}

.subtopics-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0;
  margin-top: 60px;
  text-align: center;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
  color: var(--highlight);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.footer-text {
  opacity: 0.8;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-subtext {
  opacity: 0.6;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
}

/* Accessibility Focus Styles */
.nav-link:focus,
.search-bar:focus,
.footer-link:focus,
.timeline-point:focus {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .flat-card:hover {
    transform: none;
  }
  
  .timeline-point:hover,
  .timeline-point.active {
    transform: translateY(-50%) translateX(-50%);
  }
  
  .footer-link:hover {
    transform: none;
  }
}

/* Performance Optimizations */
.timeline-point,
.timeline-progress,
.flat-card {
  will-change: transform;
}

.project-card:hover,
.timeline-point:hover {
  transform: translateZ(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .search-section {
    margin: 20px 0;
  }
  
  .search-container {
    max-width: 100%;
  }
  
  .search-bar {
    padding: 14px 20px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 18px;
    padding: 0 16px;
  }
  
  .timeline-wrapper {
    height: 150px;
    margin-bottom: 40px;
  }
  
  .timeline-track {
    left: 20px;
    right: 20px;
  }
  
  .timeline-point-label {
    font-size: 12px;
    padding: 10px 16px;
    min-width: 160px;
    bottom: calc(100% + 40px);
  }
  
  .timeline-wrapper::before {
    left: 20px;
    right: 20px;
  }
  
  .job-info-container {
    padding: 20px;
  }
  
  .job-title {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .grid, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .footer-link {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .footer-text {
    font-size: 15px;
  }
  
  .footer-subtext {
    font-size: 13px;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .timeline-wrapper {
    height: 130px;
  }
  
  .timeline-point-label {
    position: static;
    transform: none;
    margin-top: 8px;
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 11px;
    min-width: 120px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  
  .timeline-point-container:hover .timeline-point-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
  }
  
  .timeline-point {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  
  .timeline-point-line {
    height: 30px;
  }
  
  .timeline-point-container:hover .timeline-point-line,
  .timeline-point-container.active .timeline-point-line {
    height: 45px;
  }
  
  .timeline-year {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .job-details {
    flex-direction: column;
    gap: 12px;
  }
  
  .search-bar {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .footer-links {
    gap: 15px;
  }
  
  .footer-link {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}