.gradient-text {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.projects-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1rem;
  cursor: grab;
  scroll-behavior: smooth;
}
.projects-scroll-container:active {
  cursor: grabbing;
}
.project-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 85%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .projects-scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }
  .project-card {
    width: 100%;
    max-width: none;
  }
}

/* Experience & Education Grid */
.experience-grid, .education-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .experience-grid, .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience-card, .education-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.experience-card:hover, .education-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.experience-logo, .education-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Hide scrollbar but keep functionality */
.projects-scroll-container::-webkit-scrollbar {
  display: none;
}
.projects-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body {
  background-color: #f8fafc;
  background-image: radial-gradient(
      at 80% 0%,
      hsla(189, 100%, 56%, 0.1) 0px,
      transparent 50%
    ),
    radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.1) 0px, transparent 50%);
}
.timeline-card {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
.project-card {
  background: white;
  border: 1px solid #e2e8f0;
}
.btn-primary {
  background: #2563eb;
  color: white;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-secondary {
  border: 1px solid #cbd5e1;
  color: #334155;
}
.btn-secondary:hover {
  background: #f1f5f9;
}
.btn-download {
  background: #10b981;
  color: white;
}
.btn-download:hover {
  background: #059669;
}
.skill-badge {
  background: #e0f2fe;
  color: #0369a1;
}
