/* Custom CSS for animations and effects not covered by Tailwind */
.project-card {
  transition: all 0.3s ease;
}
        
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
        
.skill-badge:hover {
  transform: scale(1.05);
}
       
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
        
.fade-in {
  animation: fadeIn 1s ease-in;
}
        
.nav-link.active {
  position: relative;
}
        
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #3b82f6;
}
        
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/*Toast Notification Styles*/
.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}