/* Main Styles - ImproveMind Web */

/* Infinite Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--color-primary-black);
    color: var(--color-primary-white);
    overflow-x: hidden;
}

/* Typography Overrides */
.text-stroke {
    -webkit-text-stroke: 2px var(--color-primary-white);
    color: transparent;
    transition: all 0.5s ease;
}

.text-stroke:hover {
    -webkit-text-stroke: 0px;
    color: var(--color-primary-white);
}

/* Utility Extensions */
.mix-blend-difference {
    mix-blend-mode: difference;
}

.selection-red ::selection {
    background: var(--color-primary-red);
    color: white;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%) translateX(-50%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0) translateX(-50%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1.5s infinite;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    /* Moved to Left */
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}