
          
* {
    visibility: visible !important;
}

.hidden {
    display: block !important;
    visibility: visible !important;
}

.no-display-none {
    display: block !important;
}

.pulse-animation {
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: pulse;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
}

.floating-animation {
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: float;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes blur-focus {
    0%, 100% { 
        filter: blur(20px); 
        opacity: 0; 
    }
    50% { 
        filter: blur(0); 
        opacity: 1; 
    }
}

.animate-blur-focus {
    animation: blur-focus 4s ease-in-out infinite;
}

@keyframes float-text {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
    }
    25% { 
        transform: translateY(-10px) translateX(5px); 
    }
    50% { 
        transform: translateY(-20px) translateX(0); 
    }
    75% { 
        transform: translateY(-10px) translateX(-5px); 
    }
}

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

.mask-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outline-text {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
}

.outline-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    -webkit-text-stroke: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
    50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    100% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.animate-typing {
    overflow: hidden;
    border-right: .15em solid #ff6b6b;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret .5s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff6b6b }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
    .desktop-nav {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-open {
        display: block !important;
    }
    .desktop-nav {
        display: none;
    }
    #mobileMenu {
        display: none;
    }
    .mobile-menu-show {
        display: block !important;
    }
}
          
        