/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}


/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

html,body{ 
	width:100%;
	height:100%;
	background:#111;
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  font:normal 75% Arial, Helvetica, sans-serif;
}

canvas{
  display:block;
  vertical-align:bottom;
}


/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #0f1419, #1a1f2e, #2d3748, #4a5568, #2c5282, #1a365d);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ---- Header Styles ---- */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 40px 0 20px 0;
}

.nav-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 60px;
}

.nav-menu ul {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static;
  left: unset;
  top: unset;
  transform: none;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: #5e81ac;
  background: rgba(94, 129, 172, 0.08);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #5e81ac;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 100%;
  background: #46607a;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 24px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #5e81ac;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover, .lang-btn.active {
  background: rgba(94, 129, 172, 0.12);
  color: #46607a;
}

@media (max-width: 600px) {
  .lang-switcher {
    margin-left: 8px;
  }
  .lang-btn {
    font-size: 13px;
    padding: 3px 6px;
  }
}

@media (max-width: 800px) {
  .nav-menu ul {
    gap: 16px;
  }
  .nav-menu {
    padding: 0 8px;
    min-height: 48px;
  }
}

/* ---- Modal Styles ---- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  position: relative;
  background: #2d3748;
  border-radius: 15px;
  max-width: 1100px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #4a5568;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4a5568;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #a0aec0;
  transform: scale(1.1);
}

.modal-content {
  padding: 40px;
  display: none;
}

.modal-content.active {
  display: block;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  background: #e53e3e;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.main-name {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profession {
  color: #5e81ac;
  font-size: 18px;
  margin: 10px 0;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icon {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #a0aec0;
  transform: scale(1.2);
}

.cv-button {
  background: #5e81ac;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.cv-button:hover {
  background: #46607a;
  transform: translateY(-2px);
}

.download-icon {
  font-size: 14px;
}

.modal-divider {
  height: 2px;
  background: #5e81ac;
  margin: 30px 0;
}

.modal-body {
  color: white;
}

/* ---- Section Boxes ---- */

.sections-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-box {
  background: #4a5568;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #5e81ac;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: #46607a;
}

