/* 
  Redesigned Portfolio Styles
  Theme: Minimalist Dark + Center Avatar + Spread Typography
*/

:root {
  /* Colors */
  --bg-color: #030303;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;

  /* Gradients & Accents */
  --accent-purple: #7c3aed;
  --accent-purple-glow: rgba(124, 58, 237, 0.4);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(3, 3, 3, 0.8);
  padding: 1rem 5%;
}

.navbar-hidden {
  transform: translateY(-100%);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin-left: auto;
  margin-right: 20%;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-purple);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.glow-bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero:has(.main-avatar:hover) .glow-bg {
  transform: translate(-50%, -50%) scale(1.4);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.65) 0%, rgba(0, 0, 0, 0) 70%);
}

#stars-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Hero Left (Name & Socials) */
.hero-left {
  position: relative;
  z-index: 10;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60vh;
}

.intro {
  margin-top: 10vh;
}

.greeting {
  color: var(--accent-purple);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.name {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 90%;
}

.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.social-links-vertical a {
  color: var(--text-main);
  font-size: 1.5rem;
  transition: var(--transition);
  opacity: 0.7;
}

.social-links-vertical a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--accent-purple);
}

/* Hero Center (Avatar) */
.hero-center {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 70vh;
  /* Reduced height to fit original portrait better */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.main-avatar {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: auto;
  cursor: pointer;
}

/* Hero Right (Role & Resume) */
.hero-right {
  position: relative;
  z-index: 10;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 60vh;
  text-align: right;
}

.role {
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align text block to its own left, but container is on right */
  position: relative;
}

.role-small {
  color: var(--accent-purple);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: -10px;
  align-self: flex-start;
}

.role-outline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-purple);
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-left: 2rem;
}

.role-solid {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: -10px;
  margin-left: 4rem;
}

