/* Base Styles */
:root {
  --background-dark: #111111;
  --background-darker: #0a0a0a;
  --primary-color: #ff6b35;
  --secondary-color: #ff4545;
  --accent-color: #fff3b0;
  --text-color: #f5f5f5;
  --text-secondary: #b0b0b0;
  --transition-speed: 0.3s;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background: linear-gradient(135deg, var(--background-dark), var(--background-darker));
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23222" d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"%3E%3C/path%3E%3C/svg%3E');
  opacity: 0.03;
  z-index: -1;
}

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

/* .watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1000;
  font-family: 'Space Grotesk', sans-serif;
  text-align: right;
}

.watermark a {
  color: var(--primary);
  text-decoration: none;
} */

/* Navigation */
header {
  padding: 1.5rem 0;
  position: relative;
}

#navigation {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(17, 17, 17, 0.8);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
  z-index: 1000;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.navigation {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all var(--transition-speed) ease;
  border-radius: var(--border-radius);
}

.navigation::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-speed) ease;
}

.navigation:hover {
  color: var(--accent-color);
}

.navigation:hover::before {
  width: 100%;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Intro Section */
.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  min-height: 70vh;
}

.name-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 243, 176, 0.3);
}

.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.box {
  background: rgba(20, 20, 20, 0.7);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.box {
  background: transparent;
  border: none;
  box-shadow: none;
}



.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.summary-box {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
}

.summary-box p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.profile-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-speed) ease;
  border: 2px solid var(--primary-color);
}

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

/* Roadmap Section */
.roadmap-section {
  margin: 5rem 0;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.5);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.roadmap-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background: var(--primary-color);
  border: 4px solid var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background: rgba(25, 25, 25, 0.7);
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.timeline-date {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.timeline-badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: 50px;
  font-size: 0.8rem;
  margin-top: 10px;
}

.current-point {
  background: var(--secondary-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 69, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 69, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 69, 69, 0);
  }
}

/* neon card divider*/
.neon-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 3rem 0;
  position: relative;
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
  opacity: 0.7;
}

.neon-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
  }

  50% {
    box-shadow: 0 0 25px var(--primary-color), 0 0 50px var(--primary-color);
  }

  100% {
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
  }
}

/*add pulsing effect*/
.pulsing-button {
  position: relative;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  animation: buttonPulse 2s infinite;
  text-decoration: none;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
}

.pulsing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

/* Projects Section */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

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

.projects-section {
  margin: 5rem 0;
  padding: 2rem;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(25, 25, 25, 0.7);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary-color);
}

.project-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.project-.project-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.project-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-block;
  text-align: center;
}

.project-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.project-badge {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.7rem;
  margin-right: 5px;
  margin-bottom: 10px;
}

/* Project Preview Animation */
.project-img-container {
  position: relative;
  overflow: hidden;
}

.project-img {
  transition: transform 0.5s ease;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.view-project {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  text-decoration: none;
}

.project-card:hover .view-project {
  transform: translateY(0);
  opacity: 1;
}

/* Skills Section */
.skill-radar-container {
  width: 300px;
  height: 300px;
  margin: 2rem auto;
  position: relative;
}

.skill-radar {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 70%, transparent 100%);
}

.skill-radar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  animation: rotateRadar 10s linear infinite;
  border: 1px dashed rgba(255, 107, 53, 0.3);
}

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

  to {
    transform: rotate(360deg);
  }
}

.skill-radar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 53, 0.3);
}

.skill-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--rotation)) translateX(calc(var(--percent) * 1.5)) rotate(calc(-1 * var(--rotation)));
  background: var(--primary-color);
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 0.8rem;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
}

