/* Resume Page Styles */
.resume-hero {
    padding: 80px 0 40px;
    text-align: center;
  }
  
  .resume-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .resume-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .resume-actions .download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  /* Download Button Styles */
  .download-btn {
      position: relative;
      overflow: hidden;
  }
  
  .download-btn::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%;
  }
  
  .download-btn:focus:not(:active)::after {
      animation: ripple 1s ease-out;
  }
  
  .download-btn.downloading {
      background-color: var(--neon-green);
      color: var(--dark-bg);
      cursor: wait;
  }
  
  .resume-actions .download-btn.alt {
    background-color: transparent;
    border: 2px solid var(--neon-green);
    color: var(--text-color);
  }
  
  .resume-actions .download-btn.alt:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
  }
  
  /* Resume Container */
  .resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Resume Sections */
  .resume-section {
    padding: 30px;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .resume-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 170, 0.1);
    border-color: rgba(0, 255, 170, 0.3);
  }
  
  .resume-section:last-child {
    margin-bottom: 0;
  }
  
  .resume-section .section-title {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: var(--neon-green);
  }
  
  .resume-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--neon-green);
  }
  
  /* Profile Section */
  .profile-section {
    padding-bottom: 40px;
  }
  
  .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-green);
    margin-right: 30px;
    flex-shrink: 0;
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-info h2 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  .profile-info h3 {
    font-size: 18px;
    color: var(--neon-green);
    margin-bottom: 15px;
  }
  
  .profile-contact {
    margin-bottom: 15px;
  }
  
  .profile-contact p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
  }
  
  .profile-contact p i {
    width: 20px;
    margin-right: 10px;
    color: var(--neon-green);
  }
  
  .profile-social {
    display: flex;
    gap: 10px;
  }
  
  .profile-social .social-icon {
    width: 35px;
    height: 35px;
  }
  
  .profile-summary {
    margin-top: 20px;
  }
  
  .profile-summary p {
    color: var(--text-secondary);
    line-height: 1.8;
  }
  
  /* Timeline Styles */
  .timeline {
    position: relative;
    padding-left: 30px;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 255, 170, 0.3);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-dot {
    position: absolute;
    top: 5px;
    left: -30px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--neon-green);
    border: 3px solid var(--dark-bg);
    z-index: 1;
  }
  
  .timeline-date {
    margin-bottom: 10px;
  }
  
  .timeline-date span {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 255, 170, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 700;
  }
  
  .timeline-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .timeline-content h5 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 15px;
  }
  
  .timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  .timeline-content ul {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .timeline-content ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  /* Skills Styles */
  .skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .skills-category {
    margin-bottom: 30px;
  }
  
  .skills-category h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
  }
  
  .skills-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .skill-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .skill-name {
    font-size: 14px;
    color: var(--text-secondary);
  }
  
  .skill-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .skill-progress {
    height: 100%;
    background-color: var(--neon-green);
    border-radius: 3px;
  }
  
  .skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .skill-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 255, 170, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .skill-tag:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
  }
  
  /* Projects Styles */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .project-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--neon-green);
  }
  
  .project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .project-header h4 {
    font-size: 18px;
  }
  
  .project-links {
    display: flex;
    gap: 10px;
  }
  
  .project-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  
  .project-link:hover {
    color: var(--neon-green);
  }
  
  .project-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .project-tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(0, 255, 170, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: var(--neon-green);
  }
  
  /* Languages Styles */
  .languages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .language-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .language-name {
    font-size: 16px;
    font-weight: 700;
  }
  
  .language-level {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .level-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .level-dot.active {
    background-color: var(--neon-green);
  }
  
  .level-label {
    margin-left: 10px;
    font-size: 12px;
    color: var(--text-secondary);
  }
  
  /* Interests Styles */
  .interests-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .interest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100px;
    text-align: center;
  }
  
  .interest-item i {
    font-size: 24px;
    color: var(--neon-green);
  }
  
  .interest-item span {
    font-size: 14px;
    color: var(--text-secondary);
  }
  
  /* Resume CTA */
  .resume-cta {
    text-align: center;
    padding: 80px 0;
    margin-top: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      radial-gradient(circle at center, rgba(0, 255, 170, 0.1) 0%, transparent 70%);
    border-radius: 20px;
  }
  
  .resume-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .resume-cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .resume-cta .hire-btn {
    padding: 12px 30px;
    font-size: 18px;
  }
  
  /* Download Success Message */
  .download-success {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: var(--neon-green);
      color: var(--dark-bg);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      z-index: 1000;
      animation: slideIn 0.3s ease forwards, slideOut 0.3s ease 2.7s forwards;
  }
  
  .download-success i {
      font-size: 18px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .skills-container {
      grid-template-columns: 1fr;
    }
  
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .languages-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .profile-header {
      flex-direction: column;
      text-align: center;
    }
  
    .profile-image {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    .profile-social {
      justify-content: center;
    }
  
    .projects-grid {
      grid-template-columns: 1fr;
    }
  
    .resume-hero h1 {
      font-size: 36px;
    }
  
    .resume-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .resume-actions .download-btn {
      width: 100%;
      max-width: 250px;
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .resume-container {
      padding: 20px 10px;
    }
  
    .resume-section {
      padding: 20px;
    }
  
    .languages-container {
      grid-template-columns: 1fr;
    }
  
    .interests-container {
      justify-content: center;
    }
  
    .resume-cta h2 {
      font-size: 28px;
    }
  }
  
  /* Print Styles */
  @media print {
      header, 
      .resume-hero, 
      .resume-actions, 
      .resume-cta,
      .mobile-menu,
      .menu-toggle {
          display: none !important;
      }
      
      body, 
      .container, 
      .resume-container {
          background-color: white !important;
          color: black !important;
          margin: 0 !important;
          padding: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-shadow: none !important;
          border: none !important;
      }
      
      .resume-section {
          page-break-inside: avoid;
          background-color: white !important;
          border: none !important;
          box-shadow: none !important;
          transform: none !important;
          margin-bottom: 20px !important;
      }
      
      .resume-section .section-title {
          color: #333 !important;
      }
      
      .resume-section .section-title::after {
          background-color: #333 !important;
      }
      
      .profile-info h3,
      .skill-progress,
      .level-dot.active,
      .interest-item i {
          color: #333 !important;
          background-color: #333 !important;
      }
      
      .skill-tag, 
      .project-tag,
      .timeline-date span {
          border: 1px solid #ddd !important;
          background-color: #f5f5f5 !important;
          color: #333 !important;
      }
  }
  
  /* Animations */
  @keyframes ripple {
      0% {
          transform: scale(0, 0);
          opacity: 1;
      }
      20% {
          transform: scale(25, 25);
          opacity: 1;
      }
      100% {
          opacity: 0;
          transform: scale(40, 40);
      }
  }
  
  @keyframes slideIn {
      from {
          transform: translateX(100%);
          opacity: 0;
      }
      to {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  @keyframes slideOut {
      from {
          transform: translateX(0);
          opacity: 1;
      }
      to {
          transform: translateX(100%);
          opacity: 0;
      }
  }
  
  