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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.mguvens.info/images/ai2.gif') no-repeat center center;
  background-size: cover;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 28, 0.75);
  z-index: -1;
}

header {
  text-align: center;
  padding: 50px 0;
  background: #23272f;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffcb6b, #82aaff, #c3e88d);
}

header h1 {
  color: #82aaff;
}

header p {
  color: #82aaff;
}

.profile-container {
  margin-bottom: 20px;
  position: relative;
}

.profile-image {
  width: 300px;
  height: 350px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 25%;
  border: 5px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.profile-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #c3e88d;
  border-radius: 50%;
  opacity: 0.7;
  animation: rotate 10s linear infinite;
}

.profile-image::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid #ffcb6b;
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.profile-image:hover {
  transform: scale(1.02);
}

.profile-image:hover::before,
.profile-image:hover::after {
  animation-duration: 5s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #82aaff;
  text-shadow: 0 0 10px rgba(130, 170, 255, 0.3);
}

h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #82aaff;
  text-shadow: 0 0 8px rgba(130, 170, 255, 0.3);
}

h3 {
  color: #82aaff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffcb6b, transparent);
}

nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: #82aaff;
  background-color: rgba(35, 39, 47, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(130, 170, 255, 0.2);
  font-weight: 500;
  letter-spacing: -0.02em;
}

nav a:hover, nav a.active {
  background-color: #82aaff;
  color: #0a0f1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(130, 170, 255, 0.2);
}

nav a.active {
  pointer-events: none;
}

section {
  margin-bottom: 40px;
  padding: 40px;
  background: rgba(26, 31, 46, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-content {    /* İstersen üst boşluğu sıfırlayabilirsin */
   margin-bottom: 2.5em;
   line-height: 1.6;
}

.about-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Experience Section Styles */
.experience-timeline {
  position: relative;
  padding: 20px 0;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #82aaff, #c3e88d);
  opacity: 0.5;
}

.experience-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
  background: rgba(26, 31, 46, 0.5);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.experience-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #82aaff;
  border: 2px solid #c3e88d;
  box-shadow: 0 0 0 4px rgba(130, 170, 255, 0.2);
}

.experience-item:hover {
  transform: translateX(8px);
  border-color: #82aaff;
  box-shadow: 0 4px 20px rgba(130, 170, 255, 0.15);
}

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

.experience-header h3 {
  color: #ffcb6b;
  margin: 0;
  font-size: 1.3em;
}

.experience-date {
  color: #82aaff;
  font-size: 0.9em;
  font-weight: 500;
  background: rgba(130, 170, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(130, 170, 255, 0.2);
}

.experience-item h4 {
  color: #c3e88d;
  margin: 10px 0;
  font-size: 1.1em;
  font-weight: 600;
}

.experience-item p {
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .experience-timeline::before {
    left: 15px;
  }

  .experience-item {
    padding-left: 40px;
    padding: 20px;
  }

  .experience-item::before {
    left: -6px;
    width: 12px;
    height: 12px;
  }

  .experience-header {
    flex-direction: column;
    gap: 5px;
  }

  .experience-header h3 {
    font-size: 1.1em;
  }

  .experience-date {
    font-size: 0.8em;
  }

  .experience-item h4 {
    font-size: 1em;
  }
}

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

.project-card {
  background: rgba(26, 31, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #82aaff, #c3e88d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(130,170,255,0.18);
  border-color: #82aaff;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card strong {
  color: #ffcb6b !important;
  display: block;
  margin-bottom: 15px;
  font-size: 1.4em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.project-card p {
  color: #e0e0e0;
  margin-bottom: 20px;
  font-size: 1em;
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #82aaff;
  text-decoration: none;
  border: 1px solid #82aaff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.project-link:hover {
  background-color: #82aaff;
  color: #0a0f1c;
  transform: translateY(-2px);
}

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

.skill-category {
  background: #23272f;
  color: #e0e0e0;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(130, 170, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #82aaff, #c3e88d);
}

.skill-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(130, 170, 255, 0.2);
  border-color: #82aaff;
}

.skill-category h3 {
  color: #82aaff;
  margin-bottom: 15px;
  font-size: 1.3em;
  border-bottom: 2px solid rgba(130, 170, 255, 0.2);
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.skill-category ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-category li {
  background: rgba(130, 170, 255, 0.1);
  color: #e0e0e0;
  font-weight: 500;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.95em;
  transition: all 0.3s ease;
  border: 1px solid rgba(130, 170, 255, 0.2);
}

.skill-category li:hover {
  transform: translateY(-2px);
  background: rgba(130, 170, 255, 0.2);
  border-color: #82aaff;
  box-shadow: 0 4px 12px rgba(130, 170, 255, 0.2);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.skill-item {
  background: rgba(130, 170, 255, 0.1);
  border: 1px solid rgba(130, 170, 255, 0.2);
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 0.9em;
  color: #82aaff;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(130, 170, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(130, 170, 255, 0.2);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0;
  text-align: left;
}

.contact-links a {
  color: #82aaff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links a:hover {
  color: #c3e88d;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(195, 232, 141, 0.3);
}

.contact-links p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.1em;
}

.huggingface-icon {
  vertical-align: middle;
}

footer {
  text-align: center;
  padding: 20px;
  color: #888;
  border-top: 1px solid #333;
  background: #23272f;
}

.code-block {
  background: #181c24;
  color: #c3e88d;
  font-family: 'Fira Code', 'JetBrains Mono', monospace;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  margin: 24px 0;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.terminal-effect {
  background: #10131a;
  color: #c3e88d;
  font-family: 'Fira Code', 'JetBrains Mono', monospace;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  margin: 24px 0;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
}
.terminal-effect::before {
  content: 'user@portfolio:~$';
  color: #82aaff;
  margin-right: 10px;
}

.language-container {
  position: absolute;
  top: 20px;
  left: 20px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #ffcb6b;
  background-color: #23272f;
  border: 1px solid #23272f;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.9em;
}

.language-toggle:hover {
  background-color: #ffcb6b;
  color: #23272f;
}

.language-toggle i {
  font-size: 1.1em;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #82aaff, #c3e88d);
  color: #0a0f1c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(130,170,255,0.3);
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0f1c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #1a1f2e;
  border-top: 4px solid #82aaff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: #1a1f2e;
  margin: 50px auto;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  color: #ffcb6b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: #82aaff;
  transform: rotate(90deg);
}

#modalTitle {
  margin-bottom: 20px;
  color: #82aaff;
  font-size: 2em;
}

#modalDescription {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 30px;
}

#modalTechnologies {
  margin-bottom: 30px;
}

#modalLinks {
  display: flex;
  gap: 15px;
}

/* Neural network animation */
.neural-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}

