* {
    font-family: 'Poppins', sans-serif;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Animation for fade-up effect on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #0a0c10 0%, #14181D 100%);
}

.gradient-card {
    background: linear-gradient(145deg, #14181D 0%, #1a2028 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gradient-card:hover {
    background: linear-gradient(145deg, #1a2028 0%, #212832 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Number badges for How It Works */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Icon styles */
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-size: 1.8rem;
}

input,
textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

body.protected-page {
    position: relative;
}

body.protected-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 999999;
    transition: background 0.3s;
}

/* Custom scrollbar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #0f172a;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 5px;
}

/* Section header animation */
.section-header {
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.underlined-txt {
    position: relative;
    display: inline-block !important;
}

.underlined-txt::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 7px;
    width: 100% !important;
    border: solid 8px #8b5cf6;
    border-color: #8b5cf6 transparent transparent transparent;
    border-radius: 50%;
}


/* FAQ Styles */
.faq-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.faq-item:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Hero Section Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes floatShadow {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(20px) scale(0.9);
        opacity: 0.5;
    }
}

.floating-image {
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

.floating-shadow {
    animation: floatShadow 6s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeUp {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fadeUp-delay-1 {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fadeUp-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fadeUp-delay-3 {
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

.hero-gradient {
    background: linear-gradient(90deg, #0D1015 0%, rgba(13, 16, 21, 0.8) 40%, rgba(13, 16, 21, 0.3) 100%);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator {
    animation: bounce 2s ease-in-out infinite;
}

/* CTA Section Animations */
@keyframes floatCTA {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes pulseCTA {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes glowBackground {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes particleMove {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.cta-gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-element {
    animation: floatCTA 6s ease-in-out infinite;
}

.floating-element-delay {
    animation: floatCTA 6s ease-in-out 2s infinite;
}

.pulse-button {
    animation: pulseCTA 3s ease-in-out infinite;
}

.glow-effect {
    animation: glowBackground 4s ease-in-out infinite;
}

/* Ripple effect animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}