
        .peacock-text {
    background: linear-gradient(45deg, 
        #0a1172, /* Deep Blue */
        #008080, /* Teal */
        #4B0082, /* Indigo */
        #228B22, /* Forest Green */
        #FFD700, /* Gold */
        #008080, /* Teal */
        #0a1172  /* Deep Blue */
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: peacockGlow 5s infinite linear;
}

/* Optional Animation for a shimmering peacock effect */
@keyframes peacockGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

   