/* Global styles */
:root {
  --gold: #FFD700;
  --gold-light: #FFDF4D;
  --gold-dark: #E6C200;
  --gold-transparent: rgba(255, 215, 0, 0.7);
  --dark: #222222;
  --dark-light: #3A3A3A;
  --dark-darker: #111111;
  --dark-transparent: rgba(34, 34, 34, 0.85);
  --light: #cccccc;
  --light-darker: #aaaaaa;
  --light-transparent: rgba(204, 204, 204, 0.7);
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 200%;
  animation: gradientAnimation 3s ease infinite;
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--dark-light), var(--dark), var(--dark-darker));
  color: var(--gold);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.text-gold {
  color: var(--gold);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% 100%;
  animation: gradientAnimation 3s ease infinite;
  border-radius: 2px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.5rem 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(34, 34, 34, 0.95), rgba(58, 58, 58, 0.9));
  background-size: 100% 200%;
  animation: gradientVerticalAnimation 5s ease infinite;
  transition: all 0.3s ease;
}

header.sticky {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.logo-text {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.mobile-nav-container {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.8rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.toggle-menu {
  display: none;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
}

/* Hero section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(34, 34, 34, 0.8), rgba(58, 58, 58, 0.7), rgba(34, 34, 34, 0.8)), url('../images/code-bg.jpg');
  background-size: 300% 300%, cover;
  animation: gradientPositionAnimation 15s ease infinite;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light);
}

.hero-btn {
  margin-top: 1rem;
}

/* About section */
#about {
  padding: 100px 0;
  position: relative;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Skills section */
#skills {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, var(--dark-darker), var(--dark), var(--dark-light), var(--dark));
  background-size: 300% 300%;
  animation: gradientAnimation 8s ease infinite;
  color: var(--white);
  background-attachment: fixed;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.skill-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.05));
  background-size: 200% 200%;
  animation: gradientAnimation 5s ease infinite;
  border-radius: 10px;
  padding: 30px;
  width: calc(33.333% - 20px);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
}

.skill-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.skill-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.skill-description {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--light);
  opacity: 0.8;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform-origin: top;
}

.skill-progress:hover .skill-description {
  max-height: 100px;
  opacity: 1;
}

/* Technical Skills Styles */
.technical-skills {
  width: 100%;
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.technical-skills-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 1.8rem;
}

.skill-category {
  margin-bottom: 60px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-category:last-child {
  margin-bottom: 0;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.category-title i {
  font-size: 1.2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.skill-category:last-child .skills-grid {
  margin-bottom: 0;
}

.skill-progress {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.skill-progress:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.skill-name {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
}

.skill-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-endorsements {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.9rem;
}

.skill-endorsements i {
  font-size: 1rem;
  font-weight: bold;
}

.endorsement-count {
  font-weight: 600;
  margin-left: 2px;
}

.skill-percentage {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

/* Projects section */
#projects {
  padding: 100px 0;
  position: relative;
  background-color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 200px;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.project-tag {
  padding: 5px 10px;
  background-color: var(--light);
  border-radius: 30px;
  font-size: 0.8rem;
}

.project-description {
  margin-bottom: 1rem;
  color: var(--dark);
}

.project-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.project-link:hover {
  text-decoration: underline;
}

/* Experience section */
#experience {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(34, 34, 34, 0.9), rgba(58, 58, 58, 0.85));
  background-attachment: fixed;
  color: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 100% 400%;
  animation: gradientVerticalAnimation 5s ease infinite;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--white), #f0f0f0);
  border: 4px solid var(--gold);
  top: 15px;
  right: -12px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.07));
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-date {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-title {
  margin-bottom: 0.5rem;
}

.timeline-company {
  margin-bottom: 1rem;
  color: var(--light);
}

/* Contact section */
#contact {
  padding: 100px 0;
  position: relative;
  background-color: var(--white);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-text h4 {
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: var(--dark);
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--light);
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: linear-gradient(to top, var(--dark-darker), var(--dark), var(--dark-light), var(--dark));
  background-size: 100% 300%;
  animation: gradientVerticalAnimation 8s ease infinite;
  color: var(--light);
  padding: 50px 0 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.07));
  border-radius: 50%;
  color: var(--light);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold));
  background-size: 300% 300%;
  animation: gradientAnimation 3s ease infinite;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.copyright {
  font-size: 0.9rem;
}

