@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0cffe1;
  --secondary-color: #7928ca;
  --accent-color: #ff0080;
  --background-color: #050816;
  --card-background: rgba(23, 23, 45, 0.8);
  --text-color: #f5f5f5;
  --text-secondary: #aaaaaa;
  --border-radius: 0.75rem;
  --border-color: rgba(12, 255, 225, 0.5);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font-main: 'Poppins', sans-serif;
  --font-tech: 'Orbitron', sans-serif;
}

.dark-theme {
  --primary-color: #0cffe1;
  --secondary-color: #7928ca;
  --accent-color: #ff0080;
  --background-color: #050816;
  --card-background: rgba(23, 23, 45, 0.8);
  --text-color: #f5f5f5;
  --text-secondary: #aaaaaa;
}

.light-theme {
  --primary-color: #7928ca;
  --secondary-color: #0cffe1;
  --accent-color: #ff0080;
  --background-color: #f5f5f5;
  --card-background: rgba(255, 255, 255, 0.9);
  --text-color: #121212;
  --text-secondary: #555555;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Cursor Styling */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: transform 0.1s;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, width 0.3s, height 0.3s;
  opacity: 0.5;
}

.cursor.active {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.active {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: rgba(12, 255, 225, 0.1);
  border: 1px solid var(--primary-color);
}

/* Particles Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
    align-items: center;
  flex-direction: column;
  z-index: 10000;
  transition: opacity 0.5s ease-in-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(12, 255, 225, 0.1);
  border-top-color: var(--primary-color);
  animation: spin 1s infinite linear;
  position: relative;
}

.loader-inner {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--accent-color);
  animation: spin 0.5s infinite linear reverse;
}

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

/* Navigation Styles */
#desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(5, 8, 22, 0.8);
}

#desktop-nav.scrolled {
  padding: 0.75rem 5rem;
  background: rgba(5, 8, 22, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  letter-spacing: 2px;
}

.glitch-text {
  position: relative;
  animation: glitch 5s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: var(--primary-color);
  z-index: -1;
  animation: glitch-effect 3s infinite;
}

.glitch-text::after {
  color: var(--accent-color);
  z-index: -2;
  animation: glitch-effect 2s infinite;
}

@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::before {
  width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

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

.theme-toggle .fa-sun {
  display: none;
}

.light-theme .theme-toggle .fa-moon {
  display: none;
}

.light-theme .theme-toggle .fa-sun {
  display: block;
}

/* Hamburger Menu */
#hamburger-nav {
    display: none;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }
  
  .hamburger-menu {
    position: relative;
  }
  
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
  }
  
  .hamburger-icon span {
    width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  }
  
  .menu-links {
    position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--card-background);
  width: 200px;
    max-height: 0;
    overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(12, 255, 225, 0.2);
  margin-top: 1rem;
  box-shadow: var(--box-shadow);
  }
  
  .menu-links a {
    display: block;
  padding: 1rem;
    text-align: center;
  font-size: 1rem;
  color: var(--text-color);
    text-decoration: none;
  transition: var(--transition);
}

.menu-links a:hover {
  background-color: rgba(12, 255, 225, 0.1);
  color: var(--primary-color);
  }
  
  .menu-links li {
    list-style: none;
  }
  
  .menu-links.open {
    max-height: 300px;
  }
  
  .hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(8px, 6px);
  }
  
  .hamburger-icon.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(8px, -6px);
}

/* Hero Section */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.title-container {
  margin-bottom: 1rem;
  position: relative;
}

.hero-title {
  font-family: var(--font-tech);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1.2;
}

.text-animate {
  display: inline-block;
  opacity: 0;
  animation: bounceIn 1s ease forwards;
  animation-delay: calc(0.1s * var(--i));
  color: var(--text-color);
  position: relative;
}

.text-animate.name {
  color: var(--primary-color);
}

.text-animate.space {
  margin-right: 0.5rem;
}

@keyframes bounceIn {
    0% {
      opacity: 0;
    transform: translateY(-20px);
    }
  60% {
      opacity: 1;
    transform: translateY(10px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  margin-bottom: 2rem;
}

.hero-subtitle p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  position: relative;
}

.typed-text {
  color: var(--primary-color);
  font-weight: 500;
}

.cursor {
  display: inline-block;
  background-color: var(--primary-color);
  width: 2px;
  height: 1.5rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

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

.neo-brutalism-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: var(--card-background);
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 0 var(--primary-color);
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
    position: relative;
    overflow: hidden;
}

.neo-brutalism-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(12, 255, 225, 0.2), transparent);
  transition: left 0.7s;
}

.neo-brutalism-button:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--primary-color);
}

.neo-brutalism-button:hover::before {
  left: 100%;
}

.company-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.btn-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
        opacity: 1;
    }

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

.socials-container {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-background);
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-5px);
}

