.super-attractive-category-section {
  background: linear-gradient(135deg, #003366, #004f88, #0080ff);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-content-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Glowing Heading */
.category-heading {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, #00d0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 3s infinite alternate;
}

/* Description Text */
.category-text {
  font-size: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.7;
  color: #e0f0ff;
}

/* Call to Action Button */
.cta-glow-btn {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  padding: 15px 32px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(255, 75, 43, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-glow-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 75, 43, 0.8);
}

/* Glowing Text Animation */
@keyframes glowText {
  0% {
    text-shadow: 0 0 10px #00e0ff, 0 0 20px
