body {
  background: #646464 !important;
  background-image: none !important;
}
/* Resume-specific styles */
.resume-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.section-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem; /* Adjust as needed for spacing below the header */
}

/* Optional: You may need to remove the margin from the original header */
.section-header-container .section-header {
    margin: 0;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-back:hover {
  color: #60a5fa;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.resume-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 40px;
}

/* Work Experience Timeline */
.resume-section {
  position: relative;
}

.section-header {
  font-size: 2rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, #00eaff, #1794c2, #00eaff);
}

.timeline-item:last-child::before {
  bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #44d0ef;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.timeline-content {
  padding: 24px;
  margin-left: 16px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.job-meta {
  text-align: right;
}

.company {
  display: block;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.date {
  font-size: 0.875rem;
  color: #ffffff;
}

.job-description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: rgba(96, 165, 250, 0.1);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(96, 165, 250, 0.2);
}


/* Download button section and styling */
.download-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-btn:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
  color: #00e3f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
}

.download-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Sidebar Styles */
.resume-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-section {
  background: rgb(79, 78, 78);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Education Styles */
.education-item {
  padding: 16px;
  margin-bottom: 16px;
}

.degree-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.institution {
  color: #60a5fa;
  font-weight: 500;
  margin-bottom: 4px;
}

.education-details {
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.gpa {
  color: #ffffff;
  font-size: 0.75rem;
}

/* Coursework Styles */
.coursework-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.course-code {
  font-family: "Courier New", monospace;
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.course-name {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Awards Styles */
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.award-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.award-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.award-desc {
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.4;
}

/* Skills Styles */
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-category-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 8px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}

/* Skill badge colors */
.skill-badge.python {
  background: rgba(255, 212, 59, 0.1);
  color: #ffd43b;
  border-color: rgba(255, 212, 59, 0.2);
}
.skill-badge.cpp {
  background: rgba(2, 165, 180, 0.1);
  color: #91cfff;
  border-color: rgba(6, 191, 247, 0.2);
}
.skill-badge.c {
  background: rgba(232, 131, 232, 0.1);
  color: #f8a305;
  border-color: rgba(248, 220, 5, 0.2);
}
.skill-badge.julia {
  background: rgba(203, 60, 151, 0.1);
  color: #ea0f9a;
  border-color: rgba(203, 60, 151, 0.2);
}
.skill-badge.java {
  background: rgba(237, 117, 36, 0.1);
  color: #ed7524;
  border-color: rgba(237, 117, 36, 0.2);
}
.skill-badge.js {
  background: rgba(247, 223, 30, 0.1);
  color: #f7df1e;
  border-color: rgba(247, 223, 30, 0.2);
}
.skill-badge.swift {
  background: rgba(250, 95, 85, 0.1);
  color: #fa5f55;
  border-color: rgba(250, 95, 85, 0.2);
}
.skill-badge.react {
  background: rgba(97, 218, 251, 0.1);
  color: #61dafb;
  border-color: rgba(97, 218, 251, 0.2);
}
.skill-badge.pytorch {
  background: rgba(238, 76, 44, 0.1);
  color: #ee4c2c;
  border-color: rgba(238, 76, 44, 0.2);
}
.skill-badge.tensorflow {
  background: rgba(255, 109, 7, 0.1);
  color: #ff6d07;
  border-color: rgba(255, 109, 7, 0.2);
}
.skill-badge.docker {
  background: rgba(41, 128, 185, 0.1);
  color: #0b96f2;
  border-color: rgba(41, 128, 185, 0.2);
}
.skill-badge.ros {
  background: rgba(42, 175, 42, 0.1);
  color: #0bf30b;
  border-color: rgba(34, 139, 34, 0.2);
}
.skill-badge.git {
  background: rgba(237, 54, 22, 0.1);
  color: #f32703;
  border-color: rgba(240, 80, 51, 0.2);
}
.skill-badge.matlab {
  background: rgba(15, 140, 194, 0.1);
  color: #00b3ff;
  border-color: rgba(0, 118, 168, 0.2);
}
.skill-badge.cad {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border-color: rgba(34, 100, 180, 0.2);
}
.skill-badge.arduino {
  background: rgba(0, 129, 132, 0.1);
  color: #18e6e9;
  border-color: rgba(0, 129, 132, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .resume-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px 20px 40px;
  }

  .resume-nav {
    left: 10px;
    right: 10px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .job-meta {
    text-align: left;
  }

  .timeline-item {
    padding-left: 32px;
  }

  .timeline-content {
    margin-left: 8px;
  }
}




/*
Home Page
Student not researcher and engineer

Hi! My name is Sagar! (not hello)

6 Associates Degrees in the science and engineering field

I like to focus on things that quency my curiousty, growth, etc. 

*/