.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
}

/* Navigation Underline Animation */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #031632;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

/* Global Button & Interactive Link Interactions */
a, button {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
}

/* Mechanical Press Effect on Click */
a:active, button:active {
    transform: scale(0.92) translateY(2px);
    transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
    opacity: 0.9;
}

/* Service Button Interactions (Standardized) */
.group .material-symbols-outlined {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Removed hover lift/shadow/slide based on preference */

/* Success Message Animation */
.success-message {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}
