
        /* Custom metallic shine effect */
        .metallic-text {
            background: linear-gradient(to bottom, #9ca3af, #374151);
            -webkit-background-clip: text;
        }
        /* Subtle float animation for the hero image */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        .float-img {
            animation: float 4s ease-in-out infinite;
        }
    