/* Styles for Animated Gradient Text Elementor Widget */

.agtx-gradient-wrapper {
    display: block;
    width: 100%;
}

.agtx-gradient-heading {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: agtxGradientShift 6s ease infinite;
    line-height: 1.15;
    word-break: break-word;
}

/* Link wrapper style */
.agtx-gradient-link {
    text-decoration: none;
    display: inline-block;
}

.agtx-gradient-link:hover .agtx-gradient-heading {
    opacity: 0.95;
}

/* Keyframes for continuous smooth gradient movement */
@keyframes agtxGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