/* Parallax effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Gradient animations */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientVerticalAnimation {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

@keyframes gradientPositionAnimation {
  0% {
    background-position: 0% 0%, center;
  }
  25% {
    background-position: 100% 0%, center;
  }
  50% {
    background-position: 100% 100%, center;
  }
  75% {
    background-position: 0% 100%, center;
  }
  100% {
    background-position: 0% 0%, center;
  }
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .skill-card {
    width: calc(50% - 20px);
  }
  
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .contact-item {
    margin-bottom: 0;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media screen and (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-left: 3px solid transparent;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
  }
  
  .toggle-menu {
    display: block;
    margin-left: 1rem;
  }
  
  .mobile-nav-container {
    gap: 1rem;
    align-items: center;
  }

  .lang-switcher {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lang-btn {
    padding: 0.8rem 1.2rem;
    width: 50%;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
  }

  .lang-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
  }

  .lang-btn img {
    height: 16px;
  }

  .lang-btn span {
    display: inline-block;
    font-size: 0.9rem;
  }

  .active-lang {
    border: none;
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
  }

  .skill-card {
    width: calc(100% - 20px);
    padding: 25px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-category {
    padding: 15px;
  }

  .skill-progress {
    padding: 12px;
  }

  .skill-description {
    font-size: 0.9rem;
  }
  
  .timeline {
    padding: 15px 0;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item::after {
    left: 20px;
  }
  
  .timeline-item.right::after {
    left: 20px;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-date {
    font-size: 0.9rem;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .timeline-company {
    font-size: 0.9rem;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-item {
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-bottom: 0;
  }

  .contact-icon {
    font-size: 1.3rem;
  }

  .contact-text h4 {
    font-size: 1rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-control {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .skills-container {
    gap: 20px;
  }

  .skill-card {
    padding: 20px;
  }

  .skill-icon {
    font-size: 2rem;
  }

  .skill-title {
    font-size: 1.1rem;
  }

  .technical-skills {
    padding: 20px 15px;
  }

  .category-title {
    font-size: 1.2rem;
  }

  .skill-name {
    font-size: 0.9rem;
  }

  .timeline {
    padding: 10px 0;
  }

  .timeline-item {
    padding-left: 60px;
    padding-right: 10px;
    margin-bottom: 25px;
  }

  .timeline::after {
    left: 21px;
  }

  .timeline-item::after {
    left: 10px;
    width: 16px;
    height: 16px;
  }

  .timeline-content {
    padding: 12px;
  }

  .timeline-date {
    font-size: 0.85rem;
  }

  .timeline-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .timeline-company {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .contact-content {
    gap: 25px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }

  .contact-text h4 {
    font-size: 0.95rem;
  }

  .contact-text p {
    font-size: 0.85rem;
  }

  .form-control {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  textarea.form-control {
    min-height: 120px;
  }
}

/* Language switcher styles */
.lang-switcher {
  display: inline-flex;
  margin-left: 1rem;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: var(--light);
  text-decoration: none;
}

.lang-btn:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.lang-btn img {
  height: 15px;
  width: auto;
  border-radius: 2px;
}

.lang-btn span {
  display: none;
}

.active-lang {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

@media screen and (max-width: 820px) {
  .mobile-only {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .nav-links .lang-switcher {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links .lang-btn {
    padding: 0.8rem 1.2rem;
    width: 50%;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
  }

  .nav-links .lang-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
  }

  .nav-links .lang-btn img {
    height: 16px;
  }

  .nav-links .lang-btn span {
    display: inline-block;
    font-size: 0.9rem;
  }

  .nav-links .active-lang {
    border: none;
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .nav-links a {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
}

/* Vacancy Matcher Section */
#vacancy-matcher {
    background-color: #111111;
    padding: 80px 0;
    position: relative;
    color: var(--white);
}

#vacancy-matcher .section-title {
    color: var(--white);
}

.vacancy-matcher-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.vacancy-form {
    margin-bottom: 30px;
}

.vacancy-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
}

.vacancy-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.vacancy-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.vacancy-form .btn-primary {
    background: var(--gold);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vacancy-form .btn-primary:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.vacancy-form .btn-primary i {
    font-size: 18px;
}

/* Match Results Styling */
.match-results {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.match-results h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.match-results h3 i {
    font-size: 1.5rem;
}

.match-percentage {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.match-percentage .percentage {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin: 0.5rem 0;
}

.match-percentage .label {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.match-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid;
}

.match-section.matches {
    border-left-color: #4CAF50;
}

.match-section.potential {
    border-left-color: #FFA726;
}

.match-section.non-matches {
    border-left-color: #EF5350;
}

.match-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.match-section h4 i {
    font-size: 1.3rem;
}

.match-section.matches h4 i {
    color: #4CAF50;
}

.match-section.potential h4 i {
    color: #FFA726;
}

.match-section.non-matches h4 i {
    color: #EF5350;
}

.match-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.match-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.match-item:hover {
    transform: translateY(-2px);
}

.match-item .name {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.match-item .type {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: capitalize;
}

.match-item .level {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #FFD700;
    margin-top: 0.5rem;
}

.match-item .category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.match-item .description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.match-item .duration,
.match-item .company {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .match-list {
        grid-template-columns: 1fr;
    }
    
    .match-results {
        padding: 1rem;
    }
    
    .match-section {
        padding: 1rem;
    }
    
    .vacancy-matcher-container {
        padding: 20px;
    }
    
    .vacancy-form textarea {
        min-height: 120px;
    }
}

.match-results .match-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.match-results .contact-recommendation {
    font-size: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: none;
}

.match-results .contact-recommendation.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.match-results .contact-recommendation.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}