/*
Theme Name: The Digital Achiever Theme
Theme URI: https://thedigitalachievers.com
Author: Vinod Choudhary And Subhansu Gour 
Author URI: https://thedigitalachievers.com
Description: A modern and professional theme designed for The Digital Achievers digital marketing agency
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-digital-achievers-theme
*/
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@keyframes pop-tilt {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-3deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.dm-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, rgba(36, 36, 225, 1), rgba(11, 205, 240, 1));
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pop-tilt 2s infinite ease-in-out, gradient-shift 4s infinite linear;
    box-shadow: 0 0 15px rgba(11, 205, 240, 0.7);
}

.dm-button i {
    font-size: 1.3rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.dm-button:hover i {
    transform: scale(1.2);
}
