/* styles.css */

/* Animation Delays for the blobs */
.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* 3D Tilt Card Transitions */
.tilt-card {
    transition: transform 0.1s ease-out;
    /* Smooth movement */
    transform-style: preserve-3d;
    will-change: transform;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}