/* Futuristic Black Monochrome Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
  --primary-black: #000000;
  --secondary-black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #404040;
  --accent-white: #ffffff;
  --neon-glow: #00ffff;
  --soft-glow: rgba(0, 255, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-secondary: linear-gradient(45deg, #0a0a0a 0%, #2a2a2a 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', monospace !important;
  background: var(--gradient-primary);
  color: var(--accent-white);
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Futuristic Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.judulNavbar {
  font-family: 'Orbitron', monospace !important;
  font-size: 2.5rem !important;
  font-weight: 900;
  color: var(--accent-white) !important;
  text-shadow: 0 0 10px var(--neon-glow);
  transition: all 0.3s ease;
  
  /* Shine effect setup */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(0, 255, 255, 0.6) 25%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 255, 255, 0.6) 75%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: -200% center;
  
  /* Subtle continuous shine with 3s delay */
  animation: shineLoop 5s infinite;
}

.judulNavbar:hover {
  text-shadow: 0 0 20px var(--neon-glow);
  transform: scale(1.05);
  background-size: 200% auto;
  animation: shineText 1.5s infinite;
}

.itemNavbar {
  font-size: 1.2rem !important;
  font-weight: 500;
  color: var(--accent-white) !important;
  transition: all 0.3s ease;
  position: relative;
}

.itemNavbar::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--neon-glow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.itemNavbar:hover::after {
  width: 100%;
}

.itemNavbar:hover {
  color: var(--neon-glow) !important;
  text-shadow: 0 0 10px var(--neon-glow);
}

/* Hero Section */
.masthead {
  background: var(--gradient-secondary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.imgProfile {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid var(--neon-glow);
  box-shadow: 
    0 0 30px var(--soft-glow),
    inset 0 0 30px rgba(0, 255, 255, 0.1);
  animation: 
    float 6s ease-in-out infinite,
    glitchProfile 8s infinite,
    pulseGlow 3s ease-in-out infinite alternate;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.imgProfile::before,
.imgProfile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
}

.imgProfile::before {
  background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.3) 50%, transparent 70%);
  animation: glitchLayer1 4s infinite;
  mix-blend-mode: multiply;
}

.imgProfile::after {
  background: linear-gradient(-45deg, transparent 30%, rgba(0, 255, 255, 0.3) 50%, transparent 70%);
  animation: glitchLayer2 3s infinite;
  mix-blend-mode: screen;
}

.imgProfile:hover {
  box-shadow: 
    0 0 50px var(--neon-glow),
    inset 0 0 50px rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
  animation-duration: 0.1s, 0.2s, 1s; /* Speed up glitch on hover */
}

/* Profile Container and Advanced Glitch Effects */
.profile-container {
  position: relative;
  display: inline-block;
}

.glitch-wrapper {
  position: relative;
  display: inline-block;
}

.glitch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.glitch-overlay-1 {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 0, 100, 0.4) 20%, 
    transparent 40%, 
    rgba(0, 255, 255, 0.4) 60%, 
    transparent 80%);
  animation: scanLines1 2s infinite;
  mix-blend-mode: color-dodge;
}

.glitch-overlay-2 {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.1) 2px,
    rgba(255, 255, 255, 0.1) 4px
  );
  animation: scanLines2 3s infinite reverse;
  mix-blend-mode: overlay;
}

.glitch-overlay-3 {
  background: radial-gradient(circle, 
    transparent 30%, 
    rgba(0, 255, 255, 0.2) 50%, 
    transparent 70%);
  animation: digitalNoise 1.5s infinite;
  mix-blend-mode: screen;
}

/* Advanced Glitch Animations */
@keyframes glitchProfile {
  0%, 90%, 100% {
    transform: translateX(0px);
    filter: hue-rotate(0deg) brightness(1) contrast(1);
  }
  2% {
    transform: translateX(2px);
    filter: hue-rotate(90deg) brightness(1.2) contrast(1.1);
  }
  4% {
    transform: translateX(-1px);
    filter: hue-rotate(180deg) brightness(0.8) contrast(1.3);
  }
  6% {
    transform: translateX(-2px);
    filter: hue-rotate(270deg) brightness(1.1) contrast(0.9);
  }
  8% {
    transform: translateX(1px);
    filter: hue-rotate(360deg) brightness(1) contrast(1);
  }
  10% {
    transform: translateX(0px);
    filter: hue-rotate(0deg) brightness(1) contrast(1);
  }
}

