
.apple-head span{
  /* color: #5070e6; */
  font-weight: 700;
  text-align: center;
    background: linear-gradient(to right, 
    #34c48b,
    #ffc400,   
    #fd4474,   
    #b86adf, 
    #1fb6ff    
  );
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.card-body{
    color: black;
}
.apple-body {
  color: #7a7a7a;
  line-height: 2;
  font-size: clamp(0.8125rem, 0.7685rem + 0.1408vw, 0.9375rem);
}

.apple-body li{
 margin-bottom: 1em;
}

.gradient {
    position: relative;
  /* height: 100vh; */
  width: 100%;
  background: #F4F3F5;
  background: linear-gradient(to right, #f3e7e9, #e3eeff, #e3eeff);
  min-height: 100vh;
}
@keyframes radialPulse {
  0%, 100% {
    background-size: 150% 150%;
  }
  50% {
    background-size: 200% 200%;
  }
}

.glass-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Inner rainbow glow */
/* .glass-card::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(
    circle at bottom left,
    #ff9a9e 0%,
    #fad0c4 30%,
    #fad0c4 60%,
    #fbc2eb 80%,
    #a18cd1 100%
  );
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  filter: blur(50px);
  transform-origin: center;
  animation: pulseGlow 6s ease-in-out infinite;
} */

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

