html {
  font-size: 16px;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}


h1 {
  margin: 0;
  padding-left: 10px;
  line-height: 60px;
  color: white;
  text-shadow: 2px 2px black;
  font-family: monospace;
}

.url {
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--transition);
  position: relative;
}

.url:hover {
  color: #64b5f6;
  text-decoration: none;
}

.url::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(135deg, var(--accent-color), #64b5f6);
  transition: var(--transition);
}

.url:hover::after {
  width: 100%;
}

#about p.first-line {
  margin-top: 1em;
}

#about p.last-line {
  margin-bottom: 1em;
}

/* Removed commented out unused CSS */

#mail {
  color: rgb(0, 119, 255)
}

#mail:hover {
  text-decoration: overline underline;
  text-shadow: -5px,5px;
  color:rgb(0, 112, 163);
}

header {
  height: relative;
  width: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}


#banner {
  border: 3px solid black;
}

.articletitle {
  margin: 3rem 0 2rem 0;
  color: var(--accent-color);
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(74, 158, 255, 0.3);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  padding-left: 1rem;
}

.articletitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #64b5f6);
  border-radius: 2px;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 4%;
  margin-right: 4%;
  color: var(--text-color);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-indent: 5px;
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}

/* Keep monospace for specific lists */
ul.skills-list,
#skills ul,
#languages ul {
  font-family: 'Courier New', Consolas, Monaco, monospace;
}

ul li {
  margin: 0.25rem 0;
  padding-left: 0.5rem;
}

ul li::marker {
  color: var(--accent-color);
  font-size: 1.2em;
}

hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin-top: 2rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  border-radius: 1px;
  box-shadow: 0 2px 15px rgba(74, 158, 255, 0.3);
  position: relative;
}

hr::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.6);
}

#welcome {
  margin: 1.5rem 0 1rem 0;
  color: var(--accent-color);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(74, 158, 255, 0.3);
  font-size: 2.2rem;
  text-align: center;
  padding: 0 0.25rem;
}


.article {
  margin-top: 5px;
  margin-left: 2%;
  margin-right: 2%;
  color: var(--text-color);
  text-align: justify;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: none;
  text-indent: 5px;
}



.langs {
  font-weight: 600;
  color: var(--text-color);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.2;
}

.subdesc {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-secondary);
  font-family: 'Inter', system-ui, sans-serif;
}

footer {
  color: var(--text-secondary);
  margin-top: 0rem;
  padding: 2rem;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
}

.icons {
  height: 20px;
  width: 20px;
  margin: 0;
  vertical-align: middle;
}

.iconslong {
  height: 20px;
  width: 30px;
  margin: 0;
  vertical-align: middle;
}

.flags {
  vertical-align: middle;
}

