    /* STEP 2: Define the keyframe animations directly.
    This is a 1-to-1 conversion from the 'keyframes' section of your config.
  */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
  }
  
  /* STEP 3: Create utility classes to apply the animations.
    These classes mimic Tailwind's 'animate-*' utilities.
  */
  .animate-fade-in {
    animation: fadeIn 0.8s ease-out;
  }
  
  .animate-slide-up {
    animation: slideUp 0.8s ease-out;
  }
  
  .animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
  }

  
.baumans-regular {
    font-family: "Baumans", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
  }
  
  /* Animated Background */
  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Floating Particles */
  .particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float 15s infinite linear;
  }
  
  .particle-2 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 80%;
    animation: float 20s infinite linear reverse;
  }
  
  .particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float 18s infinite linear;
  }
  
  .particle-4 {
    width: 9px;
    height: 9px;
    top: 30%;
    left: 70%;
    animation: float 25s infinite linear reverse;
  }
  
  .particle-5 {
    width: 7px;
    height: 7px;
    top: 50%;
    left: 30%;
    animation: float 22s infinite linear;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* Geometric Shapes */
  .geometric-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
  }
  
  .shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
  }
  
  .shape-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid #10b981;
    transform: rotate(45deg);
    animation: rotate 25s linear infinite reverse;
  }
  
  .shape-3 {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid #8b5cf6;
    border-radius: 20px;
    animation: rotate 20s linear infinite;
    transform: translate(-50%, -50%);
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* Gradient Orbs */
  .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.5;
  }
  
  .orb-1 {
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
  }
  
  .orb-2 {
    bottom: 30%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
  }
  
  .orb-3 {
    top: 60%;
    left: 60%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: pulse 12s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.2;
    }
  }
  
  
  .dark-gradient-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  }
  
  .card-shadow {
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.05);
  }
  
  .card-shadow-green {
    animation: greenbgmove 3s infinite;
  }
  
  @keyframes greenbgmove {
    50% {box-shadow: 7px 4px 42px 0px rgba(49, 142, 111, 0.22);}
  }

  .progress-bar {
    background: linear-gradient(90deg, #10b981 0%, #059669 70%, #374151 70%, #374151 100%);
  }
  
  /* Scroll animations */
  .scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  
  .scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
  }
  
  .scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
  }
  
  .scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* === Moving border glow effect (crawling) === */
  /* @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes borderRotate {
    to {
      --angle: 360deg;
    }
  }

  .glow-border-move {
    position: relative;
    z-index: 0; 
  }

  .glow-border-move::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; 
    border-radius: inherit;
    background: conic-gradient(from var(--angle), #3b82f6 0deg, #2e3238 60deg, transparent 60deg 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: borderRotate 6s linear infinite;
    pointer-events: none;
  }

  .google-glow {
    animation-delay: 0s;
  }

  .github-glow {
    animation-delay: .5s; 
  } */
  