@keyframes glitchLayer1 {
  0%, 85%, 100% {
    opacity: 0;
    transform: translateX(0px) scaleX(1);
  }
  5% {
    opacity: 0.7;
    transform: translateX(-3px) scaleX(1.02);
  }
  10% {
    opacity: 0;
    transform: translateX(2px) scaleX(0.98);
  }
  15% {
    opacity: 0.5;
    transform: translateX(-1px) scaleX(1.01);
  }
  20% {
    opacity: 0;
    transform: translateX(0px) scaleX(1);
  }
}

@keyframes glitchLayer2 {
  0%, 80%, 100% {
    opacity: 0;
    transform: translateX(0px) scaleY(1);
  }
  3% {
    opacity: 0.6;
    transform: translateX(3px) scaleY(1.03);
  }
  8% {
    opacity: 0;
    transform: translateX(-2px) scaleY(0.97);
  }
  13% {
    opacity: 0.4;
    transform: translateX(1px) scaleY(1.02);
  }
  18% {
    opacity: 0;
    transform: translateX(0px) scaleY(1);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 
      0 0 30px var(--soft-glow),
      inset 0 0 30px rgba(0, 255, 255, 0.1);
  }
  100% {
    box-shadow: 
      0 0 50px rgba(0, 255, 255, 0.8),
      inset 0 0 50px rgba(0, 255, 255, 0.3);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.masthead-heading {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: fadeInUp 1s ease-out;
}

.masthead h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--neon-glow);
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Social Media Links */
.sosmed {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.list-sosmed {
  background: var(--gradient-secondary);
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.list-sosmed:hover::before {
  left: 100%;
}

.list-sosmed:hover {
  border-color: var(--neon-glow);
  box-shadow: 0 5px 20px var(--soft-glow);
  transform: translateY(-5px);
}

.sosmed-logo {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.sosmed-item {
  color: var(--accent-white) !important;
  text-decoration: none !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.sosmed-item:hover {
  color: var(--neon-glow) !important;
}

.sosmed-item:hover .sosmed-logo {
  filter: brightness(0) invert(1) sepia(1) hue-rotate(180deg) saturate(5);
}

/* About Section */
.aboutme {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--medium-gray);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.aboutme p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
  background: var(--gradient-primary);
}

.projects-section h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Project Cards */
.card {
  background: var(--gradient-secondary);
  border: 1px solid var(--medium-gray);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card:hover {
  border-color: var(--neon-glow);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-10px);
}

.card-image-top {
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.card:hover .card-image-top {
  filter: brightness(1.1);
}

.card-body {
  background: transparent;
  padding: 1.5rem;
  color: var(--accent-white);
}

.card-title {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-white);
}

.card-text {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--neon-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--neon-glow);
}

/* Buttons */
.btn-futuristic {
  background: var(--gradient-secondary);
  border: 1px solid var(--neon-glow);
  color: var(--accent-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-futuristic:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 5px 20px var(--soft-glow);
  transform: translateY(-2px);
  color: var(--accent-white);
}

/* Developer Info */
.developer-info {
  background: rgba(26, 26, 26, 0.5);
  border-top: 1px solid var(--medium-gray);
  padding: 1rem;
}

.developer-sosmed {
  color: var(--neon-glow) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.developer-sosmed:hover {
  text-shadow: 0 0 10px var(--neon-glow);
}

/* Footer */
.footerC {
  background: var(--primary-black);
  border-top: 1px solid var(--medium-gray);
  padding: 2rem 0;
  text-align: center;
  color: var(--accent-white);
  font-family: 'Orbitron', monospace;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--neon-glow);
  animation: spin 1s ease-in-out infinite;
}

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

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

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

@keyframes scanLines1 {
  0%, 95% {
    opacity: 0;
    transform: translateX(0) scaleX(1);
  }
  5% {
    opacity: 0.8;
    transform: translateX(-5px) scaleX(1.05);
  }
  10% {
    opacity: 0;
    transform: translateX(3px) scaleX(0.95);
  }
  15% {
    opacity: 0.6;
    transform: translateX(-2px) scaleX(1.02);
  }
  20% {
    opacity: 0;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes scanLines2 {
  0%, 90% {
    opacity: 0;
    transform: translateY(0) rotateZ(0deg);
  }
  3% {
    opacity: 0.5;
    transform: translateY(-2px) rotateZ(0.5deg);
  }
  8% {
    opacity: 0;
    transform: translateY(2px) rotateZ(-0.5deg);
  }
  12% {
    opacity: 0.3;
    transform: translateY(-1px) rotateZ(0.2deg);
  }
  16% {
    opacity: 0;
    transform: translateY(0) rotateZ(0deg);
  }
}

@keyframes digitalNoise {
  0%, 85% {
    opacity: 0;
    transform: scale(1) rotateZ(0deg);
  }
  2% {
    opacity: 0.7;
    transform: scale(1.02) rotateZ(0.5deg);
  }
  6% {
    opacity: 0;
    transform: scale(0.98) rotateZ(-0.3deg);
  }
  10% {
    opacity: 0.4;
    transform: scale(1.01) rotateZ(0.2deg);
  }
  14% {
    opacity: 0;
    transform: scale(1) rotateZ(0deg);
  }
}

/* Shining Text Animation */
@keyframes shineText {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes shineLoop {
  0%, 85% {
    background-position: -200% center;
  }
  15% {
    background-position: 200% center;
  }
}

/* Enhanced hover effects for profile container */
.profile-container:hover .imgProfile {
  animation-duration: 0.1s, 0.15s, 0.8s; /* Speed up all animations on hover */
}

.profile-container:hover .glitch-overlay-1 {
  animation-duration: 0.3s;
}

.profile-container:hover .glitch-overlay-2 {
  animation-duration: 0.4s;
}

.profile-container:hover .glitch-overlay-3 {
  animation-duration: 0.2s;
}

/* Experiences Section */
.experiences-section {
  background: var(--primary-black);
  min-height: 100vh;
  padding: 4rem 0;
}

.experiences-section h2 {
  color: var(--neon-glow);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Timeline Line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--neon-glow) 10%,
    var(--neon-glow) 90%,
    transparent 100%
  );
  box-shadow: 0 0 10px var(--neon-glow);
  z-index: 0;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.timeline-item:nth-child(odd) {
  text-align: right;
}

.timeline-item:nth-child(even) {
  text-align: left;
}

/* Timeline Node */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-black);
  border: 4px solid var(--neon-glow);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 
    0 0 0 4px var(--primary-black),
    0 0 20px var(--neon-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 0 0 4px var(--primary-black),
      0 0 20px var(--neon-glow);
  }
  50% {
    box-shadow: 
      0 0 0 4px var(--primary-black),
      0 0 30px var(--neon-glow),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

/* Timeline Content */
.timeline-content {
  background: var(--secondary-black);
  border: 2px solid var(--medium-gray);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 3rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.timeline-content:hover {
  border-color: var(--neon-glow);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Content Arrow */
.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 30px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left-color: var(--medium-gray);
  z-index: 4;
}

.timeline-item:nth-child(odd) .timeline-content:hover::before {
  border-left-color: var(--neon-glow);
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 30px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-right-color: var(--medium-gray);
  z-index: 4;
}

.timeline-item:nth-child(even) .timeline-content:hover::before {
  border-right-color: var(--neon-glow);
}

/* Experience Header */
.experience-header {
  border-bottom: 1px solid var(--medium-gray);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.experience-position {
  color: var(--neon-glow);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.experience-company {
  color: var(--light-gray);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.experience-location {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.experience-duration {
  color: var(--neon-glow);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Experience Description */
.experience-description {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Experience Achievements */
.experience-achievements h6 {
  color: var(--neon-glow);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: 'Orbitron', monospace;
}

.experience-achievements ul {
  list-style: none;
  padding: 0;
}

.experience-achievements li {
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.experience-achievements li::before {
  content: '▶';
  color: var(--neon-glow);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
}

/* Experience Technologies */
.experience-technologies-section h6 {
  color: var(--neon-glow);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.experience-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: var(--neon-glow);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .experiences-section h2 {
    font-size: 2rem;
  }
  
  .timeline-container {
    padding: 0 10px;
  }
  
  .timeline-container::before {
    left: 20px;
    z-index: 0;
  }
  
  .timeline-node {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    text-align: left !important;
  }
  
  .timeline-content {
    margin: 0 0 0 2rem;
    z-index: 3;
  }
  
  .timeline-item .timeline-content::before {
    left: -12px !important;
    right: auto !important;
    border-left-color: transparent !important;
    border-right-color: var(--medium-gray) !important;
    z-index: 4;
  }
  
  .timeline-item .timeline-content:hover::before {
    border-right-color: var(--neon-glow) !important;
    border-left-color: transparent !important;
  }
  
  .experience-position {
    font-size: 1.2rem;
  }
  
  .experience-company {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .experiences-section {
    padding: 2rem 0;
  }
  
  .timeline-content {
    margin: 0 0 0 1.5rem;
    padding: 1rem;
  }
  
  .experience-position {
    font-size: 1.1rem;
  }
  
  .experience-technologies {
    gap: 0.3rem;
  }
  
  .tech-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-glow);
}

