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

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

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

.animate-blob {
  animation: blob 7s infinite;
}

.animate-shimmer {
  animation: shimmer 2s infinite;
}

 
.glass-header {
  background: linear-gradient(
    to right,
    rgba(228, 109, 149, 0.2),
    rgba(228, 109, 149, 0.15),
    rgba(228, 109, 149, 0.2)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 109, 149, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.success-story-card {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1519228897035-7e5a5d5b6f7a?w=800&h=600&fit=crop");
  background-size: cover;
  background-position: center;
}

.success-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  transition: all 0.4s ease;
}

.success-story-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(
    to top,
    rgba(228, 109, 149, 0.9) 0%,
    rgba(162, 100, 154, 0.8) 30%,
    rgba(228, 109, 149, 0.6) 60%,
    rgba(162, 100, 154, 0.4) 80%,
    transparent 100%
  );
  z-index: 2;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover::after {
  height: 100%;
}

.success-story-card:hover .text-gray-600,
.success-story-card:hover .text-gray-900,
.success-story-card:hover .text-gray-400,
.success-story-card:hover h3,
.success-story-card:hover p {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.success-story-card:hover .border-gray-100 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.success-story-card:hover .bg-gradient-to-r {
  background: linear-gradient(to right, #ffffff, #f3f4f6) !important;
  color: #e46d95 !important;
}

.success-story-card > * {
  position: relative;
  z-index: 3;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

 
.hover-lift {
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px) scale(1.02);
}

.perspective-1000 {
  perspective: 1000px;
}

 
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f8f9fa;
}
::-webkit-scrollbar-thumb {
  background: #e46d95;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a2649a;
}