.resume-btn {
  margin-top: auto;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.resume-btn:hover {
  color: var(--text-main);
}

.subscribe-text {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: lowercase;
  text-align: right;
  line-height: 1.1;
  opacity: 0.5;
  z-index: 10;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-center {
    width: 60vw;
  }

  .role-outline {
    margin-left: 1rem;
  }

  .role-solid {
    margin-left: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    justify-content: flex-start;
  }

  .hero-left,
  .hero-right {
    height: auto;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .role {
    align-items: center;
    right: 0;
    margin-top: 2rem;
  }

  .role-outline,
  .role-solid {
    margin-left: 0;
  }

  .social-links-vertical {
    flex-direction: row;
    margin: 2rem 0;
  }

  .hero-center {
    position: relative;
    height: 50vh;
    width: 100%;
    order: 2;
    /* Put avatar in middle on mobile */
  }

  .hero-right {
    order: 3;
    margin-bottom: 4rem;
  }
}


/* =========================================
   RESTORED SECTIONS (About, Projects, Contact)
   ========================================= */

/* Utilities */
.section-padding {
  padding: 120px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Panel Base */
.glass-panel {
  background: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Section Header */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-text h3,
.skills-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.skill-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.skill-item i {
  font-size: 2rem;
  color: #06b6d4;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: #7c3aed;
}

/* Realistic Solar System Background */
.projects-bg-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) perspective(2000px) rotateX(65deg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #fff7ed 0%, #fbbf24 40%, rgba(251, 191, 36, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
  opacity: 0.6;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: rotateOrbit linear infinite;
}

.orbit-planet {
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Individual Planets */
.mercury {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle at 30% 30%, #a5a5a5, #4a4a4a);
}

.ring-1 {
  width: 300px;
  height: 300px;
  animation-duration: 20s;
}

.venus {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #fff2cc, #d97706);
}

.ring-2 {
  width: 450px;
  height: 450px;
  animation-duration: 35s;
  animation-direction: reverse;
}

.earth {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8);
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(96, 165, 250, 0.4);
}

.earth::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.ring-3 {
  width: 650px;
  height: 650px;
  animation-duration: 50s;
}

.mars {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #fb923c, #9a3412);
}

.ring-4 {
  width: 850px;
  height: 850px;
  animation-duration: 70s;
  animation-direction: reverse;
}

.jupiter {
  width: 32px;
  height: 32px;
  background: repeating-linear-gradient(rgba(217, 119, 6, 0.2), rgba(217, 119, 6, 0.2) 2px, transparent 2px, transparent 4px),
    radial-gradient(circle at 30% 30%, #fdba74, #78350f);
}

.ring-5 {
  width: 1100px;
  height: 1100px;
  animation-duration: 120s;
}

.saturn {
  width: 26px;
  height: 26px;
  background: radial-gradient(circle at 30% 30%, #fde68a, #78350f);
}

.saturn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 12px;
  border: 4px solid rgba(120, 53, 15, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
}

.ring-6 {
  width: 1400px;
  height: 1400px;
  animation-duration: 180s;
  animation-direction: reverse;
}

.neptune {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #3b82f6, #1e3a8a);
}

.ring-7 {
  width: 1800px;
  height: 1800px;
  animation-duration: 250s;
}

@keyframes rotateOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dynamic Shooting Stars (JS Driven) */
.shooting-star {
  position: absolute;
  width: 150px; /* 1.5x larger */
  height: 2px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(167, 139, 250, 0.4), white);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; /* Head is at the leading edge */
  width: 6px; /* Larger head */
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px white, 0 0 30px rgba(124, 58, 237, 0.6);
}

@keyframes dynamicShoot {
  0% {
    transform: translateX(0) scaleX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translateX(-100px) scaleX(1);
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) scaleX(0.5);
    opacity: 0;
  }
}

/* Projects Slider Styles */
.projects-container {
  margin-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.projects-swiper {
  padding: 1rem 1rem 4rem 1rem !important;
}

.project-card-slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem !important;
  background: rgba(15, 15, 15, 0.6) !important;
  border-radius: 30px !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}

.project-card-slider:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.project-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.project-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.project-content {
  flex: 1;
  margin-bottom: 2rem;
}

.project-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.project-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  margin-top: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.project-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Swiper Pagination Customization */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  width: 10px !important;
  height: 10px !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-purple) !important;
  width: 30px !important;
  border-radius: 5px !important;
}

/* New Gradients */
.placeholder-gradient-1 {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
}

.placeholder-gradient-2 {
  background: linear-gradient(120deg, #0ea5e9, #10b981);
}

.placeholder-gradient-3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.placeholder-gradient-4 {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.placeholder-gradient-5 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* DOI Styling */
.project-doi {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem !important;
}

.project-doi a {
  color: #06b6d4;
  text-decoration: none;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--accent-purple);
  gap: 12px;
}

/* Work Experience Section */
.experience {
  position: relative;
  z-index: 10;
}

/* Toggle Switch */
.toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.toggle-bg {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px;
  width: max-content;
}

.toggle-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  color: white;
}

.toggle-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  width: calc(50% - 5px);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.toggle-bg[data-active="edu"] .toggle-indicator {
  transform: translateX(100%);
}

/* Timeline Layout */
.timeline-container {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-container.active-content {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 4rem;
}

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

.timeline-left {
  text-align: right;
  padding-right: 20px;
}

.timeline-left h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.company-text {
  color: #7c3aed;
  font-size: 1rem;
  font-weight: 500;
}

.timeline-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: #030303;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.timeline-gradient-dot {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0) 70%);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.timeline-right {
  padding-left: 20px;
}

.timeline-year {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: white;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 350px;
  line-height: 1.6;
}

.text-white {
  color: white;
}

/* Contact Section Redesign */
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.contact-header h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

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

.copy-email-btn {
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid var(--accent-purple);
  padding: 15px 40px;
  border-radius: 50px;
  color: white;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.copy-email-btn:hover {
  background: var(--accent-purple);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.copy-feedback {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.copy-feedback.show {
  opacity: 1;
  top: -50px;
}

/* Contact Grid */
.contact-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
}

.contact-col {
  display: flex;
  flex-direction: column;
}

.col-title {
  color: var(--accent-purple);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.col-text {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 500;
}

.col-text.highlights {
  font-weight: 700;
}

.col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.col-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 200px;
  transition: all 0.3s ease;
}

.col-links a i {
  font-size: 0.9rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.col-links a:hover {
  color: var(--accent-purple);
  padding-right: 5px;
}

.col-links a:hover i {
  opacity: 1;
  transform: translate(3px, -3px);
}

.col-link-small {
  font-size: 0.9rem !important;
  max-width: none !important;
  color: var(--text-main);
  font-weight: 500;
}

@media (max-width: 968px) {
  .contact-footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-top: 4rem;
}

/* Responsive Extracted from Old Styles */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

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

  .timeline-container {
    padding-left: 20px;
  }

  .timeline-line {
    left: 40px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    position: relative;
    margin-bottom: 3rem;
  }

  /* Swap order so dot is first, then content */
  .timeline-center {
    grid-column: 1;
    grid-row: 1 / 3;
    align-items: flex-start;
    padding-top: 10px;
  }

  .timeline-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-right: 0;
  }

  .timeline-left h3 {
    display: inline-block;
    margin-right: 15px;
  }

  .company-text {
    display: inline-block;
  }

  .timeline-right {
    grid-column: 2;
    grid-row: 2;
    padding-left: 0;
  }

  .timeline-year {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
}