.neural-network::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(130, 170, 255, 0.1) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(195, 232, 141, 0.1) 50%, transparent 100%);
  animation: neuralPulse 8s infinite linear;
}

@keyframes neuralPulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Matrix rain effect */
.matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
}

.matrix-rain::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(130, 170, 255, 0.1) 50%,
    transparent 100%);
  animation: matrixRain 20s infinite linear;
}

@keyframes matrixRain {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  header {
    padding: 30px 0;
    border-radius: 16px;
  }

  .profile-image {
    width: 200px;
    height: 250px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin: 5px 0;
  }

  section {
    padding: 20px;
    border-radius: 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card {
    padding: 20px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .skill-item {
    font-size: 0.85em;
  }

  .contact-links {
    text-align: center;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .modal-content {
    margin: 20px;
    padding: 20px;
  }

  #modalTitle {
    font-size: 1.5em;
  }

  .about-content, .project-card {
    font-size: 0.9em;
    padding: 15px;
  }

  .about-content::before, .project-card::before {
    width: 30px;
  }

  .about-content p, .project-card p,
  .project-card h3, .project-card a {
    padding-left: 40px;
  }

  .about-content p::before, .project-card p::before,
  .project-card h3::before, .project-card a::before {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .profile-image {
    width: 150px;
    height: 200px;
  }

  h1 {
    font-size: 1.8em;
  }

  nav a {
    padding: 10px 20px;
  }

  .project-card h3 {
    font-size: 1.1em;
  }

  .project-card p {
    font-size: 0.9em;
  }

  .project-link {
    padding: 8px 16px;
  }
}

/* Contact Form Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info {
  padding-right: 20px;
}

.contact-form {
  background: rgba(26, 31, 46, 0.5);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  color: #82aaff;
  margin-bottom: 25px;
  font-size: 1.5em;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #82aaff;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1em;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #82aaff;
  box-shadow: 0 0 0 2px rgba(130, 170, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #82aaff, #c3e88d);
  color: #0a0f1c;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(130, 170, 255, 0.3);
}

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

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-form {
    padding: 20px;
  }
}

/* Landing Page Styles */
.landing-section {
  text-align: center;
  padding: 40px 20px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.landing-card {
  background: rgba(26, 31, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #82aaff, #c3e88d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(130,170,255,0.18);
  border-color: #82aaff;
}

.landing-card:hover::before {
  opacity: 1;
}

.landing-card i {
  font-size: 2.5em;
  color: #ffcb6b;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.landing-card:hover i {
  transform: scale(1.1);
}

.landing-card h3 {
  color: #82aaff;
  margin: 15px 0;
  font-size: 1.4em;
}

.landing-card p {
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .landing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-card {
    padding: 20px;
  }

  .landing-card i {
    font-size: 2em;
  }

  .landing-card h3 {
    font-size: 1.2em;
  }
}

/* Skills Page Styles */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.skill-category {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffcb6b;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
}

.skill-category h3 {
  color: #82aaff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.skill-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: scale(1.05);
}

.skill-item i {
  font-size: 2rem;
  color: #ffcb6b;
  margin-bottom: 0.5rem;
}

.skill-item span {
  color: #fff;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-info {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #82aaff;
  border-radius: 10px;
  padding: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #ffcb6b;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.contact-item a, .contact-item span {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffcb6b;
}

.contact-form {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #82aaff;
  border-radius: 10px;
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffcb6b;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #82aaff;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #82aaff;
  box-shadow: 0 0 5px rgba(130, 170, 255, 0.5);
}

.submit-btn {
  background: #ffcb6b;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #ffcb6b;
  transform: translateY(-2px);
}

/* Landing Page Styles */
.landing-section {
  text-align: center;
  padding: 4rem 2rem;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.landing-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffcb6b;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.landing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.landing-card i {
  font-size: 3rem;
  color: #ffcb6b;
  margin-bottom: 1rem;
}

.landing-card h3 {
  color: #82aaff;
  margin-bottom: 1rem;
}

.landing-card p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Active Navigation State */
nav a.active {
  background: #ffcb6b;
  color: #000;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-bottom: 2rem;
  }
}