.hero-image {
  flex: 1;
  max-width: 450px;
    position: relative;
}

.profile-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(12, 255, 225, 0.5);
}

.profile-image {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  object-fit: cover;
}

.image-effects {
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(12, 255, 225, 0.2), rgba(255, 0, 128, 0.2));
  mix-blend-mode: overlay;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.scroll-indicator {
    position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  position: relative;
  margin-bottom: 10px;
}

.mouse span {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
    border-radius: 50%;
  background-color: var(--primary-color);
  animation: scroll 1.5s infinite;
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
  animation: arrow 1.5s infinite;
  animation-delay: 1s;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

@keyframes arrow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Section Styles */
section {
  min-height: 100vh;
  padding: 8rem 5rem 5rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-tag {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 1rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.section-tag-end {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 1rem;
  opacity: 0.7;
  display: block;
  text-align: center;
  margin-top: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

.section-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 10px;
}

/* About Section */
.section-container {
    display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-image-container {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(12, 255, 225, 0.2), rgba(255, 0, 128, 0.2));
  mix-blend-mode: screen;
}

.about-image-wrapper:hover .about-pic {
  transform: scale(1.05);
}

.tech-stack {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.tech-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--card-background);
    display: flex;
  align-items: center;
    justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-10px);
  color: var(--text-color);
  background-color: var(--primary-color);
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat {
  padding: 1.5rem;
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.stat-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.1, 0.45, 0.1, 0.85);
}

/* Experience Section */
.experience-container {
  max-width: 900px;
  margin: 0 auto;
}

.experience-tabs {
    display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-button {
  border: none;
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  font-family: var(--font-main);
  border-bottom: 2px solid transparent;
  margin: 0 0.5rem;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 255, 225, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.tab-button:hover::before,
.tab-button.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-button.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.tab-content {
  position: relative;
  min-height: 300px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

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

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.skill-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.skill-level {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 1rem 0;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.1, 0.45, 0.1, 0.85);
}

.skill-percentage {
  font-size: 0.875rem;
  color: var(--primary-color);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 15px;
  height: 15px;
    border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--card-background);
  box-shadow: 0 0 10px rgba(12, 255, 225, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot {
  left: -37.5px;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: -37.5px;
}

.timeline-content {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-10px);
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.education-card {
    display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  max-width: 600px;
  margin: 0 auto;
}

.education-card:hover {
  transform: translateY(-10px);
}

.education-icon {
  font-size: 3rem;
  color: var(--primary-color);
  background-color: rgba(12, 255, 225, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.education-content {
  flex: 1;
}

.education-major {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.education-date {
  font-size: 0.875rem;
  color: var(--primary-color);
}

/* Projects Section */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.project-card {
    display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.project-card.reverse {
  flex-direction: row-reverse;
}

.project-content {
  flex: 1;
  max-width: 450px;
  position: relative;
  z-index: 2;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.project-description {
  margin-bottom: 1.5rem;
}

.project-description p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-tech span {
  background-color: rgba(12, 255, 225, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-family: var(--font-tech);
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.project-link:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-5px);
}

.project-image {
  flex: 1;
  position: relative;
  max-width: 550px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.project-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-overlay {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(12, 255, 225, 0.1), rgba(255, 0, 128, 0.1));
  mix-blend-mode: overlay;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(12, 255, 225, 0.3);
}

.submit-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
    position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(12, 255, 225, 0.1);
  width: 50px;
  height: 50px;
     display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
  color: var(--text-secondary);
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Footer */
footer {
  padding: 3rem 5rem 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
     flex-wrap: wrap;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo .logo {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-logo p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
  gap: 3rem;
}

.footer-nav h3,
.footer-socials h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #000;
    display: flex;
  align-items: center;
    justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(12, 255, 225, 0.5);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
  section {
    padding: 8rem 3rem 3rem;
  }
  
  #desktop-nav {
    padding: 1.5rem 3rem;
  }
  
  #desktop-nav.scrolled {
    padding: 0.75rem 3rem;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .neo-brutalism-button {
    margin: 0 auto;
  }
  
  .btn-container {
    justify-content: center;
  }
  
  .socials-container {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 350px;
  }
  
  .section-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image-container {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .about-content {
    max-width: 100%;
  }
  
  .skill-card h3 {
    font-size: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
  }
  
  .timeline-item:nth-child(odd) {
    margin-left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12.5px;
  }
  
  .project-card,
  .project-card.reverse {
    flex-direction: column;
  }
  
  .project-content {
    max-width: 100%;
    text-align: center;
  }
  
  .project-tech,
  .project-links {
    justify-content: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    max-width: 100%;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 6rem 2rem 2rem;
  }
  
  #desktop-nav {
    display: none;
  }
  
  #hamburger-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
  }
  
  .experience-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 6rem 1rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}