
          /* Custom styles for the website */
body {
    scroll-behavior: smooth;
}

/* Canvas animation styles */
#hero-canvas {
    opacity: 0.1;
}

/* Responsive navigation */
@media (max-width: 768px) {
    #mobile-menu.show {
        display: block;
    }
}

/* Hover effects for cards */
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Backdrop blur effect */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease;
}

.transition-shadow {
    transition: box-shadow 0.3s ease;
}
        