/* Custom Styles for RockNick Repair */
html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll from negative margins if used */
    overflow-x: hidden;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f9f7f0;
}
::-webkit-scrollbar-thumb {
    background: #1a5c45;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f3d2e;
}

/* Subtle fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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