/* Animations and Visual Effects */

/* Hero Glow Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Keyframes */
@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Common Transitions */
.btn,
.service-card,
.industry-card,
.lang-btn,
.footer-links a,
.chat-panel,
.modal-overlay {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}