  * {
   transition: all 0.3s ease;
  }
  
  body {
   font-family: 'Inter', sans-serif;
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  h1,
  h2,
  h3,
  h4 {
   font-family: 'Poppins', sans-serif;
  }
  
  /* Custom Animations */
  @keyframes float {
   
   0%,
   100% {
    transform: translateY(0);
   }
   
   50% {
    transform: translateY(-8px);
   }
  }
  
  .float-animation {
   animation: float 3s ease-in-out infinite;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
   width: 8px;
  }
  
  ::-webkit-scrollbar-track {
   background: #f1f5f9;
  }
  
  ::webkit-scrollbar-thumb {
   background: linear-gradient(to bottom, #2563eb, #7c3aed);
   border-radius: 4px;
  }
  
  /* Gradient Text */
  .gradient-text {
   background: linear-gradient(90deg, #2563eb, #7c3aed, #059669);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
  }