@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f4a831;
    border-radius: 4px;
}
/* Section transitions */
section {
    transition: all 0.3s ease;
}

/* Parallax effect */
#hero-parallax {
    will-change: transform;
    transition: transform 0.1s ease-out;
}
/* Custom underline for headings */
.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: #f4a831;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .heading-underline:after {
        width: 30%;
    }
}