.skill-point:hover {
  transform: rotate(var(--rotation)) translateX(calc(var(--percent) * 1.5)) rotate(calc(-1 * var(--rotation))) scale(1.5);
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.skills-section {
  margin: 5rem 0;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.5);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.skills-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

.skill-category {
  background: rgba(25, 25, 25, 0.7);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: transform var(--transition-speed) ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.skill-category h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

.skill-category h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.skill-list {
  list-style: none;
}

.skill-item {
  margin-bottom: 1rem;
  position: relative;
}

.skill-name {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.skill-progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  width: 0%; /* Start at 0 */
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width 1.5s ease-in-out;
}

/* Glitch effect for title */
.glitch-wrapper {
  margin-bottom: 2rem;
}

.glitch {
  position: relative;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 5px;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

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

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--primary-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--secondary-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(40px, 9999px, 61px, 0);
    transform: skew(0.58deg);
  }

  5% {
    clip: rect(75px, 9999px, 76px, 0);
    transform: skew(0.52deg);
  }

  10% {
    clip: rect(78px, 9999px, 76px, 0);
    transform: skew(0.98deg);
  }

  15% {
    clip: rect(21px, 9999px, 48px, 0);
    transform: skew(0.35deg);
  }

  20% {
    clip: rect(65px, 9999px, 11px, 0);
    transform: skew(0.31deg);
  }

  25% {
    clip: rect(47px, 9999px, 1px, 0);
    transform: skew(0.03deg);
  }

  30% {
    clip: rect(33px, 9999px, 40px, 0);
    transform: skew(0.83deg);
  }

  35% {
    clip: rect(4px, 9999px, 5px, 0);
    transform: skew(0.38deg);
  }

  40% {
    clip: rect(54px, 9999px, 84px, 0);
    transform: skew(0.06deg);
  }

  45% {
    clip: rect(55px, 9999px, 75px, 0);
    transform: skew(0.95deg);
  }

  50% {
    clip: rect(8px, 9999px, 35px, 0);
    transform: skew(0.48deg);
  }

  55% {
    clip: rect(89px, 9999px, 9px, 0);
    transform: skew(0.23deg);
  }

  60% {
    clip: rect(81px, 9999px, 44px, 0);
    transform: skew(0.07deg);
  }

  65% {
    clip: rect(38px, 9999px, 92px, 0);
    transform: skew(0.85deg);
  }

  70% {
    clip: rect(80px, 9999px, 94px, 0);
    transform: skew(0.25deg);
  }

  75% {
    clip: rect(61px, 9999px, 35px, 0);
    transform: skew(0.86deg);
  }

  80% {
    clip: rect(39px, 9999px, 81px, 0);
    transform: skew(0.4deg);
  }

  85% {
    clip: rect(62px, 9999px, 9px, 0);
    transform: skew(0.94deg);
  }

  90% {
    clip: rect(2px, 9999px, 54px, 0);
    transform: skew(0.29deg);
  }

  95% {
    clip: rect(12px, 9999px, 21px, 0);
    transform: skew(0.67deg);
  }

  100% {
    clip: rect(54px, 9999px, 35px, 0);
    transform: skew(0.99deg);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(19px, 9999px, 39px, 0);
    transform: skew(0.05deg);
  }

  5% {
    clip: rect(36px, 9999px, 100px, 0);
    transform: skew(0.33deg);
  }

  10% {
    clip: rect(77px, 9999px, 82px, 0);
    transform: skew(0.8deg);
  }

  15% {
    clip: rect(79px, 9999px, 95px, 0);
    transform: skew(0.21deg);
  }

  20% {
    clip: rect(20px, 9999px, 27px, 0);
    transform: skew(0.38deg);
  }

  25% {
    clip: rect(86px, 9999px, 92px, 0);
    transform: skew(0.77deg);
  }

  30% {
    clip: rect(80px, 9999px, 66px, 0);
    transform: skew(0.68deg);
  }

  35% {
    clip: rect(85px, 9999px, 23px, 0);
    transform: skew(0.95deg);
  }

  40% {
    clip: rect(7px, 9999px, 13px, 0);
    transform: skew(0.01deg);
  }

  45% {
    clip: rect(17px, 9999px, 95px, 0);
    transform: skew(0.17deg);
  }

  50% {
    clip: rect(100px, 9999px, 92px, 0);
    transform: skew(0.92deg);
  }

  55% {
    clip: rect(57px, 9999px, 39px, 0);
    transform: skew(0.02deg);
  }

  60% {
    clip: rect(78px, 9999px, 86px, 0);
    transform: skew(0.36deg);
  }

  65% {
    clip: rect(20px, 9999px, 46px, 0);
    transform: skew(0.68deg);
  }

  70% {
    clip: rect(2px, 9999px, 100px, 0);
    transform: skew(0.42deg);
  }

  75% {
    clip: rect(3px, 9999px, 28px, 0);
    transform: skew(0.17deg);
  }

  80% {
    clip: rect(99px, 9999px, 19px, 0);
    transform: skew(0.04deg);
  }

  85% {
    clip: rect(82px, 9999px, 59px, 0);
    transform: skew(0.76deg);
  }

  90% {
    clip: rect(74px, 9999px, 75px, 0);
    transform: skew(0.4deg);
  }

  95% {
    clip: rect(22px, 9999px, 95px, 0);
    transform: skew(0.52deg);
  }

  100% {
    clip: rect(80px, 9999px, 17px, 0);
    transform: skew(0.65deg);
  }
}

@keyframes glitch-skew {
  0% {
    transform: skew(0deg);
  }

  10% {
    transform: skew(-0.5deg);
  }

  20% {
    transform: skew(0.8deg);
  }

  30% {
    transform: skew(0.3deg);
  }

  40% {
    transform: skew(-0.4deg);
  }

  50% {
    transform: skew(0.5deg);
  }

  60% {
    transform: skew(-0.2deg);
  }

  70% {
    transform: skew(0.1deg);
  }

  80% {
    transform: skew(-0.3deg);
  }

  90% {
    transform: skew(0.4deg);
  }

  100% {
    transform: skew(0deg);
  }
}

/* Add smooth scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  transform: rotate(45deg);
  animation: scrollArrow 2s infinite;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.scroll-indicator .scroll-arrow {
  animation: bounce 1.5s infinite;
}


/* Add button hover effect */
.btn-explore {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.btn-explore:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-explore:hover:before {
  left: 100%;
}

.btn-explore:hover {
  box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
  transform: translateY(-3px);
}

.cta-button {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

/* Enhance hero section */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.glassmorphic-card {
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.glassmorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

/* Custom cursor effect */
body {
  cursor: default;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 107, 53, 0.5);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  z-index: 9998;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  animation: glowPulse 2s infinite;
}

.navigation:hover~.cursor {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 107, 53, 0.8);
}



@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    padding: 0.5rem 0;
  }
  
  /* Make room for the fixed header */
  main {
    padding-top: 70px;
  }
  
  .hamburger-menu {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
  
  .navigation {
    padding: 1rem 0;
    margin: 0.5rem 0;
    text-align: center;
    display: block;
    width: 100%;
  }
  
  /* Adjust intro section to not overlap navigation */
  .intro-section {
    padding-top: 2rem;
    z-index: 1;
  }
  
  /* Fix hero content positioning */
  .hero-content {
    position: relative;
    z-index: 1;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 18px;
  }

  .left::before,
  .right::before {
    left: 60px;
  }

  .right {
    left: 0%;
  }
}

/* Scroll animations */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Glassy effect for boxes */
.glass-effect {
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Neon glow effects */
.neon-glow {
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3),
    0 0 20px rgba(255, 107, 53, 0.2),
    0 0 30px rgba(255, 107, 53, 0.1);
  transition: all var(--transition-speed) ease;
}

.neon-glow:hover {
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5),
    0 0 30px rgba(255, 107, 53, 0.3),
    0 0 45px rgba(255, 107, 53, 0.2);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Animate on scroll initialization */
.scroll-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.achievement-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* Contact Section */
.contact-section {
  margin: 5rem 0;
  padding: 2rem;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(25, 25, 25, 0.7);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-family: 'Orbitron', sans-serif;
  transition: all var(--transition-speed) ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

.form-button {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  display: block;
  width: 100%;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.form-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.form-button:active {
  transform: translateY(-1px);
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.8);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Enhanced Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  padding: 5rem 2rem;
  background: radial-gradient(circle at top, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.95));
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 15px rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

/* Neon Title Effect */
.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

/* Glassy Card Container */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 15px;
  background: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-container:hover {
  transform: scale(1.02);
}

/* Profile Image with Glow */
.profile-image-container {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
  transition: transform 0.3s ease-in-out;
  margin: 0 auto;
}

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

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Bio & Typewriter Effect */
.bio-title {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 243, 176, 0.3);
}

.typewriter-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  display: inline-block;
  border-right: 2px solid var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  height: 1.5rem;
  min-height: 1.5rem;
  margin-bottom: 1rem;
}

