/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Common body styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Override Hello Elementor theme button styles */
.inline-flex.rounded-md.shadow-sm button,
.inline-flex.rounded-md.shadow-sm button:focus,
.inline-flex.rounded-md.shadow-sm button:hover {
    background-color: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
}

/* Common animation styles */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-in-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Common hidden class */
.hidden {
    display: none !important;
}

/* Common button styles */
.btn-primary {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}