.gradient-text {
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-hover {
  transition: all 0.3s ease;
}








.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.skill-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

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

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Add fade-in animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.fade-in.visible {
  opacity: 1;
}

/* Add this to the existing <style> section */
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  transition: width 1.5s ease-in-out;
}

.skill-item {
  margin-bottom: 1rem;
}

/* Update the button hover styles */
.bg-secondary:hover {
  background-color: #ffffff;
  color: #111111 !important;
}

.border-secondary:hover {
  border-color: #ffffff;
  color: #ffffff !important; 
}


.nav-link {
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 0.5rem 1rem;
  perspective: 1000px;
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  left: 0;
  top: 0;
  transform: rotateX(90deg);
  transform-origin: top;
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: 4px;
  opacity: 0;
}

.nav-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.nav-link:hover::before {
  transform: rotateX(0deg);
  opacity: 1;
}