.cursor {
  animation: blink 0.7s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


/* Interest Tags */
.interests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.interest-item {
  background: rgba(255, 107, 53, 0.2);
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease-in-out;
}

.interest-item:hover {
  transform: scale(1.1);
  background: var(--primary-color);
  color: var(--text-dark);
}

.achievements-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.2);
  text-align: center;
}

/* Section Title */
.achievements-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

/* Card Grid */
.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* 3D Hover Cards */
.achievement-card {
  background: rgba(25, 25, 25, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

/* Glowing Neon Lines */
.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

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

/* Icon & Glow */
.achievement-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease-in-out;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.2);
}

/* Achievement Value */
.achievement-value {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(255, 243, 176, 0.6);
}

/* Custom Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Radar Chart (for Skills & Achievements) */
.skill-radar-container {
  width: 250px;
  height: 250px;
  margin: 2rem auto;
  position: relative;
  animation: rotateRadar 10s linear infinite;
}

.skill-radar {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 70%, transparent 100%);
}

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

  to {
    transform: rotate(360deg);
  }
}

/* Profile section styling */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .profile-section {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
  }
  
  .profile-image-container {
    flex-shrink: 0;
    margin: 0;
  }
  
  .bio-section {
    padding-left: 2rem;
    flex: 1;
    max-width: 600px;
  }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.hamburger-icon-box {
  font-size: 36px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.hamburger-menu.active .hamburger-icon-box {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    padding: 0.5rem 0;
  }
  
  /* Make room for the fixed header */
  main {
    padding-top: 70px;
  }
  
  .hamburger-menu {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
  
  .navigation {
    padding: 1rem 0;
    margin: 0.5rem 0;
    text-align: center;
    display: block;
    width: 100%;
  }  
}