:root {
    --primary: #6C63FF;
    --pink: #FF6584;
    --mint: #4CC9F0;
    --sunshine: #FFBE0B;
    --sky: #4895EF;
    --lavender: #9B5DE5;
    --soft: #F8F9FF;
}



/* Floating elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-pink { background: var(--pink); }
.bg-mint { background: var(--mint); }
.bg-sunshine { background: var(--sunshine); }
.bg-sky { background: var(--sky); }
.bg-lavender { background: var(--lavender); }

.floating-heart {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    color: var(--primary);
}

.heart-1 {
    top: 20%;
    right: 15%;
}

.heart-2 {
    bottom: 25%;
    left: 20%;
    font-size: 32px;
}

/* Glass card styles */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.support-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.support-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.card-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.styled-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem !important;
    position: absolute;
    left: 0;
    top: -0.3rem;
}

/* Tip cards */
.tip-card {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.tip-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

/* Testimonials */
.testimonial-carousel {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonial-slide {
    width: 300px;
    margin-right: 2rem;
    display: inline-block;
    padding: 2rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

/* CTA Button */
.cta-button {
    background: rgb(113, 189, 146);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated-container {
    animation: fadeIn 1s ease-out;
}

.bounce {
    animation: bounce 2s infinite;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }


/* Tiny avatars */
.tiny-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffb347 0%, rgba(255, 179, 71, 0) 60%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
    animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; transform: scale(1.5); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .support-card {
        padding: 1.5rem;
    }
    
    .support-card h3 {
        font-size: 1.3rem;
        padding-left: 2.5rem;
    }
    
    .card-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .floating-circle {
        display: none;
    }
}

/* Card loading animation */
.support-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardEntrance 0.8s ease forwards;
}

.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.3s; }
.support-card:nth-child(3) { animation-delay: 0.5s; }
.support-card:nth-child(4) { animation-delay: 0.7s; }
.support-card:nth-child(5) { animation-delay: 0.9s; }

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #6C63FF;
  animation: typing 3s steps(30, end);
}
/* This blinking only lasts while typing */
.typing-blink {
  animation: blink-caret 0.5s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.glass-card ul li {
  font-size: 1.3rem !important;
}
.tip-card p{
    font-size:1.3rem;
}