/* Titlebar flags styling */
.titlebar-flags {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Hide mobile flags on desktop */
.mobile-language-flags {
  display: none;
}

.flag-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem;
  border-radius: 3px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.flag-btn img {
  width: 16px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #2d2d2d;
  --accent-color: #4a9eff;
  --text-color: #ffffff;
  --text-secondary: #b0b0b0;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.3);
  --border-radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --mac-titlebar-height: 28px;
  --mac-button-size: 12px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1e1e1e;
  padding: 20px;
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Mac Window Container */
.mac-window {
  width: 100%;
  max-width: 1400px;
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: visible;
  position: relative;
  margin: 0 auto;
}

/* Mac Titlebar */
.mac-titlebar {
  height: var(--mac-titlebar-height);
  background: linear-gradient(180deg, #3c3c3c 0%, #2a2a2a 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 1001;
  -webkit-user-select: none;
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px 12px 0 0;
}

/* Mac Buttons Container */
.mac-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Mac Action Buttons */
.mac-button {
  width: var(--mac-button-size);
  height: var(--mac-button-size);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.mac-button.close {
  background: linear-gradient(135deg, #ff5f57 0%, #ff4444 100%);
}

.mac-button.minimize {
  background: linear-gradient(135deg, #ffbd2e 0%, #ffaa00 100%);
}

.mac-button.maximize {
  background: linear-gradient(135deg, #28ca42 0%, #20a034 100%);
}

/* Mac Button Hover Effects */
.mac-button:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mac-button.close:hover::after {
  content: '×';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b0000;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

.mac-button.minimize:hover::after {
  content: '−';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b4500;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

.mac-button.maximize:hover::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0f5132;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

/* Mac Title */
.mac-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 280px);
}

/* Mac Content Area */
.mac-content {
  background: #2a2a2a;
  min-height: calc(100vh - 80px);
  position: relative;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: var(--mac-titlebar-height);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.logo {
  text-decoration: none;
  color: white;
  text-align: center;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), #64b5f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: -0.9;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.navbar ul li a:hover {
  background: linear-gradient(135deg, var(--accent-color), #64b5f6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.menu-toggle div {
  width: 24px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active div:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive Design for Mac Window */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .mac-window {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .mac-titlebar {
    height: 32px;
    padding: 0 12px;
  }
  
  .mac-button {
    width: 14px;
    height: 14px;
  }
  
  .mac-title {
    font-size: 12px;
    max-width: calc(100% - 120px);
  }
  
  .mac-content {
    min-height: calc(100vh - 60px);
  }
}

/* Responsive Design */
@media (max-width: 1300px) {
  .navbar {
    padding: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hide titlebar flags on mobile */
  .titlebar-flags {
    display: none;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    width: max-content;
    min-width: 140px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    margin: 0;
    padding: 0.2rem;
    display: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar.open ul {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .navbar ul li {
    width: 100%;
  }

  /* Mobile language flags styling */
  .mobile-language-flags {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    width: 100%;
  }
  
  .mobile-language-flags .flag-btn {
    padding: 0.2rem;
  }
  
  .mobile-language-flags .flag-btn img {
    width: 18px;
  }

  .navbar ul li a {
    padding: 0.3rem 0.6rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .navbar ul li:last-child a {
    border-bottom: none;
  }

  .flag-btn img {
    width: 20px;
  }

  main {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .academic-item {
    margin: 0.75rem 0.5% 0.75rem 0.5%;
    padding: 0.75rem;
  }
  
  .academic-header h3 {
    font-size: 1rem;
  }
  
  .degree-title {
    font-size: 0.9rem;
  }
  
  .year-status {
    gap: 0.2rem;
  }
  
  .year {
    font-size: 0.75rem;
  }
  
  .position-title {
    font-size: 0.9rem;
  }
  
  .duration {
    font-size: 0.75rem;
  }
  
  .work-item .company-description {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
  
  .certificate-title {
    font-size: 0.9rem;
  }
  
  .cert-date {
    font-size: 0.75rem;
  }
  
  .certificate-id {
    font-size: 0.8rem;
  }
  
  .project-title {
    font-size: 0.9rem;
  }
  
  .project-date {
    font-size: 0.75rem;
  }
  
  .project-agency {
    font-size: 0.8rem;
    padding: 0.3rem;
  }
  
  .project-url .url {
    font-size: 0.8rem;
  }
  
  .project-access {
    font-size: 0.8rem;
    padding: 0.3rem;
    margin-top: 0.4rem;
  }
  
  .project-access .url {
    font-size: 0.8rem;
  }
  
  .skill-subsection-title {
    font-size: 0.9rem;
    margin: 0.75rem 0 0.5rem 0.75rem;
    padding-left: 0.5rem;
  }

  .skill-row {
    margin-bottom: 0.4rem;
  }
  
  .skill-type-label {
    font-size: 0.7rem;
  }
  
  .skills-list {
    gap: 0.25rem;
  }
  
  .skill-item {
    padding: 0.1rem 0.25rem;
    gap: 0.15rem;
    font-size: 0.65rem;
  }
  
  .skill-icon {
    width: 12px;
    height: 12px;
  }

  .soft-skills-row,
  .languages-list-centered {
    gap: 0.25rem;
  }
  
  .soft-skill-item,
  .language-item {
    padding: 0.1rem 0.25rem;
    font-size: 0.65rem;
  }
  
  .language-flag {
    width: 12px;
    height: 9px;
  }
  
  .contact-info {
    font-size: 0.75rem;
  }

  .about-paragraph {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  #welcome {
    margin: 0.75rem 0 0.5rem 0;
    font-size: 1.4rem;
    padding: 0;
  }
  
  .academic-item .achievements {
    padding: 0.5rem;
    margin-top: 0.75rem;
  }

  .article {
    font-size: 1rem;
    margin-left: 1%;
    margin-right: 1%;
  }

  ul {
    margin-left: 2%;
    margin-right: 2%;
  }

  .articletitle {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin: 2rem 0 1.5rem 0;
  }

  .edutitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 0.5rem;
  }

  .academic-item {
    margin: 1rem 1% 1rem 1%;
    padding: 0.75rem;
  }
  
  .academic-header h3 {
    font-size: 1.125rem;
    min-width: auto;
  }
  
  .degree-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .degree-title {
    font-size: 1rem;
    min-width: auto;
  }
  
  .year-status {
    align-items: center;
    gap: 0.25rem;
  }
  
  .year {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }

  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .position-title {
    font-size: 1rem;
    min-width: auto;
  }
  
  .duration-status {
    align-items: center;
    gap: 0.25rem;
  }
  
  .duration {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }

  .certificate-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .certificate-title {
    font-size: 1rem;
    min-width: auto;
  }
  
  .cert-date {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .project-title {
    font-size: 1rem;
    min-width: auto;
  }
  
  .project-date-status {
    align-items: center;
    gap: 0.25rem;
  }
  
  .project-date {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
  
  .project-agency {
    font-size: 0.85rem;
    padding: 0.4rem;
  }
  
  .project-access {
    font-size: 0.85rem;
    padding: 0.4rem;
    margin-top: 0.5rem;
  }

  .skill-subsection-title {
    font-size: 1rem;
    margin: 1rem 0 0.75rem 1rem;
    padding-left: 0.75rem;
  }

  .skill-row {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .skill-type-label {
    font-size: 0.75rem;
    min-width: auto;
    margin-top: 0;
  }
  
  .skills-list {
    gap: 0.3rem;
  }
  
  .skill-item {
    padding: 0.15rem 0.3rem;
    gap: 0.2rem;
    font-size: 0.7rem;
  }

  .soft-skills-row,
  .languages-list-centered {
    gap: 0.3rem;
  }
  
  .soft-skill-item,
  .language-item {
    padding: 0.15rem 0.3rem;
    font-size: 0.7rem;
  }
  
  .language-flag {
    width: 14px;
    height: 10px;
  }
  
  .contact-info {
    font-size: 0.8rem;
  }

  .about-paragraph {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  #welcome {
    margin: 1rem 0 0.75rem 0;
    font-size: 1.8rem;
    padding: 0;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  body {
    padding: 5px;
  }
  
  .mac-window {
    border-radius: 6px;
  }
  
  .mac-titlebar {
    height: 28px;
    padding: 0 8px;
  }
  
  .mac-buttons {
    gap: 6px;
  }
  
  .mac-button {
    width: 12px;
    height: 12px;
  }
  
  .mac-title {
    font-size: 11px;
    max-width: calc(100% - 100px);
  }
  
  /* Show titlebar flags on mobile titlebar */
  .titlebar-flags {
    display: none;
  }
  
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  main {
    padding: 0.8rem;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar ul {
    gap: 0.1rem;
  }

  .navbar ul li a {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  main {
    padding: 1.5rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  background: transparent;
  border-radius: var(--border-radius);
  margin-top: 0;
  margin-bottom: 2rem;
  box-shadow: none;
}

section {
  min-height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}


.edutitle {
  margin: 2rem 0 1rem 0;
  padding: 0 1rem;
  color: var(--text-color);
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  text-shadow: none;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

/* Academic Career Section Styles */
.academic-item {
  background: rgba(45, 45, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin: 1.5rem 2% 1.5rem 2%;
  padding: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.academic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(74, 158, 255, 0.3);
  background: rgba(45, 45, 45, 0.9);
}

.academic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.academic-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-family: 'Inter', system-ui, sans-serif;
}

.degree-entry {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.degree-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.degree-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  flex: 1;
  min-width: 200px;
}

.year-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.year {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74, 158, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', system-ui, sans-serif;
}

.status-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-inprogress {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-transferred {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-currently {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-formerly {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-ongoing {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-suspended {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-cancelled {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.academic-item .achievements {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
}

.academic-item .achievements strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Work Experience Section Styles */
.work-item .company-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 0.5rem;
  background: rgba(74, 158, 255, 0.05);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 4px 4px 0;
}

.position-entry {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.position-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.position-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  flex: 1;
  min-width: 200px;
}

.duration-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.duration {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74, 158, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.responsibilities {
  margin-top: 0.5rem;
  padding-left: 0.75rem;
}

.responsibilities li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Certificate Section Styles */
.certificate-entry {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.certificate-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  flex: 1;
  min-width: 200px;
}

.cert-date {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid;
}

.cert-date-single {
  color: #eab308;
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.2);
}

.cert-date-range {
  color: #f97316;
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}

.certificate-id {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Project Section Styles */
.project-entry {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  flex: 1;
  min-width: 200px;
}

.project-date-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.project-date {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74, 158, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.project-agency {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 0.5rem;
  background: rgba(74, 158, 255, 0.05);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 4px 4px 0;
}

.project-url {
  margin-top: 0.5rem;
}

.project-url .url {
  font-size: 0.85rem;
  word-break: break-all;
}

.project-access {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', system-ui, sans-serif;
  margin-top: 0.5rem;
  padding: 0.4rem;
  background: rgba(74, 158, 255, 0.05);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 4px 4px 0;
}

.project-access strong {
  color: var(--accent-color);
  font-weight: 600;
}

.project-access .url {
  font-size: 0.9rem;
  word-break: break-all;
}

/* Skills Section Styles */
.skill-subsection-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: 'Inter', system-ui, sans-serif;
  margin: 1.5rem 0 1rem 2rem;
  position: relative;
  padding-left: 1rem;
}

.skill-subsection-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #64b5f6);
  border-radius: 1px;
}

.skill-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.skill-row:last-child {
  margin-bottom: 0;
}

.skill-type-label {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  min-width: 140px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex: 1;
}

.skill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  white-space: nowrap;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateY(-1px);
}

.skill-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Soft Skills Styles */
.soft-skills-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.soft-skills-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.soft-skill-item {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  white-space: nowrap;
}

.soft-skill-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateY(-1px);
}

/* Languages Styles */
.languages-list-centered {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.language-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  white-space: nowrap;
}

.language-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateY(-1px);
}

.proficiency-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

/* Proficiency Color Coding */
.proficiency-advanced {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.proficiency-intermediate {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

.proficiency-basic {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.language-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Contact Styles */
.contact-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
}

/* About Me Styles */
.about-paragraph {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

.about-firstline {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}