/* Material Icons configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Background Gradients */
.hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fb 100%);
}

/* Glassmorphism containers */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #E2E8F0;
}

/* Micro-animations and hover cards */
.card-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 27, 61, 0.08), 0 8px 10px -6px rgba(0, 27, 61, 0.08);
}

/* Page Scroll Options */
html {
    scroll-behavior: smooth;
}

/* Section Fade-In Animation (Intersection Observer) */
.fade-in-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Active navigation links style */
.nav-link-active {
    color: var(--color-primary, #001736) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary, #001736);
}
