body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

/* Custom Gradients and Glows */
.bg-pastel-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.text-gradient {
    background: linear-gradient(to right, #0284c7, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Parallax Elements */
.parallax-layer {
    position: absolute;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

/* Feature Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}