
    :root {
        color-scheme: light;
    }
    
    /* Additional animation styles for hero section */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    /* Add these animation styles for the hero section */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

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

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-12 {
    transform: rotateY(12deg);
}

.rotate-x-6 {
    transform: rotateX(6deg);
}
    
    .particle {
        position: absolute;
        border-radius: 50%;
        animation: float 3s ease-in-out infinite;
    }
    
    /* Page load animation */
    .page-transition {
        animation: fadeIn 1.5s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Add a subtle entrance animation to the entire page */
    body {
        animation: fadeIn 0.8s ease-out;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: Rubik, Inter, system-ui, sans-serif;
    }

    body {
        font-family: DM Sans, Inter, system-ui, sans-serif;
    }