/* Premium Effects Add-on for Creative Tools */
/* Add this CSS after your main stylesheet */

/* Background Animation Effect */
.tools-section-wrapper {
  background: linear-gradient(120deg, #1e96ff, #ff3de2ef, #4bec2fca, #8a2afff8);
  background-size: 300% 300%;
  animation: gradientBG 8s ease infinite;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced Header Effects */
.header h1 {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  transition: transform 0.3s ease;
}

.header h1:hover {
  transform: translateY(-3px);
}

.header p {
  transition: transform 0.3s ease;
}

.header:hover p {
  transform: translateY(2px);
}

/* Premium Card Enhancements */
.tool-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.tool-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  z-index: 1;
}

.tool-card:hover::after {
  left: 150%;
}

.tool-card:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Enhanced Icon Effects */
.tool-icon {
  transition: all 0.4s ease !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  position: relative;
  z-index: 2;
}

.tool-card:hover .tool-icon {
  transform: rotate(8deg) scale(1.15) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Text Enhancements */
.tool-card h3 {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tool-card:hover h3 {
  color: white !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tool-card p {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tool-card:hover p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Color Overlay on Hover */
.tool-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.9), rgba(255, 0, 200, 0.9));
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tool-card:hover {
    transform: translateY(-5px) scale(1.03) !important;
  }
  
  .tool-card:hover .tool-icon {
    transform: rotate(5deg) scale(1.1) !important;
  }
}