.section-title {
  color: #5e81ac;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-bottom: 2px solid #5e81ac;
  padding-bottom: 10px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

.skills-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.skill-item, .project-item {
  background: #4a5568;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #e53e3e;
}

.skill-item h3, .project-item h3 {
  color: #e53e3e;
  margin-bottom: 10px;
  font-size: 18px;
}

.skill-item p, .project-item p {
  color: #a0aec0;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: #4a5568;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #e53e3e;
}

.contact-item h3 {
  color: #e53e3e;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-item p {
  color: #a0aec0;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    margin: 20px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .main-name {
    font-size: 28px;
  }
  
  .skills-grid, .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Technologies Section ---- */

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.tech-category {
  background: #4a5568;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #5e81ac;
}

.tech-title {
  color: #5e81ac;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-title i {
  font-size: 16px;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
}

.tech-item i {
  color: #5e81ac;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ---- Experience Section ---- */

.experience-timeline {
  position: relative;
  margin-top: 20px;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #5e81ac;
}

.experience-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
}

.experience-marker {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #5e81ac;
  border-radius: 50%;
  border: 3px solid #2d3748;
}

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

.experience-title {
  color: #5e81ac;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.experience-duration {
  background: #4a5568;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.experience-company {
  color: #a0aec0;
  font-size: 14px;
  margin-bottom: 10px;
}

.experience-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-details li {
  color: white;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.experience-details li::before {
  content: '→ ';
  color: #5e81ac;
  font-weight: bold;
}

/* ---- Education Section ---- */

.education-section {
  margin-top: 20px;
}

.education-item {
  position: relative;
  padding-left: 30px;
}

.education-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #5e81ac;
}

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

.education-title {
  color: #5e81ac;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.education-duration {
  background: #4a5568;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.education-school {
  color: #a0aec0;
  font-size: 16px;
  margin-bottom: 15px;
}

.education-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.education-details li {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.education-details li::before {
  content: '→ ';
  color: #5e81ac;
  font-weight: bold;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .technologies-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-container {
    max-width: 95%;
    width: 95%;
  }
  
  .experience-header,
  .education-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .experience-duration,
  .education-duration {
    align-self: flex-start;
  }
}

/* ---- Work Areas Grid ---- */

.work-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.work-area-card {
  background: #4a5568;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #5e81ac;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.work-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #46607a;
}

.work-area-icon {
  text-align: center;
  margin-bottom: 20px;
}

.work-area-icon i {
  font-size: 48px;
  color: #5e81ac;
  background: rgba(94, 129, 172, 0.12);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #5e81ac;
}

.work-area-title {
  color: #5e81ac;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.work-area-description {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.work-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-area-list li {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-area-list li i {
  color: #5e81ac;
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.arrow {
  color: #5e81ac;
  margin-right: 8px;
  font-weight: bold;
  font-size: 1.1em;
}

/* Responsive for work areas */
@media (max-width: 768px) {
  .work-areas-grid {
    grid-template-columns: 1fr;
  }
  
  .work-area-card {
    padding: 20px;
  }
  
  .work-area-icon i {
    font-size: 36px;
    width: 60px;
    height: 60px;
  }
}

/* ---- Projects Grid ---- */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.project-card {
  background: #4a5568;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #5e81ac;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #46607a;
}

.project-icon {
  text-align: center;
  margin-bottom: 20px;
}

.project-icon i {
  font-size: 48px;
  color: #5e81ac;
  background: rgba(94, 129, 172, 0.12);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #5e81ac;
}

.project-title {
  color: #5e81ac;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.3;
}

.project-description {
  color: #a0aec0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}

.tech-tag {
  background: #2d3748;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #5e81ac;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: #5e81ac;
  color: white;
  transform: scale(1.05);
}

/* Responsive for projects */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card {
    padding: 20px;
  }
  
  .project-icon i {
    font-size: 36px;
    width: 60px;
    height: 60px;
  }
  
  .project-title {
    font-size: 16px;
  }
  
  .project-description {
    font-size: 12px;
  }
}

/* ---- Contact Form ---- */

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  background: #4a5568;
  border: 1px solid #2d3748;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0aec0;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #5e81ac;
  box-shadow: 0 0 0 2px rgba(94, 129, 172, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.captcha-section {
  margin-bottom: 25px;
}

.captcha-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

#captcha-text {
  background: #4a5568;
  color: #5e81ac;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  border: 1px solid #2d3748;
  min-width: 100px;
  text-align: center;
  user-select: none;
}

.captcha-refresh {
  background: #4a5568;
  border: 1px solid #2d3748;
  color: #a0aec0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.captcha-refresh:hover {
  background: #5e81ac;
  color: white;
  border-color: #5e81ac;
}

.submit-button {
  width: 100%;
  background: #5e81ac;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.submit-button:hover {
  background: #46607a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(94, 129, 172, 0.18);
}

.submit-button:active {
  transform: translateY(0);
}

/* Form validation styles */
.form-input:invalid,
.form-textarea:invalid {
  border-color: #5e81ac;
}

.form-input:valid,
.form-textarea:valid {
  border-color: #5e81ac;
}

/* Responsive for contact form */
@media (max-width: 768px) {
  .contact-form {
    padding: 15px 0;
  }
  
  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .submit-button {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* ---- Hero Section ---- */

.main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}

.hero-section {
  text-align: center;
  pointer-events: auto;
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Fira Code', 'JetBrains Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  color: #a0aec0;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'Fira Code', 'JetBrains Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
  margin: 10px 0 0 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for hero section */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

.floating-lang-switcher {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  gap: 8px;
  align-items: center;
}
.floating-lang-switcher .lang-btn {
  background: transparent;
  border: none;
  color: #5e81ac;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.floating-lang-switcher .lang-btn:hover, .floating-lang-switcher .lang-btn.active {
  background: rgba(94, 129, 172, 0.12);
  color: #46607a;
}
@media (max-width: 600px) {
  .floating-lang-switcher {
    top: 8px;
    right: 8px;
    border-radius: 0;
    padding: 0;
  }
  .floating-lang-switcher .lang-btn {
    font-size: 13px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 18px 0 10px 0;
  }
  .nav-menu a {
    font-size: 13px;
    padding: 7px 8px;
  }
  .modal-container {
    border-radius: 8px;
    margin: 6px;
  }
  .modal-content {
    padding: 16px 6px;
  }
  .main-name, .section-title, .work-area-title, .project-title {
    font-size: 1.1rem !important;
  }
  .cv-button, .submit-button {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
  }
  .work-area-card, .project-card {
    padding: 10px;
    border-radius: 8px;
  }
  .work-area-icon i, .project-icon i {
    font-size: 28px !important;
    width: 38px !important;
    height: 38px !important;
  }
  .work-area-list li, .project-description, .project-tech-tags, .experience-details li, .education-details li {
    font-size: 12px !important;
  }
  .experience-item, .education-item {
    padding-left: 18px;
    margin-bottom: 16px;
  }
  .experience-marker {
    width: 10px;
    height: 10px;
    left: 2px;
    top: 2px;
  }
  .experience-timeline::before, .education-item::before {
    left: 6px;
    width: 1px;
  }
  .contact-form {
    padding: 6px 0;
  }
  .form-input, .form-textarea {
    font-size: 12px;
    padding: 7px 8px;
    border-radius: 5px;
  }
  .floating-lang-switcher {
    top: 4px;
    right: 4px;
    gap: 4px;
  }
  .floating-lang-switcher .lang-btn {
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 3px;
  }
}
