 /* Core Animations */
 .testimonial-slide {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Premium Backgrounds */
  .premium-gradient-1 {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  }
  .premium-gradient-2 {
    background: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
  }
  .premium-gradient-3 {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  }
  .premium-gradient-4 {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
  }
  
  /* 3D Card Effects */
  .card-3d {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: perspective(1000px) rotateY(0deg);
    transform-style: preserve-3d;
  }
  .card-3d:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Floating Animation */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  .floating {
    animation: float 4s ease-in-out infinite;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb {
    background: #6366F1;
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #4F46E5;
  }
  
  /* Custom Shapes */
  .blob-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  
  /* Glass Morphism */
  .glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  /* Animated Background */
  .animated-bg {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
  }
  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Quote Mark */
  .quote-mark {
    font-size: 6rem;
    line-height: 1;
    position: absolute;
    opacity: 0.08;
    top: -30px;
    left: -10px;
    font-family: 'Georgia', serif;
  }
  
  /* Glow Effect */
  .glow-effect {
    box-shadow: 0 0 15px 5px rgba(99, 102, 241, 0.3);
  }
  
  /* Custom Dot Pulse */
  @keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
  }
  .dot-pulse {
    animation: dotPulse 2s infinite;
  }