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

:root {
  --primary-color: #00f2ff;
  --secondary-color: #8a2be2;
  --accent-color: #ff00e6;
  --background: #030014;
  --surface: rgba(16, 13, 37, 0.7);
  --surface-glow: rgba(42, 25, 112, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #b3b3ff;
}

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

body {
  background-color: var(--background);
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(20, 0, 80, 0.3) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(120, 0, 180, 0.2) 0%,
      transparent 50%
    );
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  position: relative;
}

.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Navigation styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(3, 0, 20, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .orbit-mobile {
    display: none;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 40px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

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

/* Header styles */
header {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}

.planets-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.planet {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
}

.planet-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4b0082, #00008b);
  right: -150px;
  top: 20%;
  box-shadow: 0 0 50px rgba(75, 0, 130, 0.5);
}

.planet-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #800080, #4b0082);
  left: -50px;
  bottom: 15%;
  box-shadow: 0 0 30px rgba(128, 0, 128, 0.5);
}

.floating-objects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.floating-object {
  position: absolute;
  opacity: 0.6;
  filter: blur(1px);
}

.asteroid {
  background-color: #444;
  border-radius: 50%;
  box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.2);
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2), transparent 70%);
  z-index: -1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.intro-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(0, 242, 255, 0.5);
}

.intro-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0;
  color: var(--text-secondary);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 30px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.cta-button::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;
}

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

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  opacity: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background: var(--surface);
  border: 1px solid rgba(0, 242, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

/* Section common styles */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  top: 0;
  left: 0;
  opacity: 0.5;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(30px);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  bottom: -10px;
  left: 0;
}

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(0, 242, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

/* About section styles */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
}

.about-text {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
}

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

.about-text p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

.about-image {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
}

.about-image-container {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.about-image-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
  overflow: hidden;
  transform: rotate(-5deg);
}

.about-image-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(5deg);
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: radial-gradient(
    circle at center,
    rgba(0, 242, 255, 0.2),
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Projects section styles */
.project-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

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

.filter-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-primary);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
  transform: translateY(-2px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  min-height: 200px;
  transition: all 0.3s ease;
  position: relative;
}

.project-grid.filtering {
  opacity: 0.7;
  pointer-events: none;
}

.project-card {
  background: var(--surface);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
}

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

.project-card.hide {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  pointer-events: none;
}

.project-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), transparent);
  top: 0;
  left: 0;
  z-index: -1;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 242, 255, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-image::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--surface) 100%);
}

.project-info {
  padding: 25px;
  position: relative;
}

.project-info h3 {
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
}

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

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

.project-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.tech-tag {
  padding: 4px 10px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--primary-color);
}

/* Skills section styles */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.skill-item {
  background: var(--surface);
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.skill-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 242, 255, 0.2);
}

.skill-item:hover::before {
  transform: scaleX(1);
}

/* Contact section styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: var(--surface);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.contact-form::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), transparent);
  top: 0;
  left: 0;
  z-index: -1;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  z-index: 10;
}

.form-success.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.form-success h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  text-align: center;
}

.form-success p {
  text-align: center;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
}

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

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

.submit-btn {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.submit-btn::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;
}

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 242, 255, 0.3);
}

.submit-btn .btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline-block;
}

.submit-btn.loading {
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  cursor: not-allowed;
}

/* Toast notification */
.toastify {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  padding: 15px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 242, 255, 0.4);
}

.toastify.error {
  background: linear-gradient(90deg, #ff5252, #b33939);
}

/* Confetti effect */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  opacity: 0.7;
  top: 0;
  z-index: 999;
  animation: confetti-fall linear forwards;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  top: 0;
  left: 0;
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

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

.made-with {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.heart-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  animation: heartbeat 1.5s infinite;
}

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

/* Custom cursor styles */
.cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.8);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.cursor.active {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.active {
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%) scale(0.5);
}

/* Scroll effects */
.space-warp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  perspective: 1000px;
  pointer-events: none;
  opacity: 0;
}

.warp-lane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Parallax Overlay */
.parallax-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.8"/></svg>');
  background-size: 150px 150px;
  pointer-events: none;
  z-index: -3;
  opacity: 0.2;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    order: -1;
    margin-bottom: 40px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .intro-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .intro-text h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-image-container {
    width: 300px;
    height: 300px;
  }

  .project-filter {
    gap: 10px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 15px;
  }

  .intro-text h1 {
    font-size: 2rem;
  }

  .intro-text p {
    font-size: 1.1rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-image-container {
    width: 250px;
    height: 250px;
  }

  .project-filter {
    gap: 8px;
    margin-bottom: 25px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

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

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.1;
  }
}
