/* Custom Geometric Styles & Overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7;
}

/* Geometric decoration for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #047857 0%, #F59E0B 100%);
}

/* Custom selection color */
::selection {
    background: #047857;
    color: #FDFBF7;
}

/* Smooth fade in animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}
