
    /* Bounce animation */
    @keyframes bounce-slow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .animate-bounce-slow {
      animation: bounce-slow 2s infinite;
    }

    /* Glow pulse effect */
    @keyframes glow-pulse {
      0% { box-shadow: 0 0 0px rgba(156, 26, 122, 0.6); }
      50% { box-shadow: 0 0 25px rgba(156, 26, 122, 0.95); }
      100% { box-shadow: 0 0 0px rgba(156, 26, 122, 0.6); }
    }
    .hover\:glow-pulse:hover {
      animation: glow-pulse 1.5s infinite;
    }

    /* Arrow slide effect */
    #alumniReadMore:hover .arrow {
      transform: translateX(6px);
    }

    /* Fade + slide transition */
    .alumni-slide {
      opacity: 0;
      transform: translateX(100%);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .alumni-slide.active {
      opacity: 1;
      transform: translateX(0);
    }
  
    
    
    
    
        /* Custom slow bounce animation */
        @keyframes bounce-slow {
          0%, 100% {
            transform: translateY(0);
          }
          50% {
            transform: translateY(-6px);
          }
        }
        .animate-bounce-slow {
          animation: bounce-slow 2s infinite;
        }
      
        /* Glow pulse effect on hover */
        @keyframes glow-pulse {
          0% {
            box-shadow: 0 0 0px rgba(156, 26, 122, 0.6);
          }
          50% {
            box-shadow: 0 0 25px rgba(156, 26, 122, 0.95);
          }
          100% {
            box-shadow: 0 0 0px rgba(156, 26, 122, 0.6);
          }
        }
        .hover\:glow-pulse:hover {
          animation: glow-pulse 1.5s infinite;
        }
      
        /* Arrow slide effect */
        #alumniReadMore:hover .arrow {
          transform: translateX(6px);
        }
      