.text-highlight{
    color: #67bd4f;
}

/* Hide service content by default */
.service-content{
    display: none;
}

/* Define the opacity and visibility state of button */
#back-to-top {
    transition: opacity 0.3s;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-top.hidden {
    opacity: 0;
}

/* Define the initial state */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Define the state when the element is in view */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disable Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Hide scrollbar for all browsers */
}

.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#slider {
    display: flex;
    align-items: center; /* Center-align the content */
    flex-wrap: nowrap;
}