@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #9D4EDD;
  --accent-light: #C77DFF;
  --accent-dark: #7B2FBE;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none; 
}

h1, h2, h3, h4, h5, h6, .brand, .stat-number {
  font-family: 'Space Grotesk', sans-serif;
}

/* Background Grids */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-light);
  box-shadow: 0 0 10px var(--accent-light);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-color);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.cursor-hover {
  width: 60px;
  height: 60px;
  background-color: rgba(157, 78, 221, 0.2);
  border-color: var(--accent-light);
}

/* Global Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  align-self: center;
  font-weight: 700;
}

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

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 15px 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-cta {
  padding: 10px 25px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(157,78,221,0.2), transparent);
  transition: left 0.5s;
}

.btn-cta:hover {
  background: rgba(157, 78, 221, 0.1);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s;
}

/* Hero */
#hero {
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--accent-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #C77DFF, #9D4EDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(157,78,221,0.3));
}

.typing-container {
  height: 40px;
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.typing-text {
  border-right: 3px solid var(--accent-light);
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  padding: 15px 40px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  box-shadow: 0 0 40px rgba(157, 78, 221, 0.3);
}

.about-img-box img, .about-img-box .placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk';
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-light);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(157, 78, 221, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.skill-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px;
  transition: transform 0.3s;
}

.skill-card:hover {
  border-color: rgba(157, 78, 221, 0.5);
  box-shadow: 0 10px 40px rgba(157, 78, 221, 0.15);
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-card h3 i {
  color: var(--accent-light);
}

.skill-item {
  margin-bottom: 25px;
}

.skill-item:last-child {
  margin-bottom: 0;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-name {
  font-weight: 500;
  color: #e0e0e0;
}

.skill-percentage {
  color: var(--accent-light);
  font-family: 'Space Grotesk';
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  border-radius: 10px;
  width: 0; /* Animated by JS */
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.project-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(157, 78, 221, 0.25);
}

.project-img {
  height: 220px;
  background: linear-gradient(45deg, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent-dark);
  position: relative;
  overflow: hidden;
}

.project-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.9));
}

.project-img i {
  z-index: 1;
  color: var(--accent-light);
  filter: drop-shadow(0 0 15px var(--accent-color));
}

.project-content {
  padding: 30px;
}

.project-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.stack-tag {
  padding: 6px 14px;
  background: rgba(157, 78, 221, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(157, 78, 221, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 15px;
}

.btn-outline {
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--accent-light);
  background: rgba(157, 78, 221, 0.15);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

/* Timeline/Parcours - Tech/Cyberpunk UI */
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
  border-radius: 2px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent-color));
  box-shadow: 0 0 20px var(--accent-light);
  height: 0; /* Animated by JS */
  z-index: 0;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 70px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Left side */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  transform: translateX(-60px);
}
.timeline-item:nth-child(odd).active {
  transform: translateX(0);
  opacity: 1;
}

/* Right side */
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  transform: translateX(60px);
}
.timeline-item:nth-child(even).active {
  transform: translateX(0);
  opacity: 1;
}

.timeline-dot {
  position: absolute;
  top: 35px;
  width: 20px;
  height: 20px;
  background: var(--bg-color);
  border: 3px solid var(--accent-color);
  transform: rotate(45deg);
  z-index: 3;
  transition: all 0.4s;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -13px; /* Precise centering */
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -13px; /* Precise centering */
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-light);
  transform: rotate(135deg) scale(1.3);
}

.timeline-date {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Space Grotesk';
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(157, 78, 221, 0.5);
  border-radius: 20px;
  background: rgba(157, 78, 221, 0.15);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content {
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.8), rgba(10, 10, 10, 0.9));
  border: 1px solid var(--glass-border);
  padding: 30px;
  position: relative;
  transition: all 0.4s;
  /* Tech cut corner */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  border-left: 3px solid var(--accent-dark);
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: 1px solid var(--glass-border);
  border-right: 3px solid var(--accent-dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.timeline-item:hover .timeline-content {
  border-color: var(--accent-light);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
  background: linear-gradient(135deg, rgba(50, 20, 80, 0.7), rgba(10, 10, 10, 0.9));
}

.timeline-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}

/* Design Gallery */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 8px 25px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
  display: none; /* For filtering */
  aspect-ratio: 1080 / 1350;
}

.gallery-item.show {
  display: block;
  animation: fadeInDown 0.5s ease;
}

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

/* .gallery-item:nth-child(even) {
  grid-row: span 2;
} */

.gallery-item img, .gallery-item .dummy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dummy-img {
  background: linear-gradient(45deg, #1a1a1a, #2d1445);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 20px;
}

.gallery-item:hover img, .gallery-item:hover .dummy-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-bottom: 5px;
}

.gallery-overlay p {
  color: var(--accent-light);
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.email-card {
  background: var(--glass-bg);
  border: 1px solid var(--accent-dark);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.email-card:hover {
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
  border-color: var(--accent-light);
}

.email-content h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.email-content p {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.copy-btn {
  background: rgba(157, 78, 221, 0.2);
  border: none;
  color: var(--accent-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.copy-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(15deg);
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-circle:hover {
  background: var(--accent-color);
  border-color: var(--accent-light);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
}

.contact-form {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.input-group textarea {
  min-height: 160px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.15);
}

.btn-submit {
  padding: 16px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 25px rgba(157, 78, 221, 0.3);
  transform: translateY(-2px);
}

.btn-submit i {
  transition: transform 0.3s;
}

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

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 10, 10, 0.9);
}

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

.heart {
  color: #ff3366;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about-img-box { max-width: 400px; margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%; width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
  }
  .nav-links.active { left: 0; }
  .nav-links a { font-size: 1.5rem; }
  
  .hero h1 { font-size: 3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  
  .timeline-container { padding-left: 0; }
  .timeline-line, .timeline-progress { left: 30px; transform: none; width: 3px; }
  .timeline-item { width: 100%; padding: 0 0 0 65px; margin-bottom: 40px; text-align: left !important; left: 0 !important; transform: translateX(-30px) !important; }
  .timeline-item.active { transform: translateX(0) !important; opacity: 1; }
  .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 18px; right: auto; top: 35px; }
  .timeline-item:nth-child(even) .timeline-content {
    border-right: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-dark);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }
}
